ibeacon

How to send some data between iBeacons

喜欢而已 提交于 2019-12-04 18:26:30
I started to develop with iBeacon technology. I know how connect, calculate proximity ect ect.... But one time that the connection is established, how I can send some text data between sender and receiver? There is a method (for example) can I use in some way the self.peripheralManager.accessibilityLabel Is enought also the deviceID that I can manage it with a WebServer Thank you.... The iBeacon protocol is only for transmitting / discovering beacon IDs and calculating their proximity. That is all that it does . Anything additional to that would have to be done separately - presumably using

UUID and MACAddress for Bluetooth BLE

喜欢而已 提交于 2019-12-04 17:57:39
问题 I must confess I am a newbie when it comes to BLE 4.0, and I want to understand what comprises a unique identifier for a BLE peripheral. Generally, for all WiFi communications, MAC is treated as the unique ID for the device. I have following questions: What is UUID used for? Should different BLE peripherals have different UUID? What is unique ID for a BLE peripheral device, as identifiable by some other central BLE device? Say for example, how do location finding apps on Android detect a

iBeacon mobile web application development

喜夏-厌秋 提交于 2019-12-04 17:16:02
Are there any custom APIs for iBeacon access from mobile web applications? Probably it could be a mobile safari extension. Thanks in advance. Unfortunately, no. You could write a native iOS app that looks for iBeacons in the background and launches a specific web app URL on mobile Safari. You could even pass ranged beacon info in query parameters. But you would still need a native app installed on the phone to do this. And once the Safari page is launched, getting further updates is impossible, unless you use a complex web service proxy to the native app. 来源: https://stackoverflow.com

iBeacon : What is the difference between didEnterRegion and didDetermineState(CLRegionStateInside)

◇◆丶佛笑我妖孽 提交于 2019-12-04 16:34:46
问题 I want to post a notification when users enter into a region. However, I am very confused because of same two CLLocationManagerDelegate methods. How should I use the two methods properly? Some people say "didDetermineState" method is needed to start region observation if the app start in the region. Thanks, - (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region { [self sendNotification:@"didEnterRegion"]; } - (void)locationManager:(CLLocationManager *)manager

Proximity range for Beacons changes back and forth even when the App is in the same place

喜你入骨 提交于 2019-12-04 15:53:38
Beacon Proximity range changes the proximity response as Near - Immediate - Far, even while the ios Device remains in the same place. As I open a view when the proximity response is Near. I get the proximity response back and forth, Near - immediate then Near. It shows up the view again and again How can we solve this issue. Is there any event handler. Thanks. The proximity and accuracy values appear to be quite 'noisy'. It can also depend on your environment. Water (and therefore people) absorbs the frequencies used by Bluetooth so people moving can have an impact, but I observe variation in

Is it possible to discover Gimbal beacons with standard iOS libraries

こ雲淡風輕ζ 提交于 2019-12-04 14:17:06
问题 I’m trying to determine about “discovering” Gimbal beacons with standard iOS libraries. According to Radius Networks and Blue Sense Networks - Gimbal beacons do not broadcast standard iBeacon formatted protocol and thus cannot be discovered without using the Gimbal iOS SDK. "Gimbal beacons on the other hand broadcast a rolling encrypted code to ensure only users with the correct privileges can see the beacon's information. Basically this means that every time a Gimbal beacon emits a signal,

Combine iBeacon bluetooth low energy with Android 4.3

北战南征 提交于 2019-12-04 07:23:14
问题 I'm looking for a way to detect iBeacon (iOS 7.0 feature) from an Android device. I read the Android documentation, where it seem that the iBeacon is some kind of GATT server which sends its position. While the Android documentation says that I should not poll that data, but for the detection this would be nessesary. I google a lot but this topic is quite new (I even created a new tag ibeacon) so I would be happy if I get some links to ressources from the iOS world which descripes the

How to get the AltBeacon library's BootstrapRegion to recognize the iBeacon layout?

Deadly 提交于 2019-12-03 20:41:38
I'm using reference, http://altbeacon.github.io/android-beacon-library/samples.html . I also used How to detect Region Enter/Exit for multiple beacons using AltBeacon android-beacon-library? I'm trying to detect iBeacons in the background using AltBeacon's Android-Beacon-Library. I included the following code snippet from my project. So far, I'm not detecting ibeacons in the background...any help is appreciated I'm using the BeaconManager to setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24")); However, I get no error and no beacon detection. When running app in debug on the Samsung

How to scan iBeacon signals without specifying UUID?

梦想的初衷 提交于 2019-12-03 17:04:07
Since iBeacon signal is just a BLE broadcasting with a predefined BLE profile, I think I can write an iOS App which scan the BLE broadcasting signals and analyze whether any found signal is iBeacon. But how to do that? How to scan all BLE broadcasting signals around? How to distinguish whether a BLE broadcasting signals is iBeacon? Unfortunately on iOS you must supply a ProximityUUID to see iBeacons. On Android you can see all iBeacons regardless of UUID. Further, on iOS you can not use CoreBluetooth APIs to what advertisements are iBeacons. See here for details. The answer by @davidgyoung is

Can I use Android Beacon Library in foreground service, even on Android 8 (Oreo)?

半世苍凉 提交于 2019-12-03 16:41:34
What I want to achieve I am building an app for a shopping mall, with large amount of beacons installed not quite far away from each other (assume ~20m distance). When a user walks in this mall, even without opening the app, the app needs to keep scan for beacons. When a beacon is detected, I will then query the server to ask if I need to and what local notification to push to user. What I planned to do My original plan was to create a Service , returns START_STICKY in onStartCommand() in order to make sure that the service will restart itself even the app is killed by a task manager. This