Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

noble

sandeepmistry3.2kMIT1.9.1TypeScript support: definitely-typed

A Node.js BLE (Bluetooth Low Energy) central library.

bluetooth, BLE, bluetooth low energy, bluetooth smart, central

readme

noble

Build Status Gitter OpenCollective OpenCollective

A Node.js BLE (Bluetooth Low Energy) central module.

Want to implement a peripheral? Checkout bleno

Note: macOS / Mac OS X, Linux, FreeBSD and Windows are currently the only supported OSes. Other platforms may be developed later on.

Prerequisites

OS X

Linux

  • Kernel version 3.6 or above
  • libbluetooth-dev

Ubuntu/Debian/Raspbian

sudo apt-get install bluetooth bluez libbluetooth-dev libudev-dev

Make sure node is on your path, if it's not, some options:

Fedora / Other-RPM based

sudo yum install bluez bluez-libs bluez-libs-devel

Intel Edison

See Configure Intel Edison for Bluetooth LE (Smart) Development

FreeBSD

Make sure you have GNU Make:

sudo pkg install gmake

Disable automatic loading of the default Bluetooth stack by putting no-ubt.conf into /usr/local/etc/devd/no-ubt.conf and restarting devd (sudo service devd restart).

Unload ng_ubt kernel module if already loaded:

sudo kldunload ng_ubt

