I purchased a estimote sticker

I do not have a beacon, but I bought a sticker.
However, I would like to conduct various experiments using stickers.

  1. Do I need a beacon for my experiment with stickers?
  2. If I have stickers, can not I proceed with the experiment?
  3. If possible, I would appreciate it if you could tell me how to get temperature or motion values from sticker to Android.

My development environment is Android.

  1. You don’t need a beacon for playing with stickers. They do not communicate with each other.
  2. What experiments are you doing? It is not possible to give you an answer if we don’t know what are you planning to do with stickers.
  3. This is how to scan for stickers using old SDK:
beaconManager.setNearableListener(new BeaconManager.NearableListener() {
      @Override
      public void onNearablesDiscovered(List<Nearable> nearables) {
        for(Nearable nearable : nearables) {
          nearable.temperature
          nearable.isMoving
          nearable.lastMotionStateDuration
          nearable.currentMotionStateDuration
          nearable.orientation
        }
      }
    });