summaryrefslogtreecommitdiff
path: root/doc/ble.md
diff options
context:
space:
mode:
authorEli Weiss <eliwss0@gmail.com>2021-12-02 14:50:59 -0600
committerJF <JF002@users.noreply.github.com>2021-12-30 20:57:26 +0100
commit90352af626cc0087143e824f62f5dcee9f58f29c (patch)
tree1a103ebf44797196869faa3d70b84ae31f74dafd /doc/ble.md
parentc8214bc666a5daf1b0c1c323ae4af7cb5ae2510b (diff)
Improved documentation readability
Improved documentation readability by rephrasing confusing sentences. Added Sitronix ST7789V datasheet link to SPI-LCD-driver.md for easier reference.
Diffstat (limited to 'doc/ble.md')
-rw-r--r--doc/ble.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ble.md b/doc/ble.md
index 314097d7..d2502636 100644
--- a/doc/ble.md
+++ b/doc/ble.md
@@ -120,11 +120,11 @@ Reading a value from the firmware version characteristic will yield a UTF-8 enco
#### Battery Level
-Reading from the battery level characteristic yields a single byte of data. This byte can be converted to an unsigned 8-bit integer which will be the battery percentage. This characteristic allows notify for updates as the value changes.
+Reading from the battery level characteristic yields a single byte of data. This byte can be converted to an unsigned 8-bit integer which will be the battery percentage. This characteristic allows notifications for updates as the value changes.
#### Heart Rate
-Reading from the heart rate characteristic yields two bytes of data. I am not sure of the function of the first byte. It appears to always be zero. The second byte can be converted to an unsigned 8-bit integer which is the current heart rate. This characteristic also allows notify for updates as the value changes.
+Reading from the heart rate characteristic yields two bytes of data. I am not sure of the function of the first byte. It appears to always be zero. The second byte can be converted to an unsigned 8-bit integer which is the current heart rate. This characteristic also allows notifications for updates as the value changes.
---