summaryrefslogtreecommitdiffstatshomepage
path: root/examples/bluetooth/ble_temperature_central.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bluetooth/ble_temperature_central.py')
-rw-r--r--examples/bluetooth/ble_temperature_central.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/bluetooth/ble_temperature_central.py b/examples/bluetooth/ble_temperature_central.py
index 1ce99728b3..f9db225c16 100644
--- a/examples/bluetooth/ble_temperature_central.py
+++ b/examples/bluetooth/ble_temperature_central.py
@@ -128,7 +128,7 @@ class BLETemperatureCentral:
if conn_handle == self._conn_handle and uuid == _ENV_SENSE_UUID:
self._start_handle, self._end_handle = start_handle, end_handle
- elif event == _IRQ_GATTC_SERVICES_DONE:
+ elif event == _IRQ_GATTC_SERVICE_DONE:
# Service query complete.
if self._start_handle and self._end_handle:
self._ble.gattc_discover_characteristics(
@@ -143,7 +143,7 @@ class BLETemperatureCentral:
if conn_handle == self._conn_handle and uuid == _TEMP_UUID:
self._value_handle = value_handle
- elif event == _IRQ_GATTC_CHARACTERISTICS_DONE:
+ elif event == _IRQ_GATTC_CHARACTERISTIC_DONE:
# Characteristic query complete.
if self._value_handle:
# We've finished connecting and discovering device, fire the connect callback.