node-web-bluetooth

1.2.1 • Public • Published

THIS REPOSITORY IS NO LONGER MAINTAINED

Looking for an alternative? Please have a look at node-ble.

If you are interested in maintaining this repository (and taking ownership of it), please reach out to me here.

node-web-bluetooth logo Build Status MIT licensed

Web Bluetooth API and interactive device picker for node.js, using the awesome noble package

Installation

npm install node-web-bluetooth

This will automatically install noble. Depending on your system environment and the tools installed, noble may or may not work out of the box. Please visit https://github.com/abandonware/noble on how to install all the prerequisites for noble.

Usage

const Bluetooth	= require('node-web-bluetooth');

async function connect() {
	const device = await Bluetooth.requestDevice({
		filters: [
			{services: ['heart_rate']}
		]
	});
	const server = await device.gatt.connect();
	const service = await server.getPrimaryService('heart_rate');
	const char = await service.getCharacteristic('heart_rate_measurement');
	await char.startNotifications();
	char.on('characteristicvaluechanged', (data) => {
		// parse heart-rate data here
	});
	...
	await char.stopNotifications();
	await server.disconnect();
}
connect();

node-web-bluetooth-request-device

Programmatically selecting a device

By default, Bluetooth.requestDevice shows an interactive list with all the discovered devices it has found. To programmatically control the selected device, you can pass in an instance of the RequestDeviceDelegate class.

const Bluetooth	= require('node-web-bluetooth');

class SelectFirstFoundDevice extends Bluetooth.RequestDeviceDelegate {

	// Select first device found
	onAddDevice(device) {
		this.resolve(device);
	}
	onUpdateDevice(device) {
		// Called whenever new advertisement data was received
		// for the device
	}

	// Time-out when device hasn't been found in 20 secs
	onStartScan() {
		this._timer = setTimeout(() => {
			this.reject(new Error('No device found'));
		}, 20000);
	}
	onStopScan() {
		if (this._timer) clearTimeout(this._timer);
	}
}

async function connect() {
	const device = await Bluetooth.requestDevice({
		filters: [
			{services: ['heart_rate']}
		],
		delegate: new SelectFirstFoundDevice()
	});
	...
}
connect();

Customizing the interactive device picker

The header-text and the formatting of the interactive device picker are customizable. To fully customize it, derive a class from it and override its methods.

const Bluetooth	= require('node-web-bluetooth');

const device = Bluetooth.requestDevice({
	delegate: new Bluetooth.InteractiveRequestDeviceDelegate({
		header: 'Set your custom header text here',
		format: (device) => `${device.id} - ${device.name}`
	})
});

navigator.bluetooth compatibility

In order to achieve full code compatibility with browser code, navigator.bluetooth is injected into the global scope. In case the navigator object already existed, it is extended with the bluetooth object. Causing this to work:

require('node-web-bluetooth');

navigator.bluetooth.requestDevice({
	...
});

Supported APIs

  • [x] Bluetooth.requestDevice()
  • [x] Bluetooth.getAvailability()
  • [x] Bluetooth.availabilitychanged
  • [ ] Bluetooth.referringDevice (not relevant)
  • [x] BluetoothDevice.id
  • [x] BluetoothDevice.name
  • [x] BluetoothDevice.gatt
  • [x] BluetoothDevice.uuids
  • [x] BluetoothDevice.gattserverdisconnected
  • [ ] BluetoothDevice.watchAdvertisements()
  • [ ] BluetoothDevice.advertisementreceived()
  • [x] BluetoothRemoteGATTServer.device
  • [x] BluetoothRemoteGATTServer.connected
  • [x] BluetoothRemoteGATTServer.connect()
  • [x] BluetoothRemoteGATTServer.disconnect()
  • [x] BluetoothRemoteGATTServer.getPrimaryService()
  • [x] BluetoothRemoteGATTServer.getPrimaryServices()
  • [x] BluetoothRemoteGATTService.uuid
  • [x] BluetoothRemoteGATTService.isPrimary
  • [x] BluetoothRemoteGATTService.device
  • [x] BluetoothRemoteGATTService.getCharacteristic()
  • [x] BluetoothRemoteGATTService.getCharacteristics()
  • [x] BluetoothRemoteGATTService.getIncludedService()
  • [x] BluetoothRemoteGATTService.getIncludedServices()
  • [ ] BluetoothRemoteGATTService.serviceadded
  • [ ] BluetoothRemoteGATTService.servicechanged
  • [ ] BluetoothRemoteGATTService.serviceremoved
  • [x] BluetoothRemoteGATTCharacteristic.service
  • [x] BluetoothRemoteGATTCharacteristic.uuid
  • [x] BluetoothRemoteGATTCharacteristic.properties
  • [x] BluetoothRemoteGATTCharacteristic.value
  • [x] BluetoothRemoteGATTCharacteristic.getDescriptor()
  • [x] BluetoothRemoteGATTCharacteristic.getDescriptors()
  • [x] BluetoothRemoteGATTCharacteristic.readValue()
  • [x] BluetoothRemoteGATTCharacteristic.writeValue()
  • [ ] BluetoothRemoteGATTCharacteristic.writeValueWithResponse()
  • [ ] BluetoothRemoteGATTCharacteristic.writeValueWithoutResponse()
  • [x] BluetoothRemoteGATTCharacteristic.startNotifications()
  • [x] BluetoothRemoteGATTCharacteristic.stopNotifications()
  • [x] BluetoothRemoteGATTCharacteristic.characteristicvaluechanged
  • [x] BluetoothRemoteGATTDescriptor.characteristic
  • [x] BluetoothRemoteGATTDescriptor.uuid
  • [x] BluetoothRemoteGATTDescriptor.value
  • [x] BluetoothRemoteGATTDescriptor.readValue
  • [x] BluetoothRemoteGATTDescriptor.writeValue
  • [x] Translate characteric names to UUIDs
  • [x] Translate descriptor names to UUIDs

Known issues

Due to an implementation restriction in noble, calling BluetoothRemoteGATTService.getCharacteristic(s) multiple times doesn't work correctly. If you need to obtain multiple characterstics, then do it using a single call to BluetoothRemoteGATTService.getCharacteristics.

Resources

License

MIT

Package Sidebar

Install

npm i node-web-bluetooth

Weekly Downloads

5

Version

1.2.1

License

MIT

Unpacked Size

33.8 kB

Total Files

17

Last publish

Collaborators

  • ijzerenhein