notifyCharacteristicChanged

suspend fun notifyCharacteristicChanged(deviceId: DeviceId, serviceUuid: ServiceUuid, characteristicId: CharacteristicId, value: ByteArray): Boolean

Notifies the device with the specified deviceId that the value of the characteristic with the specified characteristicId on the service with the specified serviceUuid has changed to the specified value.

Note This is a notification, which means that the client will not confirm reception and therefore there is a change that it will get lost. However this also means that we do not need a full round trip to send this data, which means that the send bandwidth is not directly constrained by the round-trip-time.