Questions tagged [altbeacon]

The Open and Inter-operable Proximity Beacon Specification.

AltBeacon is a protocol specification that defines a message format for proximity beacon advertisements. AltBeacon proximity beacon advertisements are transmitted by devices for the purpose of signalling their proximity to nearby receivers. The contents of the emitted message contain information that the receiving device can use to identify the beacon and to compute its relative distance to the beacon. The receiving device may use this information as a contextual trigger to execute procedures and implement behaviours that are relevant to being in proximity to the transmitting beacon.

746 questions
-1
votes
1 answer

Change UUID value of beacon with AltBeacon SDK?

I need to create app on android for modify UUID of beacon. I have been looking for some informations on Altbeacons docs but I haven't found anything. Also I 'asked' to google for tutorials, samples, or anything, and nothing. Please, can someone…
Scottie
  • 1
  • 4
-1
votes
1 answer

How can I get the uuid of estimote beacon using android beacon library?

I am able to detect estimote beacons using android beacon library. But the libirary giving me the uuid of the beacon as -1. The beacon layout I used for detecting estimote beacon is "m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24". Can any one help me?
-1
votes
3 answers

Finding iBeacon using AltBeacon library

I'm a french student in ingineering and I am learning Android language by myself. My friends and I have to create an Android app which is based on iBeacon technology. I discovered the AltBeacon library few days ago and I found it awesome but I have…
-1
votes
1 answer

identifying the beacon in the method didEnterRegion(Region region) and didExitRegion(Region region)

want to do this: public void didEnterRegion(Region region) { if(region.getId1.equals("xxxxxxxxxxxxx")){ //display message: welcome to area 1 } else if(region.getId1.equals("yyyyyyyyy")){ //display message: welcome to area 2 } …
-2
votes
1 answer

when several iBeacon transmitter, startRangingBeaconsInRegion function only get one UUID

when i use startRangingBeaconsInRegion(new Region("myRangingUniqueId", null, null, null);) to range the iBeacon signal in the area, my code can only get one iBeacon signal, even i set up two or three iBeacon transmitters in the room. is there any…
Bora Don
  • 13
  • 3
-2
votes
1 answer

Estimote SDK vs Altbeacon Library for Android Development

What are the pros and cons of using the Estimote SDK or the Altbeacon beacon library for developing Android apps using BLE beacons? I am only talking about the Estimte SDK not their cloud services. I don't necessarily want to use Estimote beacons…
-2
votes
1 answer

What will happen if two beacons with different regions transmit simultaneously

Let suppose I am monitoring two regions: region 1 (ABCDEFAB-E95D-433C-BCF4-643BECC5DFFF (UUID),4(MAJOR),4(MINOR)) and region 2 (ABCDEFAB-E95D-433C-BCF4-643BECC5DFFF (UUID),4(MAJOR),5(MINOR)) If both tags are placed closed to each other, what will…
H4SN
  • 1,482
  • 3
  • 24
  • 43
-3
votes
1 answer

AltBeacon -Null value in didenterRegion() and didexitRegion() method

My code Snippet: I have tried altbeacon gradle. I have declared Region as per below code. I have wrote this line in onCreate method of Application class. Region region = new Region("all beacon", null, null, null); I can get Beacon's major,minor…
user2231294
  • 153
  • 1
  • 1
  • 10
-3
votes
1 answer

Why multiple ibeacons are not detecting?

I have used Demo to detect ibeacons near android phone. But in didRangeBeaconsInRegion() callback never get 2 iBeacons detected. Even one is deactivated and other is activited it gives uuid of previous one. Let me brief it with an example. One…
Dhrupal
  • 1,863
  • 1
  • 23
  • 38
-4
votes
2 answers

Can flutter_beacon package be used to make Social Distancing app in Flutter?

I am working on social distancing app in flutter. Can I use flutter_beacon package for social distancing? I have tried the example code from https://pub.dev/packages/flutter_beacon/example but the screen keeps loading i tried to install in two…
Akiabi 27
  • 39
  • 1
  • 7
1 2 3
49
50