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
0
votes
1 answer

Is it possible to detect the closest region (of multiple beacons) in AltBeacon's library?

I found the post on how to range all of the beacons and locate the closest one. I got that working nicely. But now I want to do the same for a group of multiple beacons. I am assuming that regions are the best way to do this with the AltBeacon…
usernotdev
  • 117
  • 1
  • 7
0
votes
1 answer

In the AltBeacon library what is the reason I see iBeacons refresh multiple times a second?

I'm using the reference Altbeacon android app (current) to learn about ibeacons. I've heard about the "RangedBeacon.setSampleExpirationMilliseconds" value, which defaults to 20 seconds, and the monitor version seems to be 10 seconds by default. So…
usernotdev
  • 117
  • 1
  • 7
0
votes
1 answer

AltBeacon setLayout for BlueBar Beacons

I would like to user AltBeacon lib, but the blueBar beacons arn't recognized has AltBeacon, below the logcat output : 01-08 11:28:11.577 8876-12231/com.pdavid.android.widget.bulb D/BluetoothLeScanner﹕ onScanResult() -…
Philippe David
  • 8,814
  • 3
  • 24
  • 35
0
votes
1 answer

AltBeacon ReferenceApplication does not detect beacons when killed

The reference application does not give any trace when the app is killed. I installed the app and started ranging, the beacons are detected. Now I put the app in background, the scanning happens once in 5 mins. Now I kill the app and the scanning…
0
votes
1 answer

AltBeacon/android-beacon-library-reference app hang on my MX4 device

I just started to play with AltBeacon library. I downloaded sample app from AltBeacon/android-beacon-library-reference and added the library reference to android-beacon-library-2.0.tar.gz . When I ran it on my MX4 device (MeiZu made in China) with…
tedyyu
  • 587
  • 6
  • 12
0
votes
1 answer

How to connect to red bear beacon by alt beacon library

I am trying to read red bear beacon advertisement by alt beacon library. I am able to detect the beacon by: mBeaconManager.getBeaconParsers().add(new BeaconParser().setBeaconLayout("m:2-3=0x004C,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25")); But in…
suvi
  • 1
  • 1
0
votes
1 answer

How to parse iBeacon identifiers from Altbeacon's bootstrap and start application with them?

I'm trying to get the bootstrap to gather id2 and id3 from iBeacons and start an activity with them. The problem is that the application wouldn't start from the intent and I keep seeing D/BeaconService﹕ Calling ranging callback D/Callback﹕…
odell
  • 3
  • 2
0
votes
1 answer

POJO as a BeaconConsumer instead of Activity

I am trying to use a POJO as a BeaconConsumer. Is this acceptable? The onServiceConnect is getting called. But I have to forcefully override the unbindService and the bindService.
0
votes
1 answer

AltBeacon scanning iBeacon on Android

I want to scan an iBeacon UUID = "2F234454-CF6D-4A0F-ADF2-F4911BA9FFA6" from Android phone Nexus5 I have followed example from AltBeacon and SO query. But don't see anything scanning. Where am I wrong? Here is the code private static final String…
Abhinav Tyagi
  • 5,158
  • 3
  • 30
  • 60
0
votes
1 answer

Updating regions in RegionBootstrap

I have an application that is using RegionBootstrap to look for a set of regions. In the onCreate method of my Application class I instantiate the RegionBootstrap and pass it a list of Regions. This works great, and as expected. Is there a way to…
Greg Neiheisel
  • 590
  • 4
  • 12
0
votes
0 answers

Altbeacon Launching in the Background detection time issue

I am using altbeacon lib for detecting ibeacons. If I detect ibeacons from activity by starting service its detecting ibeacons perfectly fine. Now I want to start the same operation in background(STICKY service). I followed this document. It is…
Dhrupal
  • 1,863
  • 1
  • 23
  • 38
0
votes
1 answer

Ibeacon regions closed sets?

We are trying to use Altbeacon library to satisfy the next study case: We want to put several IBeacons in a room or corridor with a distance of no more than 3 meters between each of them, and we want to get the current closest Ibeacon based on the…
Jorge Revuelta
  • 822
  • 1
  • 8
  • 16
0
votes
1 answer

how to get distance of 2 beacons and make a condtion base on that distance

I'm trying to know what floor I'm at by getting the distance of 2 beacons with the same id1,1d2 and the id3 is 1 for beacon 1 and 2 for beacon 2...but my code does not work :( ... Im not that good in programming and I dont know how to use most of…
KB24
  • 1
0
votes
1 answer

How to Display data from the database in didRangeBeaconsInRegion?

I want to display data to the textview from the database when the beacon is detected in specific distance .... the problem is it does not work or does not display anything here's my code ... public void…
strygwyr
  • 3
  • 2
0
votes
2 answers

How can I insert codes or do something if the app detected an altbeacon with Pibeacon default UUID and the minor or id3 is 1?

I'm a newbie in android development and I am using altbeacon library and the reference app for altbeacons we also have a 2 Pibeacons....... the reference works fine and able to detect both beacons ...I want to do something if the app detected a…