ReadRemoteRssi

data class ReadRemoteRssi(val rssi: Int, val status: BleGattOperationStatus) : ClientGattEvent

Event reporting the RSSI for a remote device connection. This callback is triggered in response to the BluetoothGatt.readRemoteRssi function.

See also

(https://developer.android.com/reference/android/bluetooth/BluetoothGattCallback#onReadRemoteRssi(android.bluetooth.BluetoothGatt,%20int,%20int))

Constructors

Link copied to clipboard
constructor(rssi: Int, status: BleGattOperationStatus)

Properties

Link copied to clipboard
val rssi: Int

The RSSI value for the remote device.

Link copied to clipboard