BleDiscoveredDevice

data class BleDiscoveredDevice(val name: String, val deviceId: String, val rssi: Int, val timeStamp: Date, val connectionPoolId: String)

A class representing a BLE device discovered during scanning.

This class contains information about the device such as its name, unique device ID, signal strength (RSSI), the time it was discovered, and the connection pool ID.

Constructors

Link copied to clipboard
constructor(name: String, deviceId: String, rssi: Int, timeStamp: Date, connectionPoolId: String)

Properties

Link copied to clipboard

The connection pool ID associated with the device.

Link copied to clipboard

The unique identifier for the BLE device.

Link copied to clipboard

The name of the BLE device.

Link copied to clipboard
val rssi: Int

The signal strength of the BLE device, represented as RSSI (Received Signal Strength Indicator).

Link copied to clipboard

The timestamp when the device was discovered.