Skip to content

Instantly share code, notes, and snippets.

@kusakawazeusu
Created August 12, 2019 20:59
Show Gist options
  • Save kusakawazeusu/608654a1847e3f43009fb36a6d2a640e to your computer and use it in GitHub Desktop.
Save kusakawazeusu/608654a1847e3f43009fb36a6d2a640e to your computer and use it in GitHub Desktop.
const subscription = device.monitorCharacteristicForService(
Service_UUID,
Characteristic_UUID,
(error, characteristic) => {
if (error) {
console.log(error)
return;
}
console.log(characteristic.value)
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment