diff options
author | Damien George <damien.p.george@gmail.com> | 2020-02-27 15:29:23 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-02-28 10:30:49 +1100 |
commit | 3c58d9a1a5231352ee8407dc288a8d96e382f6a0 (patch) | |
tree | 8848ebd30be63baa0536d9993bf48b1860a82c2e /examples/bluetooth/ble_temperature_central.py | |
parent | a0441fc15d29fe3a3d0ae4c62ebacb0a09bbd8b2 (diff) | |
download | micropython-3c58d9a1a5231352ee8407dc288a8d96e382f6a0.tar.gz micropython-3c58d9a1a5231352ee8407dc288a8d96e382f6a0.zip |
examples/bluetooth/ble_temperature_central.py: Shorten comment.
So the line length is less than 100 characters.
Diffstat (limited to 'examples/bluetooth/ble_temperature_central.py')
-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) |