Make sure you have read and write permissions on the /dev/usb/* device that corresponds to your Bluetooth adapter.

Windows

node-gyp requirements for Windows

Install the required tools and configurations using Microsoft's windows-build-tools from an elevated PowerShell or cmd.exe (run as Administrator).

npm install --global --production windows-build-tools

node-bluetooth-hci-socket prerequisites

  • Compatible Bluetooth 4.0 USB adapter
  • WinUSB driver setup for Bluetooth 4.0 USB adapter, using Zadig tool

See @don's set up guide on Bluetooth LE with Node.js and Noble on Windows

Notes

Maximum simultaneous connections

This limit is imposed upon by the Bluetooth adapter hardware as well as it's firmware.

Platform
OS X 10.11 (El Capitan) 6
Linux/Windows - Adapter dependent 5 (CSR based adapter)

Adapter specific known issues

Some BLE adapters cannot connect to a peripheral while they are scanning (examples below). You will get the following messages when trying to connect :

Sena UD-100 (Cambridge Silicon Radio, Ltd Bluetooth Dongle (HCI mode)) : Error: Command disallowed

Intel Dual Band Wireless-AC 7260 (Intel Corporation Wireless 7260 (rev 73)) : Error: Connection Rejected due to Limited Resources (0xd)

You need to stop scanning before trying to connect in order to solve this issue.

Install

npm install noble

Usage

var noble = require('noble');

Actions

Start scanning

noble.startScanning(); // any service UUID, no duplicates


noble.startScanning([], true); // any service UUID, allow duplicates


var serviceUUIDs = ["<service UUID 1>", ...]; // default: [] => all
var allowDuplicates = <false|true>; // default: false

noble.startScanning(serviceUUIDs, allowDuplicates[, callback(error)]); // particular UUID's

NOTE: noble.state must be poweredOn before scanning is started. noble.on('stateChange', callback(state)); can be used register for state change events.

Stop scanning

noble.stopScanning();

Peripheral

Connect
peripheral.connect([callback(error)]);
Disconnect or cancel pending connection
peripheral.disconnect([callback(error)]);
Update RSSI
peripheral.updateRssi([callback(error, rssi)]);
Discover services
peripheral.discoverServices(); // any service UUID

var serviceUUIDs = ["<service UUID 1>", ...];
peripheral.discoverServices(serviceUUIDs[, callback(error, services)]); // particular UUID's
Discover all services and characteristics
peripheral.discoverAllServicesAndCharacteristics([callback(error, services, characteristics)]);
Discover some services and characteristics
var serviceUUIDs = ["<service UUID 1>", ...];
var characteristicUUIDs = ["<characteristic UUID 1>", ...];
peripheral.discoverSomeServicesAndCharacteristics(serviceUUIDs, characteristicUUIDs, [callback(error, services, characteristics));

Service

Discover included services
service.discoverIncludedServices(); // any service UUID

var serviceUUIDs = ["<service UUID 1>", ...];
service.discoverIncludedServices(serviceUUIDs[, callback(error, includedServiceUuids)]); // particular UUID's
Discover characteristics
service.discoverCharacteristics() // any characteristic UUID

var characteristicUUIDs = ["<characteristic UUID 1>", ...];
service.discoverCharacteristics(characteristicUUIDs[, callback(error, characteristics)]); // particular UUID's

Characteristic

Read
characteristic.read([callback(error, data)]);
Write
characteristic.write(data, withoutResponse[, callback(error)]); // data is a buffer, withoutResponse is true|false
  • withoutResponse:
    • false: send a write request, used with "write" characteristic property
    • true: send a write command, used with "write without response" characteristic property
Broadcast
characteristic.broadcast(broadcast[, callback(error)]); // broadcast is true|false
Subscribe
characteristic.subscribe([callback(error)]);
  • subscribe to a characteristic, triggers 'data' events when peripheral sends an notification or indication
  • use for characteristics with notify or indicate properties
Unsubscribe
characteristic.unsubscribe([callback(error)]);
  • unsubscribe to a characteristic
  • use for characteristics with notify or indicate properties
Discover descriptors
characteristic.discoverDescriptors([callback(error, descriptors)]);
Read value
descriptor.readValue([callback(error, data)]);
Write value
descriptor.writeValue(data[, callback(error)]); // data is a buffer

Handle

Read
peripheral.readHandle(handle, callback(error, data));
Write
peripheral.writeHandle(handle, data, withoutResponse, callback(error));

Events

See Node.js EventEmitter docs for more info. on API's.

Adapter state change

state = <"unknown" | "resetting" | "unsupported" | "unauthorized" | "poweredOff" | "poweredOn">

noble.on('stateChange', callback(state));

Scan started:

noble.on('scanStart', callback);

The event is emitted when scanning is started or if another application enables scanning or changes scanning settings.

Scan stopped

noble.on('scanStop', callback);

The event is emitted when scanning is stopped or if another application stops scanning.

Peripheral discovered

peripheral = {
  id: "<id>",
  address: "<BT address">, // Bluetooth Address of device, or 'unknown' if not known
  addressType: "<BT address type>", // Bluetooth Address type (public, random), or 'unknown' if not known
  connectable: <connectable>, // true or false, or undefined if not known
  advertisement: {
    localName: "<name>",
    txPowerLevel: <int>,
    serviceUuids: ["<service UUID>", ...],
    serviceSolicitationUuid: ["<service solicitation UUID>", ...],
    manufacturerData: <Buffer>,
    serviceData: [
        {
            uuid: "<service UUID>"
            data: <Buffer>
        },
        ...
    ]
  },
  rssi: <rssi>
};

noble.on('discover', callback(peripheral));

Note: on OS X the address will be set to 'unknown' if the device has not been connected previously.

Warnings

noble.on('warning', callback(message));

Peripheral

Connected
peripheral.once('connect', callback);
Disconnected:
peripheral.once('disconnect', callback);
RSSI update
peripheral.once('rssiUpdate', callback(rssi));
Services discovered
peripheral.once('servicesDiscover', callback(services));

Service

Included services discovered
service.once('includedServicesDiscover', callback(includedServiceUuids));
Characteristics discovered
characteristic = {
  uuid: "<uuid>",
   // properties: 'broadcast', 'read', 'writeWithoutResponse', 'write', 'notify', 'indicate', 'authenticatedSignedWrites', 'extendedProperties'
  properties: [...]
};

service.once('characteristicsDiscover', callback(characteristics));

Characteristic

Data

Emitted when characteristic read has completed, result of characteristic.read(...) or characteristic value has been updated by peripheral via notification or indication - after having been enabled with notify(true[, callback(error)]).

characteristic.on('data', callback(data, isNotification));

characteristic.once('read', callback(data, isNotification)); // legacy

Note: isNotification event parameter value MAY be undefined depending on platform support. The parameter is deprecated after version 1.8.1, and not supported when on macOS High Sierra and later.

Write

Emitted when characteristic write has completed, result of characteristic.write(...).

characteristic.once('write', withoutResponse, callback());
Broadcast

Emitted when characteristic broadcast state changes, result of characteristic.broadcast(...).

characteristic.once('broadcast', callback(state));
Notify

Emitted when characteristic notification state changes, result of characteristic.notify(...).

characteristic.once('notify', callback(state));
Descriptors discovered
descriptor = {
  uuid: '<uuid>'
};

characteristic.once('descriptorsDiscover', callback(descriptors));

Descriptor

Value read
descriptor.once('valueRead', data);
Value write
descriptor.once('valueWrite');

Running on Linux

Running without root/sudo

Run the following command:

sudo setcap cap_net_raw+eip $(eval readlink -f `which node`)

This grants the node binary cap_net_raw privileges, so it can start/stop BLE advertising.

Note: The above command requires setcap to be installed, it can be installed using the following:

  • apt: sudo apt-get install libcap2-bin
  • yum: su -c \'yum install libcap2-bin\'

Multiple Adapters

hci0 is used by default to override set the NOBLE_HCI_DEVICE_ID environment variable to the interface number.

Example, specify hci1:

sudo NOBLE_HCI_DEVICE_ID=1 node <your file>.js

Reporting all HCI events

By default noble waits for both the advertisement data and scan response data for each Bluetooth address. If your device does not use scan response the following environment variable can be used to bypass it.

sudo NOBLE_REPORT_ALL_HCI_EVENTS=1 node <your file>.js

bleno compatibility

By default noble will respond with an error whenever a GATT request message is received. If your intention is to use bleno in tandem with noble, the following environment variable can be used to bypass this functionality. Note: this requires a Bluetooth 4.1 adapter.

sudo NOBLE_MULTI_ROLE=1 node <your file>.js

Advanced usage

Override default bindings

By default, noble will select bindings to communicate with Bluetooth devices depending on your platform. If you prefer to specify what bindings noble should use:

var noble = require('noble/with-bindings')(require('./my-custom-bindings'));

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

License

Copyright (C) 2015 Sandeep Mistry sandeep.mistry@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Analytics

changelog

Version 1.9.1

  • Don't forget previously discovered services and characteristics (@elafargue)
  • Fixed peripheral-explorer example with newer async versions
  • web socket binding: various fixes (@hadrienk)
  • Fix multiple init of bindings with multiple stateChange listeners added or noble.state is accessed

Version 1.9.0

  • Don't initialize bindings until first state change listener added
  • webble: hooked up disconnect event
  • webble: clear cached services on reconnect
  • hci-socket: Added upport 32-bit and 128-bit service data UUIDs (@arekzelechowski)
  • Update 'connectable' property upon discovery (@dimitrisx)
  • macOS: Added support for High Sierra
  • webble: remove subscribe listeners on disconnect

Version 1.8.1

  • easier install instructions for Windows (@don)
  • hci-socket binding: more descriptive error outputs (@mbifulco)
  • hci-socket binding: report non-connectable advertisements without scan response
  • Corrected deprecated read event for characteristics no emitting for notifications

Version 1.8.0

  • hci-socket binding: always set scan parameters before scanning (@Lahorde)
  • hci-socket binding: add L2CAP signaling layer for non-Linux or Linux user channel mode
  • hci-socket binding: Workarounds for scanning with N.T.C. C.H.I.P
  • hci-socket binding: if init() fails we don't want to try and clear up (@gfwilliams)
  • Fix read events firing for notifications (@zkiiito)
  • Add FreeBSD support (@myfreeweb)
  • Fix startScanning callback calling setting error to try (@MarSoft)
  • New Web Bluetooth API shim (@monteslu)

Version 1.7.0

  • hci-socket binding: now supports "long writes" (@projectgus)
  • hci-socket binding: use latest bluetooth-hci-socket dependency (~0.5.1)
  • hci-socket binding: add support to extract service solicitation UUID's from advertisement (@smartyw)
  • web-socket binding: fixed write handle not working (@christopherhex)
  • hci-socket binding: initial bindUser support via HCI_CHANNEL_USER environment variable

Version 1.6.0

  • hci-socket binding: use latest bluetooth-hci-socket dependency (~0.4.4)
  • Added characteristic.subscribe and characteristic.unsubscribe API's (characteristic.notify is now deprecated)
  • hci-socket binding: use OCF_LE_SET_EVENT_MASK for LE_SET_EVENT_MASK_CMD
  • hci-socket binding: check READ_LE_HOST_SUPPORTED_CMD status before parsing result

Version 1.5.0

  • hci-socket binding: add NOBLE_MULTI_ROLE flag for ignoring peripheral role commands (@popasquat89)
  • Fix variable typo in `with-bindings.js (@rclai)

Version 1.4.0

  • hci-socket binding: include service data UUID's when filtering discover
  • hci-socket binding: emit scan start/stop when external app changes scanning start (@bradjc)
  • Support for pluggable bindings (@hgwood)
  • hci-socket binding: don't kill all descriptors when looking for new Characteristics (@Neutrosider)

Version 1.3.0

  • Check and report LE Create Conn command status
  • Correct parsing master clock accuracy value from LE Conn Complete event
  • Added logic to reject rather than ignore unknown requests/commands. (@george-hawkins)
  • Don't reset scan state on read local version response if state is powered on
  • Expose local adapter address via noble.address, available after poweredOn state change event
  • Fix serviceUuids var check in peripheral-explorer.js (@jrobeson)

Version 1.2.1

  • Use latest v0.4.1 bluetooth-hci-socket dependency (for kernel 4.1.x disconnect workaround)
  • Add read + write LE host supported commands (for kernel 4.1.x disconnect workaround)
  • Fix a potential exception when accessing a non existent element (@Loghorn)

Version 1.2.0

  • Use v0.4.0 of bluetooth-hci-socket
  • Ignore peripherals with only connectable flag on OS X 10.10
  • Bindings no longer init themselves
  • Fix this._discoveredPeripheralUUids = []; variable not initalized in constructor (@jacobrosenthal)
  • New peripheral.connectable property
  • Updates to Linux prerequisites in read me
  • Throw error if scanning is started when state is not powered on

Version 1.1.0

  • Introduce peripheral.id, periheral.uuid is deprecated now
  • Initial Windows support via WinUSB and bluetooth-hci-socket
  • Rework Linux stack to use bluetooth-hci-socket
  • Clarify notify related API's in read me (@OJFord)

Version 1.0.2

  • Add mac dummy in binding.pyq (@DomiR)
  • Fixes for distributed and websocket bindings (@Loghorn)
  • OS X Mavericks and legacy: manually emit write event for write without response requests
  • Update README for packages needed for rpm-based systems (@ppannuto)
  • Linux: refresh serviceUuids for incoming advertisement (@BBarash)

Version 1.0.1

  • correct peripherals not being created correctly

Version 1.0

  • remove unneeded setTimeout's in OS X bindings
  • added persistent peripherals between calls to .startScanning() on mavericks (@andySigler)
  • report error or print warning if startScanning is called with state is not poweredOn
  • emit events for warnings (@voodootikigod )
  • disable scanning flag on start on Linux to prevent unsupport adapter state in some cases
  • update debug dependency version
  • add address type to peripheral if known

Older

  • Changes not recorded