I am using this iBeacon BLE device https://www.beaconzone.co.uk/LC01BodyTemperature and trying to read its temperature data.
I've successfully managed to do it in Android Kotlin using RxAndroidBle by accessing ScanResult.scanRecord.bytes
and now I'm trying to do the same thing in iOS Swift using RxBluetoothKit by reading ScannedPeripheral.advertisementData.manufacturerData
.
From my understanding of documentation that field should be the Android equivalent of the bytes
field but in every test I did it always returned nil
.
I've also tried to access it natively in the centralManager(_:didDiscover:advertisementData:rssi:)
function by accessing CBAdvertisementDataManufacturerDataKey
in advertisementData
but that also returned nil
.
The bytes I need to get from the iBeacon's raw data are in position 45 (integer part of temperature) and 46 (fractional part of temperature) but I don't get any byte array whatsoever transmitted in the advertisementData
of centralManager(_:didDiscover:advertisementData:rssi:)
that has the length suggested by the manual of the device.
Do you have any suggestions on what I'm doing wrong?
You cannot access iBeacon advertisement data using
CoreBluetooth
(which is what RxBluetoothKit uses under the hood).iOS uses
CoreLocation
API for interfacing with iBeacons.If you want to use iBeacons and advertise some data you have two options:
CoreLocation
APICoreBluetooth
to access that data (because iBeacon advertisement is stripped by iOS inCoreBluetooth
). From Bluetooth website: