Ble Device
data class BleDevice(val deviceInfo: BluetoothDevice?, val deviceName: String?, val deviceAddress: String?, val rssi: Int?, val scanRecord: ByteArray?, val serviceUuids: List<ParcelUuid>? = null) : Parcelable
Bluetooth Low Energy (BLE) device. This class holds various properties related to a discovered BLE device, including its basic information (name, address), signal strength (RSSI), scan record, and service UUIDs. The class also implements Parcelable, making it possible to pass BleDevice instances between Android components (e.g., via Intents).
Constructors
Properties
Link copied to clipboard
The unique address of the BLE device.
Link copied to clipboard
The Bluetooth device information
Link copied to clipboard
The name of the BLE device
Link copied to clipboard
The raw advertising data from the BLE device
Link copied to clipboard
A list of UUIDs of services offered by the BLE device