How to start ranging without UUID using estimote beacon android?

安稳与你 提交于 2019-12-10 17:19:18

问题


I am making an android application on beacon in this app I want to find estimote beacon. So I want to know that how to start ranging beacon without uuid and how to search estimote beacon. I want to find uuid of Estimote. If anybody knows please help me out with this.


回答1:


All Estimote beacons share the same proximity UUID unless changed. If you use Estimote Android SDK, then default proximity UUID is declared in com.estimote.sdk.utils.EstimoteBeacons.ESTIMOTE_PROXIMITY_UUID (B9407F30-F5F8-466E-AFF9-25556B57FE6D).

Using Estimote Android SDK you can start ranging without knowing proximity UUID. See Demos from SDK (in particlar ListBeaconsActivity) and note that you can declare region as follows:

private static final Region ALL_ESTIMOTE_BEACONS_REGION = new Region("rid", null, null, null);


来源:https://stackoverflow.com/questions/26842466/how-to-start-ranging-without-uuid-using-estimote-beacon-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!