How to add more than one lighthouse in one region?

According to Estimote :

There is almost no limit to how many lighthouses can be included in one region (technically, there are more than 4 billion).

How do we add more than one beacon in one region for monitoring?

We create the following area:

UUID ESTIMOTE_PROXIMITY_UUID = UUID.fromString("B9407F30-F5F8-4568-AFF9-25556B57FE6D");
Region ALL_ESTIMOTE_BEACONS = new Region("regionId", ESTIMOTE_PROXIMITY_UUID, null, null);
+4
source share
1 answer

From the Estimote Community Manager :

If the area is defined by UUID or UUID + Major, then each beacon with that UUID (or UUID + Major) is turned on

, UUID Major, Region, . Region.

:

UUID ESTIMOTE_PROXIMITY_UUID = UUID.fromString("B9407F30-F5F8-466E-AFF9-25556B57FE6D");
Region ALL_ESTIMOTE_BEACONS = new Region("regionId", major, null, null); 
+6

Source: https://habr.com/ru/post/1621089/


All Articles