nrf5/modules: Updating example in ubluepy header with 16-bit uuid's commented out, to show usage.
This commit is contained in:
parent
c81b606b01
commit
f0f6ad20b2
@ -50,9 +50,12 @@ def event_handler(id, conn_handle, length, data):
|
|||||||
# disconnect
|
# disconnect
|
||||||
LED(2).off()
|
LED(2).off()
|
||||||
|
|
||||||
|
# u0 = UUID("0x180D") # HRM service
|
||||||
|
# u1 = UUID("0x2A37") # HRM measurement
|
||||||
|
|
||||||
u0 = UUID("6e400001-b5a3-f393-e0a9-e50e24dcca9e")
|
u0 = UUID("6e400001-b5a3-f393-e0a9-e50e24dcca9e")
|
||||||
s = Service(u0)
|
|
||||||
u1 = UUID("6e400002-b5a3-f393-e0a9-e50e24dcca9e")
|
u1 = UUID("6e400002-b5a3-f393-e0a9-e50e24dcca9e")
|
||||||
|
s = Service(u0)
|
||||||
c = Characteristic(u1)
|
c = Characteristic(u1)
|
||||||
s.addCharacteristic(c)
|
s.addCharacteristic(c)
|
||||||
p = Peripheral()
|
p = Peripheral()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user