diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/bluetooth/ble_temperature_central.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bluetooth/ble_temperature_central.py b/examples/bluetooth/ble_temperature_central.py index 3d609f13ca..5c23a06453 100644 --- a/examples/bluetooth/ble_temperature_central.py +++ b/examples/bluetooth/ble_temperature_central.py @@ -72,7 +72,7 @@ class BLETemperatureCentral: if connectable and _ENV_SENSE_UUID in decode_services(adv_data): # Found a potential device, remember it and stop scanning. self._addr_type = addr_type - 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. self._name = decode_name(adv_data) or '?' self._ble.gap_scan(None) |