问题描述
我要在信标中制作一个android应用程序,我想在其中找到估算信标。因此,我想知道如何在不使用uuid的情况下开始测距信标以及如何搜索估计信标。我想找到Estimote的uuid。
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.
推荐答案
所有Estimote信标都共享相同的邻近UUID,除非进行了更改。如果您使用,则会在 com中声明默认的接近度UUID .estimote.sdk.utils.EstimoteBeacons.ESTIMOTE_PROXIMITY_UUID
( B9407F30-F5F8-466E-AFF9-25556B57FE6D
)。
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
).
使用Estimote Android SDK,您可以在不知道邻近UUID的情况下开始进行测距。请参见(尤其是),并请注意您可以按以下方式声明区域:
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);
这篇关于如何使用estimote beacon android在没有UUID的情况下开始测距?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!