Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get the characteristic list of a BLE device service.
read
write
notify
indicate
my.getBLEDeviceCharacteristics({ deviceId: 'XX:XX:XX:XX:XX:XX', serviceId: '0000FFF0-0000-1000-8000-00805F9B34FB', success: (res) => { res.characteristics.forEach((char) => { console.log('Characteristic:', char.characteristicId); console.log('Can read:', char.properties.read); console.log('Can notify:', char.properties.notify); }); }, fail: (err) => { console.error('Failed:', err); } });