estimote

How to get beacon receive new configuration

跟風遠走 提交于 2020-01-17 02:43:25
问题 I have the estimate beacon and I can change uuid from their iOS app but from what i read beacon use BLE tec. and it made to send only advertisement data so how does it receive the new configuration. thanks 回答1: It is true that iBeacons only advertise data, however vendors, such as Estimote, can support additional BLE functionality to allow functionality such as configuration. This is outside of the iBeacon specification and so each vendor will have their own services and chracteristics for

How to received ibeacons different regions ranging event in single didRangeBeacons:inRegion callback.

跟風遠走 提交于 2020-01-05 04:23:27
问题 I'm trying to range iOS ibeacons with multiple regions and it works well. But my problem is, if I range multiple regions region1 and region2 , I received two ranging event calls, didRangeBeacons:inRegion separately. (So, if I show the beacons list in tableview, it is flashing.) I want to received all regions with different identifier in ranges into single didRangeBeacons:inRegion callback (not one callback for one region. one callback for all regions in range). I saw it can be done with

iBeacon: Get advertisement package faster

别等时光非礼了梦想. 提交于 2019-12-31 05:33:08
问题 In my app I get the information of the beacons with CoreLocation and and the LocationManager. I've set the advertising interval of the beacons to 200ms. Is it possible to call the didRangeBeacons delegate method faster, so that i get the values of the advertising package according to the advertising interval of the beacon? 回答1: No, you cannot alter the frequency of the didRangeBeacons:inRegion callback, which is 1 Hz regardless of the beacon advertising frequency. You can get callbacks for

Multiple Estimote/Beacons in Xamarin.Android

北慕城南 提交于 2019-12-25 16:54:22
问题 I am very new to this beacons concept. For demo purpose i have configured one of my beacon/estimote using this sample application Android iBeacon App . Here the application can able to find single beacon at a time.I mean i have to pass the UUID of a single beacon to find whether it is inside the beacon range or not . Is there any possibility to find the multiple beacons using the same application.? I mean if the user enters the particular beacons range, the user should get the notification

Estimote iBeacons and Cordova - sending push notifications when app is killed iOS

a 夏天 提交于 2019-12-23 18:01:09
问题 I'm making an app with Apache Cordova with Evothings Javascript plugin and Estimote iBeacons. I've managed to get push notifications working with the Phonegap PushPlugin when the app is int eh background (not completely closed), however I want to take it a step further and receive a push notification when in range of the iBeacons when the app is completely killed. I've seen this is possible from various posts in the Estimote community and here on Stack overflow by using native Xcode

Estimote: detecting multiple beacons with ESTBeaconRegion and startRangingBeaconsInRegion?

我是研究僧i 提交于 2019-12-22 01:31:16
问题 Beginner Estimote question: What is the correct approach for adding multiple Estimote beacons, with their respective major/minors, so that all beacons can be detected separately using startRangingBeaconsInRegion? This code works fine for a single beacon: // Single Beacon Region ESTBeaconRegion* beaconRegion = [[ESTBeaconRegion alloc] initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID major:11111 minor:11111 identifier: @"EstimoteSampleRegion"]; // Start ranging beacons [self.beaconManager

In Android, How to get ibeacon details onExitedRegion when Region is created with proximity UUID only

孤街浪徒 提交于 2019-12-13 05:47:09
问题 I am working on android application with Estimote beacons. I am trying to work on a scenario where i will be using more than 100 beacons. For this, instead of creating separate Region for each beacon, I am creating single Region by assigning common Proximity UUID for all beacons and declaring Region by passing Proximity UUID only. I am keeping Major and Minor for uniquely identifying the beacons. Since my application has to be in background, I am using BeaconManager.MonitoringListener

Android beacon Monitoring while Ranging

三世轮回 提交于 2019-12-13 04:34:44
问题 In continuation with my previous question asked here, I am no longer following the approach of creating single Region for all beacons. Now i am creating Regions at run-time. I did ranging first. Below is code that i am trying to implement. public void onBeaconsDiscovered(Region region, final List<Beacon> beacons) { for(int i =0;i<beacons.size();i++) { Region r = new Region("RegionID", beacons.get(i).getProximityUUID(), beacons.get(i).getMajor(), beacons.get(i).getMinor()); try { beaconManager

Estimote SDK - Beacons raging in background

試著忘記壹切 提交于 2019-12-12 04:53:33
问题 First question is better is Estimote SDK or CoreLocation framework? I have app which is finding the beacons but now i must made an app which will find beacons when application is in background or even is terminated. 回答1: Setting up background detection is pretty automatic in iOS so long as you do it in your AppDelegate and receive callbacks in that class: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { _locationManager = [

Undefined symbol linker failure for Estimote SDK

久未见 提交于 2019-12-12 01:49:26
问题 I am trying to include the Estimote SDK 3.0 into my project, but i am getting the following linking error: Undefined symbols for architecture arm64: "_OBJC_CLASS_$_ESTBeaconRegionWrapper", referenced from: objc-class-ref in EstimoteSDK(ESTSecureBeaconManager.o) ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) I have added the framework to the 'Build phase' and checked that the framework search directory setting