All Projects → frostney → React Native Ibeacon

frostney / React Native Ibeacon

Licence: mit
📡 iBeacon support for React Native

Projects that are alternatives of or similar to React Native Ibeacon

ioBroker.ble
Monitor Bluetooth Low Energy beacons
Stars: ✭ 39 (-89.14%)
Mutual labels:  beacon
rtlsdr-wsprd
WSPR daemon for RTL receivers
Stars: ✭ 93 (-74.09%)
Mutual labels:  beacon
BLE-Beacon-Tracking-System
Indoor Beacon Tracking System based on BLE
Stars: ✭ 18 (-94.99%)
Mutual labels:  beacon
balena-locating
Never lose something important to you again by using Bluetooth Low Energy (BLE) beacons and Raspberry Pi sensors to track your stuff.
Stars: ✭ 47 (-86.91%)
Mutual labels:  beacon
GuideChimp
Create interactive guided product tours in minutes with the most non-technical friendly, lightweight and extendable library.
Stars: ✭ 138 (-61.56%)
Mutual labels:  beacon
flutter beacon
An hybrid iBeacon scanner and transmitter SDK for Flutter Android and iOS.
Stars: ✭ 92 (-74.37%)
Mutual labels:  beacon
Esp32marauder
A suite of WiFi/Bluetooth offensive and defensive tools for the ESP32
Stars: ✭ 233 (-35.1%)
Mutual labels:  beacon
Ble Indoor Positioning
Multilateration using bluetooth beacons
Stars: ✭ 274 (-23.68%)
Mutual labels:  beacon
ios
CoThings's iOS application. CoThings is a realtime counter for shared things.
Stars: ✭ 13 (-96.38%)
Mutual labels:  beacon
react-native-ibeacon-simulator
Simulate device act as an iBeacon, or transmit as an iBeacon signal from your phone
Stars: ✭ 48 (-86.63%)
Mutual labels:  beacon
eddystone-url-calculator
This a javascript single page app that generates the Linux commands for broadcasting a URL as a Eddystone URL beacon.
Stars: ✭ 54 (-84.96%)
Mutual labels:  beacon
PiBeacon
Low-cost iBeacon using Raspberry Pi
Stars: ✭ 41 (-88.58%)
Mutual labels:  beacon
wayfindr-demo-ios
The wayfindr demo app for iOS
Stars: ✭ 27 (-92.48%)
Mutual labels:  beacon
DNSWho
transmit cs beacon (shellcode) over self-made dns to avoid anti-kill and AV
Stars: ✭ 47 (-86.91%)
Mutual labels:  beacon
CobaltStrike Script Wechat Push
CobatStrike-Script, Beacon上线,微信实时推送!
Stars: ✭ 41 (-88.58%)
Mutual labels:  beacon
Android Bluetoothkit
Android BLE蓝牙通信库
Stars: ✭ 2,955 (+723.12%)
Mutual labels:  beacon
iBeacon-Android
iBeacon scanner and simulator - Android application example
Stars: ✭ 28 (-92.2%)
Mutual labels:  beacon
Black Hat Rust
Applied offensive security with Rust - Early access - https://academy.kerkour.com/black-hat-rust?coupon=GITHUB
Stars: ✭ 331 (-7.8%)
Mutual labels:  beacon
marvelmind-indoor-gps-tutorial
A tutorial for setting up and interfacing with Marvelmind Indoor 'GPS' ultrasonic beacons!
Stars: ✭ 31 (-91.36%)
Mutual labels:  beacon
specification
GA4GH Beacon specification.
Stars: ✭ 31 (-91.36%)
Mutual labels:  beacon

react-native-ibeacon

iBeacon support for React Native. The API is very similar to the CoreLocation Objective-C one with the only major difference that regions are plain JavaScript objects. Beacons don't work in the iOS simulator.

Looking for an Android version? Try out

Support

This module supports all iBeacon-compatible devices. Personally, I had the best experience with Estimote beacons, but all devices that support the iBeacon specification should work.

Installation

Install using npm with npm install --save react-native-ibeacon. React Native >=0.4.0 is needed.

