11125
1
I do not have a beacon, but I bought a sticker.
However, I would like to conduct various experiments using stickers.
- Do I need a beacon for my experiment with stickers?
- If I have stickers, can not I proceed with the experiment?
- 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.
pober
2
- You don’t need a beacon for playing with stickers. They do not communicate with each other.
- 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.
- 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
}
}
});