GATT SVC script !SET UP SCREEN MIRRORING ON PHONE! // Create GATT SVC with 2 characteristics: [READ,WRITE] and [NOTIFY] style wbcmd --port com16 --path /comm/ble/gattsvc --op post --opdatatype GattSvc --opdata "{\"uuid\":[65,66],\"chars\":[{\"uuid\":[77,78],\"props\":[5,6]},{\"uuid\":[80,81],\"props\":[4]}]}" - Store handle! - Read definition wbcmd --port com16 --path /comm/ble/gattsvc/XXXXX - See new service in nrfConnect - subscribe to READ/WRITE handle: wbcmd --port com16 --path /comm/ble/gattsvc/30/32 --op subscribe - write value with nrfConnect => See notification on screen! - Enable NOTIFY notification on nrfConnect - Write data to Characteristic wbcmd --port com16 --path /comm/ble/gattsvc/30/35 --op put --opdatatype Characteristic --opdata {\"bytes\":[1,2,3,4,5,6,7]}