CharacteristicRead
data class CharacteristicRead(val characteristic: IBluetoothGattCharacteristic, val value: DataByteArray, val status: BleGattOperationStatus) : ClientGattEvent.CharacteristicEvent
Event reporting the result of a characteristic read operation.
See also
(https://developer.android.com/reference/android/bluetooth/BluetoothGattCallback#onCharacteristicRead(android.bluetooth.BluetoothGatt,%20android.bluetooth.BluetoothGattCharacteristic,%20byte[],%20int))
Constructors
Link copied to clipboard
constructor(characteristic: IBluetoothGattCharacteristic, value: DataByteArray, status: BleGattOperationStatus)
Properties
Link copied to clipboard
Characteristic that was read from the associated remote device.
Link copied to clipboard
Operation status (BleGattOperationStatus).
Link copied to clipboard
The value of the characteristic.