Matter BLE support using bleno for Peripheral/Device side and noble (not implemented yet) for Central/Controller side.
This package supports all Node.js LTS versions starting with 18.x
This package contains the specific Platform implementations for Bluetooth LE with Node.js. It is designed to be used in addition to the @matter/nodejs package to enable BLE specific functionality.
The used packages have some limitations and prerequisites. Please check the Readme's of the packages for more details:
- bleno
- For Linux: also consider https://github.com/stoprocent/bleno#running-on-linux
- Bleno is currently not working on macOS because it cannot announce the proper data because of macOS limitations!
- noble
- Consider Noble prerequisites for your platform: https://github.com/stoprocent/noble#prerequisites
- For Linux: https://github.com/stoprocent/noble#running-without-rootsudo-linux-specific
- When using Device and Controller in parallel: https://github.com/stoprocent/noble#bleno-compatibility-linux-specific (NOBLE_MULTI_ROLE might be needed to set)
- Please also see common issues and solutions: https://github.com/stoprocent/noble#common-problems
This package is designed to be used in addition to matter.ja and matter-node.js to enable BLE support. It is not intended to be used standalone.
Add this package to your package dependencies and make sure it is exactly the same version as matter.js and matter-node.js.
In your code you register the BLE instance by using:
import { BleNode } from "@matter/nodejs-ble";
import { Ble } from "@matter/main";
Ble.get = singleton(
() =>
new BleNode({
// hciId: 1, // If you need to change it from default 0 on linux systems
}),
);
The relevant classes in matter.js will detect the registration and use the BLE instance for BLE operations if needed.
You can optionally set an options object when instantiating BleNode. this object can have the following properties:
- hciId: HCI ID (number) of the HCI device to use. If not set, ID 0 is used
npm run build
: Build all code and create CommonJS and ES6 variants in dist directory. This will built incrementally and only build the changed files.npm run build-clean
: Clean the dist directory and build all code from scratch
npm run test
: Run all tests - TBD