ibeacon

CLBeacon - how to change rssi, major and minor?

萝らか妹 提交于 2019-12-09 01:47:25
问题 My question is basically - how do I get to modify iBeacon's default settings like major, minor and RSSI? 回答1: There are different ways to set these values depending on what you mean by an iBeacon: Hardware iBeacons Each Beacon vendor has different ways of setting these values. Some are changed via a bluetooth service that is typically managed with a proprietary iOS or Android app. (Examples include Radius Networks' battery-powered and USB beacons and TwoCanoes beacons.) Radius Networks'

How to retrieve advertising payload from iBeacon / BLE

六眼飞鱼酱① 提交于 2019-12-09 00:37:47
问题 How do you retrieve the advertising payload for a Bluetooth LE emitter in linux? Specifically, I've configured arduino's and R-PI's using hcitool to act as iBeacons. What I'm looking for is a command to print out what the current advertising payload is for the device. 回答1: At Radius Networks, we put together a set of scripts that parse the iBeacon identifiers out of BLE advertisement detected on Linux. You can find a description of this here. If you simply want to see the raw advertisement

Apple AirLocation demo App ranging not shows beacons

最后都变了- 提交于 2019-12-08 18:49:15
问题 I have3 Estimote beacons that can be seen with the App store Estimate App. Now I am trying to run the Apple demo app AirLocation AirLocate I have changed the UUID in the APLDefaults.m file to the default Estimote UUID _supportedProximityUUIDs = @[[[NSUUID alloc] initWithUUIDString:@"B9407F30-F5F8-466E-AFF9-25556B57FE6D"]]; I have enabled the Region to start startMonitoringForRegion as this stackoverflow says. But they are not showing up, have you seen this ? Or am I missing some Estimate

Factory pattern : iBeacon Delegates are not called from implemention file

限于喜欢 提交于 2019-12-08 14:46:53
问题 I introduced “ Factory Pattern ” in my beacon scanning module. I referred http://crosbymichael.com/objective-c-design-patterns-factory.html In my Factory class, 2 modes of beacons are switched between Interface classes “ PCGoogleBeacon.h ” and “ PCAppleBeacon.h ”. //Header file of Factory typedef enum beaconMode { iBeacon, Eddystone } BeaconMode; @interface PCBeaconFinder : NSObject +(id) searchForBeaconMode:(BeaconMode) beaconMode; @end //Implementation of Factory +(id) searchForBeaconMode:

MY IOS App is not getting any region updates when ever I restart my device any ideas?

主宰稳场 提交于 2019-12-08 14:24:12
问题 My app is working fine for beacon monitoring when running in foreground and background even when I quit app it's launching the app in background .. But when I restart the phone it's not waking up.. // I am using background modes for location also func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { //do i have to do anything here return true } //when ever app hit background bellow method will trigger and

Does AirLocate only look for particular UUIDs?

谁说胖子不能爱 提交于 2019-12-08 13:37:31
I've been testing some iBeacons -- hen I set the UUID of the beacon to something other than the default it isn't picked up by AirLocate. Is AirLocate only looking for particular beacon UUIDs or am I doing something wrong? Thanks! AirLocate works differently depending on whether you are ranging or monitoring. When you are monitoring, you can choose from any one of eight built-in ProximityUUIDs to monitor, and you can optionally also choose to monitor based on a major and minor identifier. While you can manually edit one of the built-in ProximityUUIDs, changing one only affects the currently

Current location in Offline Indoor Navigation in ios

旧城冷巷雨未停 提交于 2019-12-08 09:45:51
问题 As a part of my ibeacon based ios application i have to find the current location of the user in my indoor map offline, I am using mapbox SDK for displaying my offline indoor map there is any way to calculate the user location with the help of near by beacons.Thanks in advance. 回答1: Yes! You can use Radius Networks' NavigationKit framework to do offline indoor navigation. There is a reference app that shows you how to use it with an image-based map, but you can modify it to work with mapbox

Estimote SDK for Ecilipse

旧巷老猫 提交于 2019-12-08 09:43:55
问题 I am very beginner for this Estimote Beacons i just tried to Convert Estimote Demo Android Studio Project into Eclipse IDE. but I'm getting pretty close, but I'm having some trouble on Library file. I am following the Estimote Android SDK Guide on GitHub at https://github.com/Estimote/Android-SDK. I just want to create demo app for Estimote Notification. Logcat Error : java.lang.NoClassDefFoundError: com.estimote.sdk.EstimoteSDK This is the line its indicate : EstimoteSDK.initialize(this,

How to detect ibeacon device in background

妖精的绣舞 提交于 2019-12-08 08:34:53
问题 I am implementing notification-based ibeacon app. What I am trying to do is exactly same as the video(https://www.youtube.com/watch?v=SrsHBjzt2E8). A user download the app from Appstore, take a look and then push it background. Supposed the user was doing whole things at home. Later, the user walk around the store ibeacon installed while the app is in background mode.What I expected is that the app automatically detect ibeacon devices and get notified. However,region ranging and monitoring

Count while in background (NSTimer for more than 3 mins)

别等时光非礼了梦想. 提交于 2019-12-08 07:46:43
问题 Is there any way to run NSTimer for more than 3 mins in background? I have to create simple app that uses `locationManager(manager: CLLocationManager, didRangeBeacons beacons: [CLBeacon], inRegion region: CLBeaconRegion)` for scan my beacons. I have run into problem when I needed to check if user is exactly 10 seconds near closest beacon. I created var timer: NSTimer? var lastClosestBeacon: CLBeacon? { didSet { timer?.invalidate() timer = NSTimer.scheduledTimerWithTimeInterval(10, target: