Last active
February 20, 2017 20:02
-
-
Save andreban/5e131b6738f7224d9fe02b0f67aa7a48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
generalStatusCharacteristic.addEventListener('characteristicvaluechanged', e => { | |
const dataView = e.target.value; | |
const avgStrokeRate = dataView.getUint8(10); | |
const endingHeartRate = dataView.getUint8(11); | |
const averageHeartRat = dataView.getUint8(12); | |
// ... | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment