ibeacon

Switching from iBeacon to BLE in real time?

守給你的承諾、 提交于 2019-12-25 01:24:10
问题 Our beacon hardware was programmed to be iBeacon + writeable BLE . So i can discover it with iBeacon , and also connect to it via BLE. I would like to scan for iBeacon, and when i enter the region (app is in background) , and the delegate is being called, he will than switch to BLE and connect to the device with BLE : - (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region { // here connect as usual via bluetooth } So,as i said, i can separately write/discover

How to reduce the range detection interval in beacon for Android

人走茶凉 提交于 2019-12-24 19:22:32
问题 I have using Android Beacon Library for one of my beacon solution . I can see that if I enter the beacon range ..it calls the "didEnterRegion" function but it never enter the "didExitRegion" when I go off the beacon region . I am taking the above code which I used in here Android iBeacon App not working in the background . In addition to that is there any way I can reduce the range detection because I keep on getting that very frequently because logically I want to record the data and send

iBeacon detection wake up iPhone from sleep mode with UILocalNotification

折月煮酒 提交于 2019-12-24 16:39:51
问题 My application run on iOS 8 and when it go into background it need to detect and show a notification to the user when iBeacon detected (with UILocalNotification). All works fine but when the iPhone is sleep/locked the Notification doesn't wake up the device. How can I wake up the device when a notification come in? 回答1: Make sure the phone is detecting the beacon at all. Try adding a NSLog statement inside the didEnterRegion method or wherever you launch the notification. Then, start looking

Can we detect non-iBeacon beacons on iOS?

余生颓废 提交于 2019-12-24 15:26:33
问题 I and my team are working on a beacon that we need to talk to an app on the user's iPhone. Since we need the app to detect the beacon and execute code to talk to our API even when killed, we cannot use CoreBluetooth and need to operate as a beacon. We're attempting to make a custom beacon on a BCM20737S BLE module. Is it possible to have this custom beacon talk to an app on an iPhone as a beacon? (CoreLocation framework) Thanks! 回答1: As long as your packet is broadcasting a packet with the

Can I read iBeacon data using Arduino?

旧街凉风 提交于 2019-12-24 15:03:30
问题 I am using an HM-10 module and Arduino UNO. My requirement is to read data from ibeacons near me using Arduino. Is it possible? I have not been able to find any articles on this. All articles talk about connecting your android phone with arduino. Any idea? 回答1: Yes, it is possible. I'm using an HM-10 as an iBeacon detector (linksprite.com BLE 4.0 shield), and it is successfully detecting a RadBeacon running in iBeacon mode. Firmware on my HM-10 is version 540. Before it would detect the

Receive BLE signal from iBeacon to Bluno(arduino with BLE)

被刻印的时光 ゝ 提交于 2019-12-24 14:28:35
问题 I want to receive rssi signal and UUID from iBeacon to Bluno which the Arduino board has BLE. there are some questions for this. Are there any solutions to receive UUID and rssi from BLE to BLE? Is it possible to communicate two BLE device each other? I want some sites to reference for this problem. I also need to connect bluno with AR.Drone. Could you give me some advices for this? thank you for your help 回答1: The Bluno has the ability to act as an iBeacon (transmitter), but it doesn't have

Integrating iBeacon and coreBluetooth peripheral

落爺英雄遲暮 提交于 2019-12-24 14:12:28
问题 I'd like to know if its possible to advertise services through coreBluetooth with a device acting as a peripheral and also range for iBeacons, also accomplish both in the background? Essentially the purpose being to range for beacons and then if a beacon is within .Near or .Immediate range update the characteristics of a service advertised by the device. I can happily accomplish the ranging task, and although I've found information on device acting as a peripheral slim I think i can manage

Kontakt iBeacon returning nil

爷,独闯天下 提交于 2019-12-24 13:25:45
问题 I have an app which is showing properties of iBeacons which brand of Estimote and Kontakt . I have a problem with Kontakt iBeacons. The problem is ; some properties of Kontakt iBeacons are returning nil which properties are firmware , password and managerUUID . I had a same problem with Estimote but I solved with used connect method in Estimote delegate. How can I connect Kontakt iBeacon? There isn't enough documentation on the Internet. I couldn't find anything. If I connect it, I think, It

How to get a UIColor from Associative Array in Swift

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-24 11:37:18
问题 I have this array with some UIColors: let colors = [ 35302: UIColor(red: 66/255, green: 55/255, blue: 101/255, alpha: 1), 53350: UIColor(red: 158/255, green: 218/255, blue: 222/255, alpha: 1), 54747: UIColor(red: 158/255, green: 222/255, blue: 189/255, alpha: 1) ] Now, I'm trying to access some index in Array: func locationManager(manager: CLLocationManager!, didRangeBeacons beacons: [AnyObject]!, inRegion region: CLBeaconRegion!) { let knownBeacons = beacons.filter{ $0.proximity !=

Beacon / IOS CLLocationManager get current region

喜你入骨 提交于 2019-12-24 08:42:33
问题 I'm doing a program who is looking for beacon, I implemented CLLocationManager and my apps works except one point. I'm calling startMonitoringForRegion() in order to get the didEnterRegion/didExitRegion callback. Inside these function I'm doing startRangingBeaconsInRegion()/stopRangingBeaconsInRegion() in order to get precise information when the user is in the beacon area. My issue is quite simple, if the app is started when the user is already in the beacon range, didEnterRegion is not