We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e56b19 commit 6e3a3f8Copy full SHA for 6e3a3f8
adafruit_ble_heart_rate.py
@@ -110,12 +110,13 @@ def __init__(self, service=None):
110
@property
111
def measurement_values(self):
112
"""All the measurement values, as a tuple:
113
- (heart_rate: int (beats per minute),
114
- contact: True if contacting, False if not, None if unknown,
115
- energy_expended: int (Kilo joules), or None if no value,
116
- rr_intervals: list of RR-intervals, if any,
117
- oldest first, in ints that are1024ths of a second,
118
- )
+ (heart_rate, contact, energy_expended, rr_intervals)
+ * heart_rate: int (beats per minute)
+ * contact: True if contacting, False if not, None if unknown
+ * energy_expended: int (Kilo joules), or None if no value
+ * rr_intervals: list of RR-intervals, if any,
+ oldest first, in ints that are1024ths of a second,
119
+
120
Return None if no packet has been read yet.
121
"""
122
buf = self._measurement_buf
docs/index.rst
@@ -26,9 +26,7 @@ Table of Contents
26
.. toctree::
27
:caption: Related Products
28
29
- Tested on a Scosche Rhythm+ Armband Heart Rate Monitor, but should be usable
30
- with other standard BLE Heart Rate Monitors.
31
- <https://www.amazon.com/gp/product/B00JQHTJS2>
+ Scosche Rhythm+ Armband Heart Rate Monitor (should be usable with others) <https://www.amazon.com/gp/product/B00JQHTJS2>
32
33
34
:caption: Other Links
0 commit comments