We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0441fc commit 3c58d9aCopy full SHA for 3c58d9a
examples/bluetooth/ble_temperature_central.py
@@ -72,7 +72,7 @@ def _irq(self, event, data):
72
if connectable and _ENV_SENSE_UUID in decode_services(adv_data):
73
# Found a potential device, remember it and stop scanning.
74
self._addr_type = addr_type
75
- self._addr = bytes(addr) # Note: The addr buffer is owned by modbluetooth, need to copy it.
+ self._addr = bytes(addr) # Note: addr buffer is owned by caller so need to copy it.
76
self._name = decode_name(adv_data) or '?'
77
self._ble.gap_scan(None)
78
0 commit comments