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.
2 parents b3624de + 856e403 commit 1be7031Copy full SHA for 1be7031
adafruit_ble_heart_rate.py
@@ -134,10 +134,7 @@ class HeartRateService(Service):
134
135
def __init__(self, service=None):
136
super().__init__(service=service)
137
-#### TODO Use commented line instead once .packet_size is fixed in CircuitPython beta.
138
-#### self._measurement_buf = bytearray(self.heart_rate_measurement.packet_size)
139
-#### TEMPORARY
140
- self._measurement_buf = bytearray(20)
+ self._measurement_buf = bytearray(self.heart_rate_measurement.packet_size)
141
142
@property
143
def measurement_values(self):
0 commit comments