Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 321 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 321 Bytes

GATT UUIDs

this npm package provides uuid list of GATT specifications

Example usage:

let UUIDList = require('gattuuids');
let Characteristic = require('bleno').Characteristic;
...
new Characteristic({
    uuid: UUIDList.Characteristics.battery_level,
    ...
})