iOS Swift: Can't read iBeacon manufacturer data (raw data Android equivalent)

900 Views Asked by At

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?

1

There are 1 best solutions below

2
On

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:

  1. You can encode the temperature data into either major or minor of the iBeacon advertisement and use CoreLocation API
  2. You can advertise Service Data Type in your advertisement — then you can use CoreBluetooth to access that data (because iBeacon advertisement is stripped by iOS in CoreBluetooth). From Bluetooth website:
data type value data type name reference for definition
0x16 «Service Data» Bluetooth Core Specification:Vol. 3, Part C, sections 11.1.10 and 18.10 (v4.0)
0x20 «Service Data - 32-bit UUID» Core Specification Supplement, Part A, section 1.11
0x21 «Service Data - 128-bit UUID» Core Specification Supplement, Part A, section 1.11