You then need to add the Objective C part to your XCode project. Drag RNBeacon.xcodeproj from the node_modules/react-native-ibeacon folder into your XCode project. Click on the your project in XCode, goto Build Phases then Link Binary With Libraries and add libRNBeacon.a and CoreLocation.framework.

NOTE: Make sure you don't have the RNBeacon project open separately in XCode otherwise it won't work.

Usage

var React = require('react-native');
var {DeviceEventEmitter} = React;

var Beacons = require('react-native-ibeacon');

// Define a region which can be identifier + uuid,
// identifier + uuid + major or identifier + uuid + major + minor
// (minor and major properties are numbers)
var region = {
	identifier: 'Estimotes',
	uuid: 'B9407F30-F5F8-466E-AFF9-25556B57FE6D'
};

// Request for authorization while the app is open
Beacons.requestWhenInUseAuthorization();

Beacons.startMonitoringForRegion(region);
Beacons.startRangingBeaconsInRegion(region);

Beacons.startUpdatingLocation();

// Listen for beacon changes
var subscription = DeviceEventEmitter.addListener(
  'beaconsDidRange',
  (data) => {
  	// data.region - The current region
  	// data.region.identifier
  	// data.region.uuid

  	// data.beacons - Array of all beacons inside a region
  	//	in the following structure:
  	//	  .uuid
  	//	  .major - The major version of a beacon
  	//	  .minor - The minor version of a beacon
  	//	  .rssi - Signal strength: RSSI value (between -100 and 0)
  	// 	  .proximity - Proximity value, can either be "unknown", "far", "near" or "immediate"
  	//	  .accuracy - The accuracy of a beacon
  }
);

It is recommended to set NSLocationWhenInUseUsageDescription in your Info.plist file.

Background mode

For background mode to work, a few things need to be configured: In the Xcode project, go to Capabilities, switch on "Background Modes" and check both "Location updates" and "Uses Bluetooth LE accessories".

bgmode

Then, instead of using requestWhenInUseAuthorization the method requestAlwaysAuthorization.

Beacons.requestAlwaysAuthorization();

Here, it's also recommended to set NSLocationAlwaysUsageDescription in your Info.plist file.

Finally when killed or sleeping and a beacon is found your whole app wont be loaded, just the didFinishLaunchingWithOptions:(NSDictionary *)launchOptions delegate so you need to act on it there like:

  // a region we were scanning for has appeared, ask to open us
  if([launchOptions objectForKey:@"UIApplicationLaunchOptionsLocationKey"])
  {
    //pop a notification to ask user to open, or maybe reload your scanner with delegate so that code fires
  }

Methods

To access the methods, you need import the react-native-ibeacon module. This is done through var Beacons = require('react-native-ibeacon').

Beacons.requestWhenInUseAuthorization

Beacons.requestWhenInUseAuthorization();

This method should be called before anything else is called. It handles to request the use of beacons while the application is open. If the application is in the background, you will not get a signal from beacons. Either this method or Beacons.requestAlwaysAuthorization needs to be called to receive data from beacons.

Beacons.requestAlwaysAuthorization

Beacons.requestAlwaysAuthorization();

This method should be called before anything else is called. It handles to request the use of beacons while the application is open or in the background. Either this method or Beacons.requestWhenInUseAuthorization needs to be called to receive data from beacons.

Beacons.getAuthorizationStatus

Beacons.getAuthorizationStatus(function(authorization) {
  // authorization is a string which is either "authorizedAlways",
  // "authorizedWhenInUse", "denied", "notDetermined" or "restricted"
});

This methods gets the current authorization status. While this methods provides a callback, it is not executed asynchronously. The values authorizedAlways and authorizedWhenInUse correspond to the methods requestWhenInUseAuthorization and requestAlwaysAuthorization respectively.

Beacons.startMonitoringForRegion

var region = {
  identifier: 'Estimotes',
  uuid: 'B9407F30-F5F8-466E-AFF9-25556B57FE6D'
};

Beacons.startMonitoringForRegion(region);

