DeviceInfo

data class DeviceInfo(identifier: String, textInfo: String, extraInfo: String)

Data object containing the device information resulting from a device scanning.

identifier is the unique identifier of the device used for the device connection.

textInfo is a text dedicated to the user interface to help in a possible selection. Device name or address for a BLE device, manufacturer and device name for a USB device.

extraInfo contains technical details. The RSSI (receive signal strength indicator) for a BLE device or the VID/PID (Vendor ID / Product ID) for a USB device.

Since

1.0.0

Constructors

DeviceInfo
Link copied to clipboard
fun DeviceInfo(identifier: String, textInfo: String, extraInfo: String)

Properties

extraInfo
Link copied to clipboard
val extraInfo: String
identifier
Link copied to clipboard
val identifier: String
textInfo
Link copied to clipboard
val textInfo: String