Reputation: 1277
I know it is possible to get the distance from a iBeacon to device.
Consider two beacons placed exact same distance from the device, but one is on left side and other is on right side of the device. Is it possible to identify which one is left side and which one is right side of the device.
Upvotes: 0
Views: 193
Reputation: 64916
Unfortunately you cannot do this with standard iBeacons.
iBeacons are very simple devices that just transmit a regular "advertisement". The way mobile devices estimate the distance to an iBeacon is simply by looking at the signal strength of these advertisements when they are received, and plugging this signal strength into a formula that converts it to an estimated distance in meters.
Because the antenna patterns on iBeacons are typically circular, there is no way to estimate the direction you are from an iBeacon. When the mobile device estimates it is one meter away, it could be in any direction.
You might be able to make an algorithm to do something like this if you could get custom iBeacons that have a unidirectional antenna pattern. Unfortunately, I am not aware of any that exist.
Upvotes: 1