var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var plugin_1 = require('./plugin'); var Observable_1 = require('rxjs/Observable'); /** * This plugin enables communication between a phone and Bluetooth Low Energy (BLE) peripherals. * * The plugin provides a simple JavaScript API for iOS and Android. * * - Scan for peripherals * - Connect to a peripheral * - Read the value of a characteristic * - Write new value to a characteristic * - Get notified when characteristic's value changes * * Advertising information is returned when scanning for peripherals. Service, characteristic, and property info is returned when connecting to a peripheral. All access is via service and characteristic UUIDs. The plugin manages handles internally. * * Simultaneous connections to multiple peripherals are supported. * * ## Peripheral Data * * Peripheral Data is passed to the success callback when scanning and connecting. Limited data is passed when scanning. * ``` * { * "name": "Battery Demo", * "id": "20:FF:D0:FF:D1:C0", * "advertising": [2,1,6,3,3,15,24,8,9,66,97,116,116,101,114,121], * "rssi": -55 * } * ``` * After connecting, the peripheral object also includes service, characteristic and descriptor information. * ``` * { * "name": "Battery Demo", * "id": "20:FF:D0:FF:D1:C0", * "advertising": [2,1,6,3,3,15,24,8,9,66,97,116,116,101,114,121], * "rssi": -55, * "services": [ * "1800", * "1801", * "180f" * ], * "characteristics": [ * { * "service": "1800", * "characteristic": "2a00", * "properties": [ * "Read" * ] * }, * { * "service": "1800", * "characteristic": "2a01", * "properties": [ * "Read" * ] * }, * { * "service": "1801", * "characteristic": "2a05", * "properties": [ * "Read" * ] * }, * { * "service": "180f", * "characteristic": "2a19", * "properties": [ * "Read" * ], * "descriptors": [ * { * "uuid": "2901" * }, * { * "uuid": "2904" * } * ] * } * ] * } * ``` * * ## Advertising Data * Bluetooth advertising data is returned in when scanning for devices. The format format varies depending on your platform. On Android advertising data will be the raw advertising bytes. iOS does not allow access to raw advertising data, so a dictionary of data is returned. * * The advertising information for both Android and iOS appears to be a combination of advertising data and scan response data. * * ### Android * ``` * { * "name": "demo", * "id": "00:1A:7D:DA:71:13", * "advertising": ArrayBuffer, * "rssi": -37 * } * ``` * * Convert the advertising info to a Uint8Array for processing. `var adData = new Uint8Array(peripheral.advertising)` * * ### iOS * * Note that iOS uses the string value of the constants for the [Advertisement Data Retrieval Keys](https://developer.apple.com/library/ios/documentation/CoreBluetooth/Reference/CBCentralManagerDelegate_Protocol/index.html#//apple_ref/doc/constant_group/Advertisement_Data_Retrieval_Keys). This will likely change in the future. * ``` * { * "name": "demo", * "id": "D8479A4F-7517-BCD3-91B5-3302B2F81802", * "advertising": { * "kCBAdvDataChannel": 37, * "kCBAdvDataServiceData": { * "FED8": { * "byteLength": 7 // data not shown * } * }, * "kCBAdvDataLocalName": "demo", * "kCBAdvDataServiceUUIDs": ["FED8"], * "kCBAdvDataManufacturerData": { * "byteLength": 7 // data not shown * }, * "kCBAdvDataTxPowerLevel": 32, * "kCBAdvDataIsConnectable": true * }, * "rssi": -53 * } * ``` * * ## Typed Arrays * * This plugin uses typed Arrays or ArrayBuffers for sending and receiving data. * * This means that you need convert your data to ArrayBuffers before sending and from ArrayBuffers when receiving. * ``` * // ASCII only * function stringToBytes(string) { * var array = new Uint8Array(string.length); * for (var i = 0, l = string.length; i < l; i++) { * array[i] = string.charCodeAt(i); * } * return array.buffer; * } * * // ASCII only * function bytesToString(buffer) { * return String.fromCharCode.apply(null, new Uint8Array(buffer)); * } * ``` * You can read more about typed arrays in these articles on [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays) and [HTML5 Rocks](http://www.html5rocks.com/en/tutorials/webgl/typed_arrays/). * * ## UUIDs * * UUIDs are always strings and not numbers. Some 16-bit UUIDs, such as '2220' look like integers, but they're not. (The integer 2220 is 0x8AC in hex.) This isn't a problem with 128 bit UUIDs since they look like strings 82b9e6e1-593a-456f-be9b-9215160ebcac. All 16-bit UUIDs should also be passed to methods as strings. * */ var BLE = (function () { function BLE() { } /** * Scan and discover BLE peripherals for the specified amount of time. * * @usage * ``` * BLE.scan([], 5).subscribe(device => { * console.log(JSON.stringify(device)); * }); * ``` * @param {string[]} services List of service UUIDs to discover, or `[]` to find all devices * @param {number} seconds Number of seconds to run discovery * @return Returns an Observable that notifies of each peripheral that is discovered during the specified time. */ BLE.scan = function (services, seconds) { // This Observable is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Observable, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Observable_1.Observable(function (observer) { }); }; /** * Scan and discover BLE peripherals until `stopScan` is called. * * @usage * ``` * BLE.startScan([]).subscribe(device => { * console.log(JSON.stringify(device)); * }); * * setTimeout(() => { * BLE.stopScan(); * }, 5000); * ``` * @param {string[]} services List of service UUIDs to discover, or `[]` to find all devices * @return Returns an Observable that notifies of each peripheral discovered. */ BLE.startScan = function (services) { // This Observable is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Observable, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Observable_1.Observable(function (observer) { }); }; ; /** * Stop a scan started by `startScan`. * * @usage * ``` * BLE.startScan([]).subscribe(device => { * console.log(JSON.stringify(device)); * }); * setTimeout(() => { * BLE.stopScan().then(() => { console.log('scan stopped'); }); * }, 5000); * ``` * @return returns a Promise. */ BLE.stopScan = function () { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; ; /** * Connect to a peripheral. * @usage * ``` * BLE.connect('12:34:56:78:9A:BC').subscribe(peripheralData => { * console.log(peripheralData); * }, * peripheralData => { * console.log('disconnected'); * }); * ``` * @param deviceId {string} UUID or MAC address of the peripheral * @return Returns an Observable that notifies of connect/disconnect. */ BLE.connect = function (deviceId) { // This Observable is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Observable, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Observable_1.Observable(function (observer) { }); }; ; /** * Disconnect from a peripheral. * @usage * ``` * BLE.disconnect('12:34:56:78:9A:BC').then(() => { * console.log('Disconnected'); * }); * ``` * @param deviceId {string} UUID or MAC address of the peripheral * @return Returns a Promise */ BLE.disconnect = function (deviceId) { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; ; /** * Read the value of a characteristic. * * @param {string} device_id UUID or MAC address of the peripheral * @param {string} service_uuid UUID of the BLE service * @param {string} characteristic_uuid UUID of the BLE characteristic * @return Returns a Promise */ BLE.read = function (deviceId, serviceUUID, characteristicUUID) { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; ; /** * Write the value of a characteristic. * @usage * ``` * // send 1 byte to switch a light on * var data = new Uint8Array(1); * data[0] = 1; * BLE.write(device_id, "FF10", "FF11", data.buffer); * * // send a 3 byte value with RGB color * var data = new Uint8Array(3); * data[0] = 0xFF; // red * data[0] = 0x00; // green * data[0] = 0xFF; // blue * BLE.write(device_id, "ccc0", "ccc1", data.buffer); * * // send a 32 bit integer * var data = new Uint32Array(1); * data[0] = counterInput.value; * BLE.write(device_id, SERVICE, CHARACTERISTIC, data.buffer); * * ``` * @param {string} device_id UUID or MAC address of the peripheral * @param {string} service_uuid UUID of the BLE service * @param {string} characteristic_uuid UUID of the BLE characteristic * @param {ArrayBuffer} value Data to write to the characteristic, as an ArrayBuffer. * @return Returns a Promise */ BLE.write = function (deviceId, serviceUUID, characteristicUUID, value) { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; ; /** * Write the value of a characteristic without waiting for confirmation from the peripheral. * * @param {string} device_id UUID or MAC address of the peripheral * @param {string} service_uuid UUID of the BLE service * @param {string} characteristic_uuid UUID of the BLE characteristic * @param {ArrayBuffer} value Data to write to the characteristic, as an ArrayBuffer. * @return Returns a Promise */ BLE.writeWithoutResponse = function (deviceId, serviceUUID, characteristicUUID, value) { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; ; /** * Register to be notified when the value of a characteristic changes. * * @usage * ``` * BLE.startNotification(device_id, "FF10", "FF11").subscribe(buffer => { * console.log(String.fromCharCode.apply(null, new Uint8Array(buffer)); * }); * ``` * * @param {string} device_id UUID or MAC address of the peripheral * @param {string} service_uuid UUID of the BLE service * @param {string} characteristic_uuid UUID of the BLE characteristic * @return Returns an Observable that notifies of characteristic changes. */ BLE.startNotification = function (deviceId, serviceUUID, characteristicUUID) { // This Observable is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Observable, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Observable_1.Observable(function (observer) { }); }; ; /** * Stop being notified when the value of a characteristic changes. * * @param {string} device_id UUID or MAC address of the peripheral * @param {string} service_uuid UUID of the BLE service * @param {string} characteristic_uuid UUID of the BLE characteristic * @return Returns a Promise. */ BLE.stopNotification = function (deviceId, serviceUUID, characteristicUUID) { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; ; /** * Report the connection status. * * @usage * ``` * BLE.isConnected('FFCA0B09-CB1D-4DC0-A1EF-31AFD3EDFB53').then( * () => { console.log('connected'); }, * () => { console.log('not connected'); } * ); * ``` * @param {string} device_id UUID or MAC address of the peripheral * @return Returns a Promise. */ BLE.isConnected = function (deviceId) { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; /** * Report if bluetooth is enabled. * * @usage * ``` * BLE.isEnabled().then( * () => { console.log('enabled'); }, * () => { console.log('not enabled'); } * ); * ``` * @return Returns a Promise. */ BLE.isEnabled = function () { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; /** * Open System Bluetooth settings (Android only). * * @return Returns a Promise. */ BLE.showBluetoothSettings = function () { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; /** * Enable Bluetooth on the device (Android only). * * @return Returns a Promise. */ BLE.enable = function () { // This Promise is replaced by one from the @Cordova decorator that wraps // the plugin's callbacks. We provide a dummy one here so TypeScript // knows that the correct return type is Promise, because there's no way // for it to know the return type from a decorator. // See https://github.com/Microsoft/TypeScript/issues/4881 return new Promise(function (res, rej) { }); }; __decorate([ plugin_1.Cordova({ observable: true }) ], BLE, "scan", null); __decorate([ plugin_1.Cordova({ observable: true, clearFunction: 'stopScan', clearWithArgs: true }) ], BLE, "startScan", null); __decorate([ plugin_1.Cordova() ], BLE, "stopScan", null); __decorate([ plugin_1.Cordova({ observable: true, clearFunction: 'disconnect', clearWithArgs: true }) ], BLE, "connect", null); __decorate([ plugin_1.Cordova() ], BLE, "disconnect", null); __decorate([ plugin_1.Cordova() ], BLE, "read", null); __decorate([ plugin_1.Cordova() ], BLE, "write", null); __decorate([ plugin_1.Cordova() ], BLE, "writeWithoutResponse", null); __decorate([ plugin_1.Cordova({ observable: true, clearFunction: 'stopNotification', clearWithArgs: true }) ], BLE, "startNotification", null); __decorate([ plugin_1.Cordova() ], BLE, "stopNotification", null); __decorate([ plugin_1.Cordova() ], BLE, "isConnected", null); __decorate([ plugin_1.Cordova() ], BLE, "isEnabled", null); __decorate([ plugin_1.Cordova() ], BLE, "showBluetoothSettings", null); __decorate([ plugin_1.Cordova() ], BLE, "enable", null); BLE = __decorate([ plugin_1.Plugin({ name: 'BLE', plugin: 'cordova-plugin-ble-central', pluginRef: 'ble', pluginRepo: 'https://github.com/don/cordova-plugin-ble-central' }) ], BLE); return BLE; })(); exports.BLE = BLE; //# sourceMappingURL=ble.js.map