Skip to content

Instantly share code, notes, and snippets.

@loginov-rocks
Created August 27, 2018 00:19
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/fa0478f085410d1f59ede2f653af0e5c to your computer and use it in GitHub Desktop.
Save loginov-rocks/fa0478f085410d1f59ede2f653af0e5c to your computer and use it in GitHub Desktop.
How to make a web app for your own Bluetooth Low Energy device? Step 8
// Enable the characteristic changes notification
function startNotifications(characteristic) {
log('Starting notifications...');
return characteristic.startNotifications().
then(() => {
log('Notifications started');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment