0

Currently I'm following this tutorial https://www.appcoda.com/ios7-programming-ibeacons-tutorial/.

And created one broadcasting beacon. Other devices will detect this beacon when these users enter the region. What I want to know is who are the customers in the mall right now. Is it possible?

arun siva
  • 809
  • 1
  • 7
  • 18

2 Answers2

3

Understand that bluetooth beacons are one way transmitters. They have no knowledge of what devices, if any, detected them.

If you have an app on each of the devices that detected the beacon, you can program something into the app that reports to a server when it saw the beacon. Using this technique, you can calculate on.the server how many mobile devices saw the beacon in a given time frame.

davidgyoung
  • 63,876
  • 14
  • 121
  • 204
0

If your iBeacon transmitter is an iOS device such as an iPhone or iPad, you can set it to transmit and receive at the same time. If you're using a dedicated iBeacon device like Estimote, they are transmit only and will not be aware of how many clients are nearby.

Further discussion on simultaneous transmission/reception can be found here: iBeacon app - receiving/transmitting at the same time

Harrison Friia
  • 372
  • 2
  • 10