Hello
Based on this :
What is the field name that hold the transmit power, I need this to calc the distance from the beacon. I have a iOS app called Dartie and it show the distance from the beacons it has scanned.
Regards
John.
Based on this :
B4X:
For Each Beacon As NativeObject In Beacons
Dim UUID As String = Beacon.GetField("proximityUUID").AsString
Dim Major As Int = Beacon.GetField("major").AsNumber
Dim Minor As Int = Beacon.GetField("minor").AsNumber
Dim proximity As Int = Beacon.GetField("proximity").AsNumber '0 = unknown, 1 = immediate, 2 = near, 3 = far
Dim rssi As Int = Beacon.GetField("rssi").AsNumber
Dim beaconName As String = clsBeacons.get_asset_name(Major & Minor)
Next
What is the field name that hold the transmit power, I need this to calc the distance from the beacon. I have a iOS app called Dartie and it show the distance from the beacons it has scanned.
Regards
John.