Lancaster University's fork of the mbed BLE API. Lives on github, https://github.com/lancaster-university/BLE_API
Dependents: microbit-dal microbit-dal microbit-ble-open microbit-dal ... more
Fork of BLE_API by
Diff: ble/DiscoveredCharacteristic.h
- Revision:
- 931:97e69faa4a5c
- Parent:
- 929:918d93d409c1
- Child:
- 933:3ec277a0d780
diff -r d6883d67fcb3 -r 97e69faa4a5c ble/DiscoveredCharacteristic.h --- a/ble/DiscoveredCharacteristic.h Thu Nov 26 12:52:05 2015 +0000 +++ b/ble/DiscoveredCharacteristic.h Thu Nov 26 12:52:05 2015 +0000 @@ -137,6 +137,11 @@ */ ble_error_t write(uint16_t length, const uint8_t *value) const; + /** + * Same as above but register the callback wich will be called once the data has been written + */ + ble_error_t write(uint16_t length, const uint8_t *value, const GattClient::WriteCallback_t& onRead) const; + void setupLongUUID(UUID::LongUUIDBytes_t longUUID) { uuid.setupLong(longUUID); }