Proximity beacon Firmware version 4.11.0
Hardware verison F3.3
Android OS 8.0 Pixel phone
PROBLEM: with the beacons sitting for periods in one position i keep getting continuous enter exit notifications without moving my phone or the beacon. here is what I do.
I have 1 beacon
Steps
- Place the beacon way far away from my phone
- start my app
NOTE: i created a tag like this {“attachment”:{“far”, “ronfar”, “near”, "ronnear:}} on the cloud.
Small snippet of code for this is (where key =“far” value=“ronfar” and I also register a near
proximityObserver.zoneBuilder()
.forAttachmentKeyAndValue(key, value)
.inFarRange()
.withOnEnterAction(new Function1<ProximityAttachment, Unit>() {
- my logs show the tags and the far and near proximity
12-02 14:10:23.368 4324 4353 V IgnitebleBeaconManager: starting to monitor
12-02 14:10:23.476 4324 4353 V IgnitebleBeaconManager: zones for beaconId=3c133653d1f2bd6438be05f47989043f
At this point i am listening for my beacons.
Now I walk closer to my phone and stop and place the beacon down when I get a log saying I am in the range
NOTE: these next few logs are with phone and beacon motionless.
12-02 14:12:00.176 4324 4324 V IgnitebleBeaconManager: withOnEnterAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:12:00.592 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 1
12-02 14:12:01.720 4324 4324 V IgnitebleBeaconManager: withOnExitAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:12:01.768 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 0
12-02 14:12:05.413 4324 4324 V IgnitebleBeaconManager: withOnEnterAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:12:05.453 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 1
12-02 14:12:40.263 4324 4324 V IgnitebleBeaconManager: withOnExitAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:12:40.298 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 0
12-02 14:12:50.406 4324 4324 V IgnitebleBeaconManager: withOnEnterAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:12:50.445 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 1
12-02 14:13:01.764 4324 4324 V IgnitebleBeaconManager: withOnExitAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:01.790 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 0
12-02 14:13:10.120 4324 4324 V IgnitebleBeaconManager: withOnEnterAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:10.140 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 1
12-02 14:13:15.316 4324 4324 V IgnitebleBeaconManager: withOnExitAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:15.356 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 0
12-02 14:13:16.234 4324 4324 V IgnitebleBeaconManager: withOnEnterAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:16.272 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 1
12-02 14:13:30.715 4324 4324 V IgnitebleBeaconManager: withOnExitAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:30.753 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 0
I then pickup the beacon and move closer into the near range and place the beacon down.
NOTE: Once again exits the far range zone then cycles back and forth on the enter exit of the near range zone.
12-02 14:13:35.939 4324 4324 V IgnitebleBeaconManager: withOnEnterAction farRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:35.975 4324 4324 V IgnitebleBeaconManager: withOnChangeAction farRangeZone 1
12-02 14:13:45.757 4324 4324 V IgnitebleBeaconManager: withOnEnterAction nearRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:45.793 4324 4324 V IgnitebleBeaconManager: withOnChangeAction nearRangeZone 1
12-02 14:13:50.998 4324 4324 V IgnitebleBeaconManager: withOnExitAction nearRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:13:51.033 4324 4324 V IgnitebleBeaconManager: withOnChangeAction nearRangeZone 0
12-02 14:14:01.461 4324 4324 V IgnitebleBeaconManager: withOnEnterAction nearRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:14:01.494 4324 4324 V IgnitebleBeaconManager: withOnChangeAction nearRangeZone 1
12-02 14:14:06.389 4324 4324 V IgnitebleBeaconManager: withOnExitAction nearRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:14:06.423 4324 4324 V IgnitebleBeaconManager: withOnChangeAction nearRangeZone 0
12-02 14:14:10.095 4324 4324 V IgnitebleBeaconManager: withOnEnterAction nearRangeZone 3c133653d1f2bd6438be05f47989043f
12-02 14:14:10.128 4324 4324 V IgnitebleBeaconManager: withOnChangeAction nearRangeZone 1
What might I be doing wrong?
Thanks