Communicate with devices over bluetooth low-energy
const bt = bluetooth.createClient();bt.on('discover', (device) => console.log('discovered device', device));await bt.waitForPoweredOn();await bt.startScanning(); Copy
const bt = bluetooth.createClient();bt.on('discover', (device) => console.log('discovered device', device));await bt.waitForPoweredOn();await bt.startScanning();
Communicate with devices over bluetooth low-energy
Example