I'm trying to deal with Estimote/Android-SDK
Link Here
I ran the demo, which is located on the github and it finds me all the sensors (6 pieces). But distance is incorrect. My main question is how to change the power of the sensor, which is why it is active at a distance of 70 meters. I want to ask a distance of 5 meters, beyond which it is not available. And how to calculate the distance? Please see my code so far:
if (beconid.containsKey(beacon.getMinor()) && Utils.computeAccuracy(beacon) <= 0.1) {
Log.d("beaconslogg", " getMinor() " + beacon.getMinor() +
" getMajor() " + beacon.getMajor() +
" getMacAddress " + beacon.getMacAddress() +
" getProximityUUID " + beacon.getProximityUUID() +
" getName " + beacon.getName());
}