ibeacon

Can a Windows PC act as a Bluetooth beacon?

懵懂的女人 提交于 2019-12-02 06:42:11
问题 Does a normal Windows (8.1) PC have the ability to act as a Bluetooth LE beacon? If so, is there any software to enable that? Update More current answers here: Beacons in Windows 10 回答1: Pre-Windows 10, Windows 8.1 in your case, doesn't support scanning or acting as iBeacon(s) nativly. However, you have some options: Use the WinBeacon managed library (yes, I'm the owner). Replace the driver of the Bluetooth 4.0 dongle with a libusb/WinUSB driver and you're all set Use a VM that runs linux

How to decode the BLE advertisement data

☆樱花仙子☆ 提交于 2019-12-02 06:30:21
After scanning for the BLE device, I call the below method: - (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI and receive the following advertisement data as such: { kCBAdvDataManufacturerData = <ffff0215 cf6d4a0f ..... adf2f491 ... ... > } How can I decode the data and access its information? It seems that you are expecting this advertising packet to be decodable as iBeacon, but it is not. The full bytes listed in comments are: ff ff 02 15 e8 4a 40 af 7b 8d e8 8d 4a 7b

Transmitting data using iBeacon or similar technology [closed]

只谈情不闲聊 提交于 2019-12-02 04:56:07
I am working on an app that allows devices to become aware of each other when in range. To do this i am using iBeacon. In the next stage of development i want to be able to send a yes or no string between any of the devices in range - so anyone who is connected to any other iBeacon can communicate these fixed messages As iBeacon cannot support sending of data - what is the best approach to facilitate this. The 2 approaches i have at the moment are via bluetooth or a web service. Please could someone provide some advise on to what is the best approach. Either approach can work, but a web

iOS app with iBeacon must restart device

十年热恋 提交于 2019-12-02 04:05:32
I built a simple ios app with IBeacon . I ran this app on an iPhone 4s whit ios7.1 while running an IBeacon base station.Everything is working right in background or foreground(exit region have 30 seconds delay in background).But over a period of time,about 3 hours,this app can not monitor any event though device setting were not change(blueTooth and locate is normal).This situation must restart the device. Please tell me what should i do aboult this situation? Thanks! davidgyoung I wonder if iOS Bluetooth scanning is slowing down when your app is in the background such that it appears that

why is my didEnterRegion delegate not called?

谁都会走 提交于 2019-12-02 03:26:41
I am developing an app that checks for Beacons but I am having issues that my delegate is never run when I enter a region, I know the beacon is ok and broadcasting because I can see it in other beacon apps like "locate beacon" I have configured the same UUID in the transmitter and the receiver app and I have double verified them so I am sure they are the same, below is my code that starts the locationManager and monitors for the region including the delegate. Debugs tells me the monitoring is started correctly as per below SelfCheckout[2977:845403] location Manager started to monitor regions:

Get properties of Kontakt iBeacon

泄露秘密 提交于 2019-12-02 03:05:35
I'm developing an iBeacon app and I want to get all properties of Kontakt iBeacons . There are 2 or 3 topic about that in stackoverflow but nobody couldn't answer this. My app is a global iBeacon project. I can see all properties of Estimote iBeacons also can change major , minor values. I did this with using connect method in Estimote SDK however I couldn't connect Kontakt iBeacons . I just accessed major , minor and rssi values with Kontakt SDK . I have an API key to connect these iBeacons but I couldn't connect. I just want to learn way of accessing these values. Can anybody tell the way of

Responsiveness of Background Beacon Monitoring (Android Beacon Library / Kontakt SDK / Estimote SDK)

情到浓时终转凉″ 提交于 2019-12-02 01:49:09
问题 Background: I am developing an Android app that monitors for specific beacons in the background, and upon entry detection, will perform custom coding. I am currently exploring this using Android Beacon Library, and is able to detect the beacon responsively most of the time when the screen is On (within seconds). However, when the screen is off, the responsiveness drops and may take minutes to half and hour to detect. I am wondering if there are ways to improve responsiveness as my usage

Responsiveness of Background Beacon Monitoring (Android Beacon Library / Kontakt SDK / Estimote SDK)

∥☆過路亽.° 提交于 2019-12-02 00:10:02
Background: I am developing an Android app that monitors for specific beacons in the background, and upon entry detection, will perform custom coding. I am currently exploring this using Android Beacon Library, and is able to detect the beacon responsively most of the time when the screen is On (within seconds). However, when the screen is off, the responsiveness drops and may take minutes to half and hour to detect. I am wondering if there are ways to improve responsiveness as my usage scenario requires a responsive background detection without having to turn on the phone (looking at a

iBeacon ranging in the background?

ぃ、小莉子 提交于 2019-12-01 23:32:49
问题 I have started to test out iBeacons using estimotes as beacons. It's all running pretty good, but i'm struggling with getting the app to run properly in the background. self.region = [[CLBeaconRegion alloc] initWithProximityUUID:self.uuid identifier: self.deviceID]; self.region.notifyEntryStateOnDisplay = YES; [self.locationManager startMonitoringForRegion:self.region]; So this is the basic setup and for my test app i want to show a local notification when my phone is in immediate proximity

iBeacon ranging in the background?

青春壹個敷衍的年華 提交于 2019-12-01 22:13:05
I have started to test out iBeacons using estimotes as beacons. It's all running pretty good, but i'm struggling with getting the app to run properly in the background. self.region = [[CLBeaconRegion alloc] initWithProximityUUID:self.uuid identifier: self.deviceID]; self.region.notifyEntryStateOnDisplay = YES; [self.locationManager startMonitoringForRegion:self.region]; So this is the basic setup and for my test app i want to show a local notification when my phone is in immediate proximity of the beacon. My problem is that it won't work unless i include the line below. [self.locationManager