Skip to content

Instantly share code, notes, and snippets.

@loginov-rocks
Created August 27, 2018 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loginov-rocks/44c7a144a1548ab08426bc675854d183 to your computer and use it in GitHub Desktop.
Save loginov-rocks/44c7a144a1548ab08426bc675854d183 to your computer and use it in GitHub Desktop.
How to make a web app for your own Bluetooth Low Energy device? Step 9
// Output to terminal
function log(data, type = '') {
terminalContainer.insertAdjacentHTML('beforeend',
'<div' + (type ? ' class="' + type + '"' : '') + '>' + data + '</div>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment