0

I've 6 Estimote beacons near to Android Device. And, i installed demo app and in that device showing/detecting only beacons out of 6 beacons (All 6 beacons are with in range only).

So, i want to know that is there any limit to detect beacons from Android device (App)?

Siva Polam
  • 87
  • 1
  • 12

2 Answers2

0

There is no such limit.

If not all beacons are showing up, then it can be something with the beacons themselves. You might want to contact Estimote Customer Support (contact@estimote.com) for help with troubleshooting the issue.

heypiotr
  • 2,139
  • 2
  • 15
  • 22
0

Because in that demo app they are listing first fond beacon that is nearest beacon that's why showing only single beacon

eg.

 Beacon nearestBeacon = list.get(0);

So you can replace that 0 to number of beacons that is i beacons

eg.

for(int i =0 ; i<list.size();i++){

  Beacon nearestBeacon = list.get(i);

} 

something like this

Sanoop Surendran
  • 3,484
  • 4
  • 28
  • 49
Prasad P
  • 1,042
  • 8
  • 5