Skip to content

Instantly share code, notes, and snippets.

@andreban
Last active February 20, 2017 20:01
Show Gist options
  • Save andreban/0bc239be29248b99367f1c977c431f6b to your computer and use it in GitHub Desktop.
Save andreban/0bc239be29248b99367f1c977c431f6b to your computer and use it in GitHub Desktop.
serialNumberCharacteristic.addEventListener('characteristicvaluechanged', e => {
const decoder = new TextDecoder('utf-8');
const value = decoder.decode(e.target.value);
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment