No longer picking up ny one new beacon

The Estimote app stopped detecting my one beacon, i just got my tree. The other two are working fine and i flipped them to Eddystone. The one, however, i can’t see on the configuration screen. Only picks up the two. The one that is missing, i cant flip it to eddystone, keep getting this message.

This beacon has pending settings. Connect to it with the Estimote iOS Deployment App or the Estimote Android App to apply changes.

What is the problem. Note, i dont have any SDK setup yet. I just unboxed it and tried to flip it to eddystone.

Hi @Cartello,

  • you have 3 new beacons,
  • you configured 2 of them to broadcast Eddystone (URL, UID, TLM, EID?),
  • the Estimote app’ does not detect your third beacon.

Can you detect the third beacon with the Estimote app’ being logged out?
Can you detect the third beacon with the Beacon Simulator app’?
Can you build an Android/iOS app’ that scans for DiscoverableDevice packets? Those packets are used by the Estimote app’ to detect your beacons.

How to scan in Java:
public class PacketsDiscoveringClass {
    private BeaconManager beaconManager;

    PacketsDiscoveringClass(Context context) {
        this.beaconManager = new BeaconManager(context);
        this.beaconManager.setConfigurableDevicesListener(new BeaconManager.ConfigurableDevicesListener() {
            @Override
            public void onConfigurableDevicesFound(List<ConfigurableDevice> list) {
                // Handle here packet discovery.
            }
        });
    }

    public void startDiscovering() {
        this.beaconManager.connect(new BeaconManager.ServiceReadyCallback() {
            @Override
            public void onServiceReady() {
                beaconManager.startConfigurableDevicesDiscovery();
            }
        });
    }

    public void stopDiscovering() {
        this.beaconManager.stopConfigurableDevicesDiscovery();
    }

    public void disconnect() {
        this.beaconManager.disconnect();
    }
}