-
public class RxBleScanResultRepresents a scan result from Bluetooth LE scan.
-
-
Field Summary
Fields Modifier and Type Field Description private final RxBleDevicebleDeviceprivate final intrssiprivate final Array<byte>scanRecord
-
Constructor Summary
Constructors Constructor Description RxBleScanResult(RxBleDevice bleDevice, int rssi, Array<byte> scanRecords)
-
Method Summary
Modifier and Type Method Description RxBleDevicegetBleDevice()Returns RxBleDevice which is a handle for Bluetooth operations on a device. intgetRssi()Returns signal strength indication received during scan operation. Array<byte>getScanRecord()The scan record of Bluetooth LE advertisement. StringtoString()-
-
Constructor Detail
-
RxBleScanResult
RxBleScanResult(RxBleDevice bleDevice, int rssi, Array<byte> scanRecords)
-
-
Method Detail
-
getBleDevice
RxBleDevice getBleDevice()
Returns RxBleDevice which is a handle for Bluetooth operations on a device. It may be used to establish connection,get MAC address and/or get the device name.
-
getRssi
int getRssi()
Returns signal strength indication received during scan operation.
-
getScanRecord
Array<byte> getScanRecord()
The scan record of Bluetooth LE advertisement.
-
-
-
-