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 67bd00f commit 2d03715Copy full SHA for 2d03715
bleakheart.py
@@ -162,7 +162,7 @@ def _decode(self, data: bytearray):
162
if rr_intervals:
163
payload['rr']=[]
164
for i in range(offset, len(data), 2):
165
- rr = int.from_bytes(data[offset:offset+2],
+ rr = int.from_bytes(data[i:i+2],
166
'little', signed=False)
167
# Polar H7, H9, and H10 record RR intervals
168
# in 1024-th parts of a second. Convert this
0 commit comments