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

Radius Networks AltBeacon background power saving option

I am using the Radius Networks AltBeacon library and trying to utilise the background power saving feature for Android. The documentation states that the background power saving defaults are for a 30 second scan to take place every 5 minutes. I…
Richard Shergold
  • 572
  • 1
  • 8
  • 21
0
votes
1 answer

How do I find ANY beacon using the AltBeacon android reference library?

I'm using the altbeacon android reference library for detecting beacons. There is an option to configure the parser to detect other non-altbeacon beacons e.g. Estimote (as described here) by adding a new BeaconParser (see this) which works a…
Mark Chidlow
  • 1,432
  • 2
  • 24
  • 43
0
votes
1 answer

Altbeacon Library sample doesn't seem to work in the Background

I have used the basic sample application provided by Altbeacon (Radio Network) on the Github repo. Everything seems to work for my iBeacon right from Monitoring to the Ranging but only in Foreground I have done these following steps to get it…
Anuj
  • 2,065
  • 22
  • 23
0
votes
1 answer

AltBeacon - Detect RadiusNetwork USB Beacon - How to get correct BeaconLayout

I am trying to use AltBeacon to detect RadiusNetwork beacons. I am aware that i need to use setBeaconLayout() to get beacons(other than AltBeacons) detected. But, I am not sure how to get the Layout for the beacons that i want to use. I am pretty…
Vamsi Challa
  • 11,038
  • 31
  • 99
  • 149
0
votes
1 answer

Beacon getDistance() Units of measurement and calculation methods

I've started to use the Android Beacon Library from RadiusNetwork. After some try, i've reached the result to display my iBeacon data on Nexus 5. The questions are: The distance are in meters or in some other units? I've seen that there is an…
user1509289
  • 88
  • 1
  • 6
0
votes
1 answer

Not getting RegionBootstrap to trigger

I am using Android beacon library and have implemented RegionbootStrap following way: In Application class public void onCreate() { super.onCreate(); Region region = new Region(getPackageName(), null, null, null); mRegionBootstrap = new…
Niko
  • 8,093
  • 5
  • 49
  • 85
-1
votes
1 answer

Get some information from Beacon

I want to get the major & minor values and the battery level as well as the proximity UUID, but I'm not sure how to get those values from Beacon object. It doesn't seem there are the functions to get them. Could you provide the sample code to get…
shenhai99
  • 1
  • 1
-1
votes
2 answers

Detect an altbeacon with bluetooth off on android

I am creating an application for a challenge as an android developer that reads ibeacons with the altbeacons library. I was able to identify the UUID, Major, Minor .. but in the test asks to do this reading with bluetooth turned off, searched and…
-1
votes
1 answer

Could not found any beacon with altbeacon android

I am using altbeacon for android and i cant't detect my beacon. I have tried https://github.com/AltBeacon/android-beacon-library-reference sample code also but can't detect beacon. Here is my code: public class BeaconApplication extends Application…
-1
votes
1 answer

How to programmatically set UUID, major ID, ... and other properties at 1m in Altbeacon format

I am currently exploring retail advertising options. I am interested in AltBeacon as it is an open standard. I have a basic question, if someone can answer How can I programmatically set UUID, major ID, minor ID, advertisements frequency,…
Simon S
  • 27
  • 1
-1
votes
1 answer

ScanJob continues beign invoked after the 15 min period and stops when a region matches

From what I understand in the documentation of AltBeacon library, the ScanJob should stop beign called after 15min of last interaction with the application. I have started to monitor and range some regions and I have disabled all the beacons, so no…
Eylen
  • 2,617
  • 4
  • 27
  • 42
-1
votes
1 answer

How to make didRangeBeaconsInRegion call once for all the uuid

My Problem I need to make the combined call for all the region on didRangeBeaconsInRegion right now for each uuid eg: if i have 2 uuid the didRangeBeaconsInRegion is called 2 times and for 4 uuid didRangeBeaconsInRegion called 4 times likewise it…
prasanthMurugan
  • 597
  • 6
  • 21
-1
votes
1 answer

Estimote Beacons Distance Calculation

Im coding an android project (using EstimoteSDK) where I need to detect distance from my beacons, that's because I want to handle them as "detected" from maximum 1.5 meters. Should I do it using rssi & txpower? and if so, how do I get them using…
Itay
  • 1
  • 1
-1
votes
1 answer

How can I measure the distance between a raspberry pi and a moving/mobile beacon? Reducing noise in RSSI

I would like to know the distance between a raspberry pi and a moving/mobile beacon. Has anyone implemented a kalman filter (preferably python) or determined a better algorithm for improving distance estimates, based on Radio Signal Strength…
-1
votes
1 answer

Practically, how feasible it is to define an area with beacons?

I want to define an area with a certain number of beacons. Theoretically it should be possible, Is it possible practically? Because the distance value that i get fluctuates erratically.
1 2 3
49
50