examples/bluetooth: Update to use positional-only args to irq().
To match 6a6a5f9e15.
This commit is contained in:
@@ -35,7 +35,7 @@ class BLETemperature:
|
||||
def __init__(self, ble, name="mpy-temp"):
|
||||
self._ble = ble
|
||||
self._ble.active(True)
|
||||
self._ble.irq(handler=self._irq)
|
||||
self._ble.irq(self._irq)
|
||||
((self._handle,),) = self._ble.gatts_register_services((_ENV_SENSE_SERVICE,))
|
||||
self._connections = set()
|
||||
self._payload = advertising_payload(
|
||||
|
||||
Reference in New Issue
Block a user