Bluetooth LE PhoneGap Plugin
====================
- PhoneGap 3.0.0 or higher
- Android 4.3 or higher
- iOS 5 or higher
- Device hardware must be certified for Bluetooth LE. i.e. Nexus 7 (2012) doesn't support Bluetooth LE even after upgrading to 4.3 (or higher) without a modification
- List of devices: http://www.bluetooth.com/Pages/Bluetooth-Smart-Devices-List.aspx
- Warning: Phonegap, Android, iOS and Objective C are all very new to me.
- iOS doesn't prompt user to enable Bluetooth if disabled like Android does. It's probably possible, but I just forgot until right before comitting the latest changes.
- Tested with a heart rate monitor, so some scenarios especially those involving writing characteristics may not work as I was unable to test it. If you run into an issue, log it and I'll try to fix it. If you let me borrow a device, I can probably fix it even quicker. :)
- Limited to connecting to a single device at a time (Pretty sure it's feasible and not too difficult to implement, but a low priorty for my original project)
- All discovery, read and write operations must be done sequentially. i.e read characteristic x1234, wait for read result, read characteristic x5678, wait for read result, etc. More info on http://stackoverflow.com/questions/18011816/has-native-android-ble-gatt-implementation-synchronous-nature (Eventually queuing could be added, but a low priority for my original project)
- No support for Windows Phone (Initial research shows it's not fully support yet, but I plan to add it once it is supported. Perhaps Windows Phone 8.1?)
- Disconnecting and quickly reconnecting causes issues on Android. The device becomes connected again, but then quickly disconnects. Adding a timeout before reconnecting fixed the issue for me. I'm not sure if this is a problem with the plugin or Android's Bluetooth LE implementation.
- For subscribing, indication hasn't been tested since my heart rate monitor doesn't support it.
- Characteristic properties are not returned during discovery. If anyone requests this, I should be able to add it fairly easily.
- Characteristic and descriptor permissions are not returned during discovery. If anyone requests this, I should be able to add it fairly easily, at least for Android. iOS doesn't appear to use permissions.
Discovery works differently between Android and iOS. In Android, a single function is called to initiate discovery of all services, characteristics and descriptors on the device. In iOS, a single function is called to discover the device's services. Then another function to discover the characteristics of a particular service. And then another function to discover the descriptors of a particular characteristic. The Device plugin (http://docs.phonegap.com/en/edge/cordova_device_device.md.html#Device) should be used to properly determine the device and make the proper calls if necessary. Additionally, if a device is disconnected, it must be rediscovered when running on iOS.
Add the plugin to your app by running the command below:
phonegap local plugin add https://github.com/randdusing/BluetoothLE
Read the documentation below.
- bluetoothle.initialize
- bluetoothle.startScan
- bluetoothle.stopScan
- bluetoothle.connect
- bluetoothle.reconnect
- bluetoothle.disconnect
- bluetoothle.close
- bluetoothle.discover (Android only)
- bluetoothle.services (iOS only)
- bluetoothle.characteristics (iOS only)
- bluetoothle.descriptors (iOS only)
- bluetoothle.read
- bluetoothle.subscribe
- bluetoothle.unsubscribe
- bluetoothle.write
- bluetoothle.readDescriptor
- bluetoothle.writeDescriptor
- bluetoothle.rssi
- bluetoothle.isInitialized
- bluetoothle.isScanning
- bluetoothle.isConnected
- bluetoothle.isDiscovered (Android only)
- bluetoothle.getBytes
- bluetoothle.getString
Whenever the error callback is executed, the return object will contain the error type and a message.
- initialize - Bluetooth is not initialized (Try initializing Bluetooth)
- startScan - Scan couldn't be started (Is the scan already running?)
- stopScan - Scan couldn't be stopped (Is the scan already stopped?)
- connect - Connection attempt failed (Is the device address correct?)
- reconnect - Reconnection attempt failed (Was the device ever connected?)
- discover - Failed to discover device (Is the device already discovered or discovering? Is the device Android?)
- service - Service doesn't exist (Was it discovered? Correct assigned number? Is the device iOS?)
- characteristic - Characteristic doesn't exist (Was it discovered? Correct assigned number? Is the device iOS?)
- descriptor - Descriptor doesn't exist (Was it discovered? Correct assigned number? Is the device iOS?)
- read - Failed to read (Not sure what would cause this)
- subscription - Failed to subscribe or unsubscribe (Does the characteristic have the Client Configuration descriptor?)
- write - Failed to write (Was a write value provided?)
- readDescriptor - Failed to read descriptor (Not sure what would cause this)
- writeDescriptor - Failed to write descriptor (Was a write value provided?)
- rssiError - Failed to read RSSI (Not sure what would cause this)
- arguments - Invalid arguments (Check arguments)
- neverConnected - Device never connected (Call connect, not reconnect)
- isNotDisconnected - Device is not disconnected (Don't call connect, reconnect or close while connected)
- isNotConnected - Device isn't connected (Don't call discover or any read/write operations)
- isDisconnected - Device is disconnected (Don't call disconnect)
For example:
{"error":"startScan", "message":"Scanning already started"};
- initialize
- scan (if device address is unknown)
- connect
- discover (Android) OR services/characteristics/descriptors (iOS)
- read/subscribe/write characteristics/descriptors
- disconnect
- close
Initialize Bluetooth on the device. Must be called before anything else. If Bluetooth is disabled, the user will be prompted to enable it on Android devices. Note: Although Bluetooth initialization could initially be successful, there's no guarantee whether it will stay enabled. Each call checks whether Bluetooth is disabled. If it becomes disabled, the user must reinitialize Bluetooth, connect to the device, start a read/write operation, etc.
bluetoothle.initialize(initializeSuccessCallback, initializeErrorCallback);
{"status":"initialized"};
Scan for Bluetooth LE devices. Since scanning is expensive, stop as soon as possible. The Phonegap app should use a timer to limit the scan interval.
bluetoothle.startScan(startScanSuccessCallback, startScanErrorCallback, params);
- serviceAssignedNumbers = An array of service IDs to filter the scan or empty array / null
{"serviceAssignedNumbers":["180D", "180F"]};
- scanStarted = Scan has started
- scanResult = Scan has found a device
- name = the device's display name
- address = the device's address / identifier for connecting to the object
- rssi = signal strength
- advertisement = advertisement data in bytes, use bluetoothle.getBytes() - Currently Android only, but will release an untested iOS version if requested. Will be without an iOS device for a week or two.
{"status":"scanStarted"};
{"status":"scanResult","address":"01:23:45:67:89:AB","name":"Polar H7","rssi":-5}; /* Android */
{"status":"scanResult","address":"123234","name":"Polar H7","rssi":-5}; /* iOS */
Stop scan for Bluetooth LE devices. Since scanning is expensive, stop as soon as possible. The Phonegap app should use a timer to limit the scanning time.
bluetoothle.stopScan(stopScanSuccessCallback, stopScanErrorCallback);
- scanStop = Scan has stopped
{"status":"scanStopped"};
Connect to a Bluetooth LE device. The Phonegap app should use a timer to limit the connecting time in case connecting is never successful. Once a device is connected, it may disconnect without user intervention. The original connection callback will be called again and receive an object with status => disconnected. To reconnect to the device, use the reconnect method. Before connecting to a new device, the current device must be disconnected and closed. If a timeout occurs, the connection attempt should be canceled using disconnect().
bluetoothle.connect(connectSuccessCallback, connectErrorCallback, params);
- address = The address/identifier provided by the scan's return object
{"address":"01:23:45:67:89:AB"}; /* Android */
{"address":"123234"}; /* iOS */
{"status":"connecting","address":"01:23:45:67:89:AB","name":"Polar H7"};
{"status":"connected","address":"01:23:45:67:89:AB","name":"Polar H7"};
{"status":"disconnecting","address":"01:23:45:67:89:AB","name":"Polar H7"};
{"status":"disconnected","address":"01:23:45:67:89:AB","name":"Polar H7"};
Reconnect to a previously connected Bluetooth device. The Phonegap app should use a timer to limit the connecting time. If a timeout occurs, the reconnection attempt should be canceled using disconnect().
bluetoothle.reconnect(reconnectSuccessCallback, reconnectErrorCallback);
See return object for connect
Disconnect from a Bluetooth LE device.
bluetoothle.disconnect(disconnectSuccessCallback, disconnectErrorCallback);
See return object for connect, specifically disconnecting and disconnected.
Close/dispose a Bluetooth LE device. Must disconnect before closing.
bluetoothle.close(closeSuccessCallback, closeErrorCallback);
{"status":"closed","address":"01:23:45:67:89:AB","name":"Polar H7"};
Discover all the devices services, characteristics and descriptors. Doesn't need to be called again after disconnecting and then reconnecting. Android support only. Calling on iOS will return void.
bluetoothle.discover(discoverSuccessCallback, discoverErrorCallback);
Device Object:
- address = Device address
- name = Device name
- services = Array of service objects below
Service Object:
- serviceAssignedNumber = Service's assignedNumber
- characteristics = Array of characteristic objects below
Characteristic Object:
- characteristicAssignedNumber = Characteristic's assignedNumber
- descriptors = Array of descriptor objects below
Descriptor Object:
- descriptorAssignedNumber = Descriptor's assignedNumber
{
"address":"xx:xx:xx:xx:xx:xx",
"name":"Polar H7",
"services":[
{
"serviceAssignedNumber":"180d",
"characteristics":[
{
"characteristicAssignedNumber":"2a37",
"descriptors":[
{
"descriptorAssignedNumber":"2902"
}
]
},
{
"characteristicAssignedNumber":"2a38",
"descriptors":[]
}
]
}
]
}
Discover the device's services. Not providing an array of services will return all services and take longer to discover. iOS support only. Calling on Android will return void.
bluetoothle.services(servicesSuccessCallback, servicesErrorCallback, params);
- serviceAssignedNumbers = An array of service IDs to filter the scan or empty array / null
{"serviceAssignedNumbers":["180D","180F"]};
{"status":"discoverServices","serviceAssignedNumbers":["180D","180F"]};
Discover the service's characteristics. Not providing an array of characteristics will return all characteristics and take longer to discover. iOS support only. Calling on Android will return void.
bluetoothle.characteristics(characteristicsSuccessCallback, characteristicsErrorCallback, params);
{"serviceAssignedNumber":"180D","characteristicAssignedNumbers":["2A37","2A38"]};
{"status":"discoverCharacteristics","serviceAssignedNumber":"180D","characteristicAssignedNumbers":["2A37","2A38"]};
Discover the characteristic's descriptors. iOS support only. Calling on Android will return void.
bluetoothle.characteristics(descriptorsSuccessCallback, descriptorsErrorCallback, params);
{"serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37"};
{"status":"discoverDescriptors","serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37","descriptorAssignedNumbers":["2902"]};
Read a particular service's characteristic once.
bluetoothle.read(readSuccessCallback, readErrorCallback, params);
{"serviceAssignedNumber":"180F","characteristicAssignedNumber":"2A19"};
Value is a base64 encoded string of read bytes. Use bluetoothle.getBytes(obj.value) to convert to a unit8Array. See characteristic's specification and example below on how to correctly parse this.
{"status":"read","serviceAssignedNumber":"180F","characteristicAssignedNumber":"2A19","value":""};
Subscribe to a particular service's characteristic. Once a subscription is no longer needed, execute unsubscribe in a similar fashion. The Client Configuration descriptor will automatically be written to enable notification/indication.
bluetoothle.subscribe(subscribeSuccessCallback, subscribeErrorCallback, params);
{"serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37","isNotification":true};
- isNotification is only required on Android. True (or null) means notification will be enabled. False means indication will be enabled.
Value is a base64 encoded string of read bytes. Use bluetoothle.getBytes(obj.value) to convert to a unit8Array. See characteristic's specification and example below on how to correctly parse this.
{"status":"subscribed","serviceUuid":"180D","characteristicUuid":"2A37"};
{"status":"subscribedResult","serviceUuid":"180D","characteristicUuid":"2A37","value":""};
Unsubscribe to a particular service's characteristic.
bluetoothle.unsubscribe(unsubscribeSuccessCallback, unsubscribeErrorCallback, params);
{"serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37"};
{"status":"unsubscribed","serviceUuid":"180D","characteristicUuid":"2A37"};
Write a particular service's characteristic. Note, this hasn't been well tested
bluetoothle.write(writeSuccessCallback, writeErrorCallback, params);
Value is a base64 encoded string of bytes to write. Use bluetoothle.getString(bytes) to convert to base64 encoded string from a unit8Array.
//Note, this example doesn't actually work since it's read only characteristic
{"value":"","serviceAssignedNumber":"180F","characteristicAssignedNumber":"2A19"};
Value is a base64 encoded string of written bytes. Use bluetoothle.getBytes(obj.value) to convert to a unit8Array. See characteristic's specification and example below on how to correctly parse this.
//Write
{"status":"written","serviceUuid":"180F","characteristicUuid":"2A19","value":""};
Read a particular characterist's descriptor
bluetoothle.read(readDescriptorSuccessCallback, readDescriptorErrorCallback, params);
{"serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37","descriptorAssignedNumber":"2902"};
Value is a base64 encoded string of read bytes. Use bluetoothle.getBytes(obj.value) to convert to a unit8Array.
{"status":"readDescriptor","serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37", "descriptorAssignedNumber":"2902","value":""};
Write a particular characteristic's descriptor. Unable to write characteristic configuration directly to keep in line with iOS implementation. Instead use subscribe/unsubscribe, which will automatically enable/disable notification. Note, limited testing and likely needs to be made more generic
bluetoothle.write(writeDescriptorSuccessCallback, writeDescriptorErrorCallback, params);
Value is a base64 encoded string of bytes to write. Use bluetoothle.getString(bytes) to convert to base64 encoded string from a unit8Array.
{"serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37","descriptorAssignedNumber":"2902","value":"EnableNotification"};
Value is a base64 encoded string of written bytes. Use bluetoothle.getBytes(obj.value) to convert to a unit8Array.
{"status":"writeDescriptor","serviceAssignedNumber":"180D","characteristicAssignedNumber":"2A37", "descriptorAssignedNumber":"2902","value":"EnableNotification"};
Read RSSI of a connected device. RSSI is also returned with scanning.
bluetoothle.rssi(rssiSuccessCallback, rssiErrorCallback);
{"status":"rssi","rssi":-5};
Determine whether the adapter is initialized. No error callback
bluetoothle.isInitialized(isInitializedCallback);
True or false
Determine whether the adapter is initialized. No error callback
bluetoothle.isScanning(isScanningCallback);
True or false
Determine whether the device is connected. No error callback
bluetoothle.isConnected(isConnectedCallback);
True or false
Determine whether the device's characteristics and descriptors have been discovered. No error callback. Android support only. Calling on iOS will return false.
bluetoothle.isDiscovered(isDiscoveredCallback);
True or false
Helper function to convert a base64 encoded string from a characteristic or descriptor value into a uint8Array object.
bluetoothle.getBytes(string);
Helper function to convert a unit8Array to a base64 encoded string for a characteric or descriptor write.
bluetoothle.getString(bytes);
- A list of Bluetooth LE Assigned Numbers can be found here: https://developer.bluetooth.org/gatt/services/Pages/ServicesHome.aspx
The following example demonstrates how to connect to a heart rate monitor, read the battery level and subscribe to the heart rate. The first execution will automatically scan and connect to the first device. The second execution will use the saved device address rather than scanning for devices.
Life Cycle: Initialize -> Scan -> Connect -> Disconnect -> Reconnect -> Discover -> Read Battery -> Subscribe Heart Rate -> Wait -> Unsubscribe -> Disconnect -> Close Timeouts: scan, connect and reconnect.
var addressKey = "address";
var heartRateServiceAssignedNumber = "180d";
var heartRateMeasurementCharacteristicAssignedNumber = "2a37";
var clientCharacteristicConfigDescriptorAssignedNumber = "2902";
var batteryServiceAssignedNumber = "180f";
var batteryLevelCharacteristicAssignedNumber = "2a19";
var scanTimer = null;
var connectTimer = null;
var reconnectTimer = null;
var iOSPlatform = "iOS";
var androidPlatform = "Android";
bluetoothle.initialize(initializeSuccess, initializeError);
function initializeSuccess(obj)
{
if (obj.status == "initialized")
{
var address = window.localStorage.getItem(addressKey);
if (address == null)
{
console.log("Bluetooth initialized successfully, starting scan for heart rate devices.");
var paramsObj = {"serviceAssignedNumbers":[heartRateServiceAssignedNumber]};
bluetoothle.startScan(startScanSuccess, startScanError, paramsObj);
}
else
{
connectDevice(address);
}
}
else
{
console.log("Unexpected initialize status: " + obj.status);
}
}
function initializeError(obj)
{
console.log("Initialize error: " + obj.error + " - " + obj.message);
}
function startScanSuccess(obj)
{
if (obj.status == "scanResult")
{
console.log("Stopping scan..");
bluetoothle.stopScan(stopScanSuccess, stopScanError);
clearScanTimeout();
window.localStorage.setItem(addressKey, obj.address);
connectDevice(obj.address);
}
else if (obj.status == "scanStarted")
{
console.log("Scan was started successfully, stopping in 10");
scanTimer = setTimeout(scanTimeout, 10000);
}
else
{
console.log("Unexpected start scan status: " + obj.status);
}
}
function startScanError(obj)
{
console.log("Start scan error: " + obj.error + " - " + obj.message);
}
function scanTimeout()
{
console.log("Scanning time out, stopping");
bluetoothle.stopScan(stopScanSuccess, stopScanError);
}
function clearScanTimeout()
{
console.log("Clearing scanning timeout");
if (scanTimer != null)
{
clearTimeout(scanTimer);
}
}
function stopScanSuccess(obj)
{
if (obj.status == "scanStopped")
{
console.log("Scan was stopped successfully");
}
else
{
console.log("Unexpected stop scan status: " + obj.status);
}
}
function stopScanError(obj)
{
console.log("Stop scan error: " + obj.error + " - " + obj.message);
}
function connectDevice(address)
{
console.log("Begining connection to: " + address + " with 5 second timeout");
var paramsObj = {"address":address};
bluetoothle.connect(connectSuccess, connectError, paramsObj);
connectTimer = setTimeout(connectTimeout, 5000);
}
function connectSuccess(obj)
{
if (obj.status == "connected")
{
console.log("Connected to : " + obj.name + " - " + obj.address);
clearConnectTimeout();
tempDisconnectDevice();
}
else if (obj.status == "connecting")
{
console.log("Connecting to : " + obj.name + " - " + obj.address);
}
else
{
console.log("Unexpected connect status: " + obj.status);
clearConnectTimeout();
}
}
function connectError(obj)
{
console.log("Connect error: " + obj.error + " - " + obj.message);
clearConnectTimeout();
}
function connectTimeout()
{
console.log("Connection timed out");
}
function clearConnectTimeout()
{
console.log("Clearing connect timeout");
if (connectTimer != null)
{
clearTimeout(connectTimer);
}
}
function tempDisconnectDevice()
{
console.log("Disconnecting from device to test reconnect");
bluetoothle.disconnect(tempDisconnectSuccess, tempDisconnectError);
}
function tempDisconnectSuccess(obj)
{
if (obj.status == "disconnected")
{
console.log("Temp disconnect device and reconnecting in 1 second. Instantly reconnecting can cause issues");
setTimeout(reconnect, 1000);
}
else if (obj.status == "disconnecting")
{
console.log("Temp disconnecting device");
}
else
{
console.log("Unexpected temp disconnect status: " + obj.status);
}
}
function tempDisconnectError(obj)
{
console.log("Temp disconnect error: " + obj.error + " - " + obj.message);
}
function reconnect()
{
console.log("Reconnecting with 5 second timeout");
bluetoothle.reconnect(reconnectSuccess, reconnectError);
reconnectTimer = setTimeout(reconnectTimeout, 5000);
}
function reconnectSuccess(obj)
{
if (obj.status == "connected")
{
console.log("Reconnected to : " + obj.name + " - " + obj.address);
clearReconnectTimeout();
if (window.device.platform == iOSPlatform)
{
console.log("Discovering heart rate service");
var paramsObj = {"serviceAssignedNumbers":[heartRateServiceAssignedNumber]};
bluetoothle.services(servicesHeartSuccess, servicesHeartError, paramsObj);
}
else if (window.device.platform == androidPlatform)
{
console.log("Beginning discovery");
bluetoothle.discover(discoverSuccess, discoverError);
}
}
else if (obj.status == "connecting")
{
console.log("Reconnecting to : " + obj.name + " - " + obj.address);
}
else
{
console.log("Unexpected reconnect status: " + obj.status);
disconnectDevice();
}
}
function reconnectError(obj)
{
console.log("Reconnect error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function reconnectTimeout()
{
console.log("Reconnection timed out");
}
function clearReconnectTimeout()
{
console.log("Clearing reconnect timeout");
if (reconnectTimer != null)
{
clearTimeout(reconnectTimer);
}
}
function servicesHeartSuccess(obj)
{
if (obj.status == "discoveredServices")
{
var serviceAssignedNumbers = obj.serviceAssignedNumbers;
for (var i = 0; i < serviceAssignedNumbers.length; i++)
{
var serviceAssignedNumber = serviceAssignedNumbers[i];
if (serviceAssignedNumber == heartRateServiceAssignedNumber)
{
console.log("Finding heart rate characteristics");
var paramsObj = {"serviceAssignedNumber":heartRateServiceAssignedNumber, "characteristicAssignedNumbers":[heartRateMeasurementCharacteristicAssignedNumber]};
bluetoothle.characteristics(characteristicsHeartSuccess, characteristicsHeartError, paramsObj);
return;
}
}
console.log("Error: heart rate service not found");
}
else
{
console.log("Unexpected services heart status: " + obj.status);
}
disconnectDevice();
}
function servicesHeartError(obj)
{
console.log("Services heart error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function characteristicsHeartSuccess(obj)
{
if (obj.status == "discoveredCharacteristics")
{
var characteristicAssignedNumbers = obj.characteristicAssignedNumbers;
for (var i = 0; i < characteristicAssignedNumbers.length; i++)
{
console.log("Heart characteristics found, now discovering descriptor");
var characteristicAssignedNumber = characteristicAssignedNumbers[i];
if (characteristicAssignedNumber == heartRateMeasurementCharacteristicAssignedNumber)
{
var paramsObj = {"serviceAssignedNumber":heartRateServiceAssignedNumber, "characteristicAssignedNumber":heartRateMeasurementCharacteristicAssignedNumber};
bluetoothle.descriptors(descriptorsHeartSuccess, descriptorsHeartError, paramsObj);
return;
}
}
console.log("Error: Heart rate measurement characteristic not found.");
}
else
{
console.log("Unexpected characteristics heart status: " + obj.status);
}
disconnectDevice();
}
function characteristicsHeartError(obj)
{
console.log("Characteristics heart error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function descriptorsHeartSuccess(obj)
{
if (obj.status == "discoveredDescriptors")
{
console.log("Discovered heart descriptors, now discovering battery service");
var paramsObj = {"serviceAssignedNumbers":[batteryServiceAssignedNumber]};
bluetoothle.services(servicesBatterySuccess, servicesBatteryError, paramsObj);
}
else
{
console.log("Unexpected descriptors heart status: " + obj.status);
disconnectDevice();
}
}
function descriptorsHeartError(obj)
{
console.log("Descriptors heart error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function servicesBatterySuccess(obj)
{
if (obj.status == "discoveredServices")
{
var serviceAssignedNumbers = obj.serviceAssignedNumbers;
for (var i = 0; i < serviceAssignedNumbers.length; i++)
{
var serviceAssignedNumber = serviceAssignedNumbers[i];
if (serviceAssignedNumber == batteryServiceAssignedNumber)
{
console.log("Found battery service, now finding characteristic");
var paramsObj = {"serviceAssignedNumber":batteryServiceAssignedNumber, "characteristicAssignedNumbers":[batteryLevelCharacteristicAssignedNumber]};
bluetoothle.characteristics(characteristicsBatterySuccess, characteristicsBatteryError, paramsObj);
return;
}
}
console.log("Error: battery service not found");
}
else
{
console.log("Unexpected services battery status: " + obj.status);
}
disconnectDevice();
}
function servicesBatteryError(obj)
{
console.log("Services battery error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function characteristicsBatterySuccess(obj)
{
if (obj.status == "discoveredCharacteristics")
{
var characteristicAssignedNumbers = obj.characteristicAssignedNumbers;
for (var i = 0; i < characteristicAssignedNumbers.length; i++)
{
var characteristicAssignedNumber = characteristicAssignedNumbers[i];
if (characteristicAssignedNumber == batteryLevelCharacteristicAssignedNumber)
{
readBatteryLevel();
return;
}
}
console.log("Error: Battery characteristic not found.");
}
else
{
console.log("Unexpected characteristics battery status: " + obj.status);
}
disconnectDevice();
}
function characteristicsBatteryError(obj)
{
console.log("Characteristics battery error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function discoverSuccess(obj)
{
if (obj.status == "discovered")
{
console.log("Discovery completed");
readBatteryLevel();
}
else
{
console.log("Unexpected discover status: " + obj.status);
disconnectDevice();
}
}
function discoverError(obj)
{
console.log("Discover error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function readBatteryLevel()
{
console.log("Reading battery level");
var paramsObj = {"serviceAssignedNumber":batteryServiceAssignedNumber, "characteristicAssignedNumber":batteryLevelCharacteristicAssignedNumber};
bluetoothle.read(readSuccess, readError, paramsObj);
}
function readSuccess(obj)
{
if (obj.status == "read")
{
var bytes = bluetoothle.getBytes(obj.value);
console.log("Battery level: " + bytes[0]);
console.log("Subscribing to heart rate for 5 seconds");
var paramsObj = {"serviceAssignedNumber":heartRateServiceAssignedNumber, "characteristicAssignedNumber":heartRateMeasurementCharacteristicAssignedNumber};
bluetoothle.subscribe(subscribeSuccess, subscribeError, paramsObj);
setTimeout(unsubscribeDevice, 5000);
}
else
{
console.log("Unexpected read status: " + obj.status);
disconnectDevice();
}
}
function readError(obj)
{
console.log("Read error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function subscribeSuccess(obj)
{
if (obj.status == "subscribedResult")
{
console.log("Subscription data received");
//Parse array of int32 into uint8
var bytes = bluetoothle.getBytes(obj.value);
//Check for data
if (bytes.length == 0)
{
console.log("Subscription result had zero length data");
return;
}
//Get the first byte that contains flags
var flag = bytes[0];
//Check if u8 or u16 and get heart rate
var hr;
if ((flag & 0x01) == 1)
{
var u16bytes = bytes.buffer.slice(1, 3);
var u16 = new Uint16Array(u16bytes)[0];
hr = u16;
}
else
{
var u8bytes = bytes.buffer.slice(1, 2);
var u8 = new Uint8Array(u8bytes)[0];
hr = u8;
}
console.log("Heart Rate: " + hr);
}
else if (obj.status == "subscribed")
{
console.log("Subscription started");
}
else
{
console.log("Unexpected subscribe status: " + obj.status);
disconnectDevice();
}
}
function subscribeError(msg)
{
console.log("Subscribe error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function unsubscribeDevice()
{
console.log("Unsubscribing heart service");
var paramsObj = {"serviceAssignedNumber":heartRateServiceAssignedNumber, "characteristicAssignedNumber":heartRateMeasurementCharacteristicAssignedNumber};
bluetoothle.unsubscribe(unsubscribeSuccess, unsubscribeError, paramsObj);
}
function unsubscribeSuccess(obj)
{
if (obj.status == "unsubscribed")
{
console.log("Unsubscribed device");
console.log("Reading client configuration descriptor");
var paramsObj = {"serviceAssignedNumber":heartRateServiceAssignedNumber, "characteristicAssignedNumber":heartRateMeasurementCharacteristicAssignedNumber, "descriptorAssignedNumber":clientCharacteristicConfigDescriptorAssignedNumber};
bluetoothle.readDescriptor(readDescriptorSuccess, readDescriptorError, paramsObj);
}
else
{
console.log("Unexpected unsubscribe status: " + obj.status);
disconnectDevice();
}
}
function unsubscribeError(obj)
{
console.log("Unsubscribe error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function readDescriptorSuccess(obj)
{
if (obj.status == "readDescriptor")
{
var bytes = bluetoothle.getBytes(obj.value);
var u16Bytes = new Uint16Array(bytes.buffer);
console.log("Read descriptor value: " + u16Bytes[0]);
disconnectDevice();
}
else
{
console.log("Unexpected read descriptor status: " + obj.status);
disconnectDevice();
}
}
function readDescriptorError(obj)
{
console.log("Read Descriptor error: " + obj.error + " - " + obj.message);
disconnectDevice();
}
function disconnectDevice()
{
bluetoothle.disconnect(disconnectSuccess, disconnectError);
}
function disconnectSuccess(obj)
{
if (obj.status == "disconnected")
{
console.log("Disconnect device");
closeDevice();
}
else if (obj.status == "disconnecting")
{
console.log("Disconnecting device");
}
else
{
console.log("Unexpected disconnect status: " + obj.status);
}
}
function disconnectError(obj)
{
console.log("Disconnect error: " + obj.error + " - " + obj.message);
}
function closeDevice()
{
bluetoothle.close(closeSuccess, closeError);
}
function closeSuccess(obj)
{
if (obj.status == "closed")
{
console.log("Closed device");
}
else
{
console.log("Unexpected close status: " + obj.status);
}
}
function closeError(obj)
{
console.log("Close error: " + obj.error + " - " + obj.message);
}
- Author: Rand Dusing
- Website: http://www.randdusing.com/
The source files included in the repository are released under the Apache License, Version 2.0.