nrf5/modules: Updating ubluepy example to print out gatts write events with data.
This commit is contained in:
parent
e60a06563e
commit
bfda169dfe
|
@ -49,6 +49,8 @@ def event_handler(id, length, data):
|
||||||
elif id == constants.EVT_GAP_DISCONNECTED:
|
elif id == constants.EVT_GAP_DISCONNECTED:
|
||||||
# disconnect
|
# disconnect
|
||||||
LED(2).off()
|
LED(2).off()
|
||||||
|
elif id == 80:
|
||||||
|
print("id 80, data:", data)
|
||||||
|
|
||||||
# u0 = UUID("0x180D") # HRM service
|
# u0 = UUID("0x180D") # HRM service
|
||||||
# u1 = UUID("0x2A37") # HRM measurement
|
# u1 = UUID("0x2A37") # HRM measurement
|
||||||
|
|
Loading…
Reference in New Issue