When starting monitoring for beacons, we need to define a region as the parameter. The region is an object, which needs to have at least two values: identifier and uuid. Additionally, it can also have a major, minor version or both. Make sure to not re-use the same identifier. In that case, we won't get the data for the beacons. The corresponding events are regionDidEnter and regionDidExit.

Beacons.startRangingBeaconsInRegion

var region = {
  identifier: 'Estimotes',
  uuid: 'B9407F30-F5F8-466E-AFF9-25556B57FE6D'
};

Beacons.startRangingBeaconsInRegion(region);

When ranging for beacons, we need to define a region as the parameter. The region is an object, which needs to have at least two values: identifier and uuid. Additionally, it can also have a major, minor version or both. Make sure to not re-use the same identifier. In that case, we won't get the data for the beacons. The corresponding events are beaconsDidRange. The event will fire in every interval the beacon sends a signal, which is one second in most cases. If we are monitoring and ranging for beacons, it is best to first call startMonitoringForRegion and then call startRangingBeaconsInRegion.

Beacons.startUpdatingLocation

Beacons.startUpdatingLocation();

This call is needed for monitoring beacons and gets the initial position of the device.

Beacons.stopUpdatingLocation

Beacons.stopUpdatingLocation();

This method should be called when you don't need to receive location-based information and want to save battery power.

Beacons.shouldDropEmptyRanges

Beacons.shouldDropEmptyRanges(true);

Call this method to stop sending the beaconsDidRange event when the beacon list is empty. This can be useful when listening to multiple beacon regions and can reduce cpu usage by 1-1.5%.

Events

To listen to events we need to call DeviceEventEmitter.addListener (var {DeviceEventEmitter} = require('react-native')) where the first parameter is the event we want to listen to and the second is a callback function that will be called once the event is triggered.

beaconsDidRange

This event will be called for every region in every beacon interval. If you have three regions you get three events every second (which is the default interval beacons send their signal). When we take a closer look at the parameter of the callback, we get information on both the region and the beacons.

{
  region: {
    identifier: String,
    uuid: String
  },
  beacons: Array<Beacon>
}

A Beacon is an object that follows this structure:

{
  uuid: String, // The uuid for the beacon
  major: Number, // A beacon's major value
  minor: Number, // A beacon's minor value
  rssi: Number, // The signal strength, where -100 is the maximum value and 0 the minium.
                // If the value is 0, this corresponds to not being able to get a precise value
  proximity: String, // Fuzzy value representation of the signal strength.
  		     // Can either be "far", "near", "immediate" or "unknown"
  accuracy: Number // One sigma horizontal accuracy in meters, see: http://stackoverflow.com/questions/20416218/understanding-ibeacon-distancing/30174335#30174335
}

By default, the array is sorted by the rssi value of the beacons.

regionDidEnter

If the device entered a region, regionDidEnter is being called.

Inside the callback the paramter we can use returns an object with a property region that contains the region identifier value as a string. Additionally, we get the UUID of the region through its uuid property.

{
  region: String,
  uuid: String
}

regionDidExit

In the same regionDidEnter is called if the device entered a region, regionDidExit will be called if the device exited a region and we can't get any signal from any of the beacons inside the region.

As for the payload, we get a property called region that represents the region identifier and is a string as well as the uuid.

{
  region: String,
  uuid: String
}

###authorizationDidChange When the user permissions change, for example the user allows to always use beacons, this event will be called. The same applies when the user revokes the permission to use beacons.

// The payload is a string which can either be:
// "authorizedAlways", "authorizedWhenInUse", "denied", "notDetermined" or "restricted"

Troubleshooting

In the beaconsDidRange event, the beacons property is just an empty array.

There are several things that trigger that behavior, so it's best to follow these steps:

  1. Don't use the same identifier for multiple regions
  2. Check if your beacon batteries aren't empty
  3. If monitoring and ranging for beacons, make sure to first monitor and then range

Style guide

This repository uses the Geniux code style guide (based on the AirBnB style guide), for more information see: https://github.com/geniuxconsulting/javascript

For commit messages, we are following the commit guide from https://github.com/geniuxconsulting/guideline

License

MIT, for more information see LICENSE

Changelog

See CHANGELOG.md

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].