Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reelyactive/advlib-ble-gatt
Open source library for decoding Bluetooth Low Energy (BLE) GATT data. We believe in an open Internet of Things.
https://github.com/reelyactive/advlib-ble-gatt
ble bluetooth-library gatt node-js packet-decoding
Last synced: 9 days ago
JSON representation
Open source library for decoding Bluetooth Low Energy (BLE) GATT data. We believe in an open Internet of Things.
- Host: GitHub
- URL: https://github.com/reelyactive/advlib-ble-gatt
- Owner: reelyactive
- License: mit
- Created: 2024-07-10T19:45:01.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-08-08T14:29:54.000Z (5 months ago)
- Last Synced: 2024-08-09T03:12:19.837Z (5 months ago)
- Topics: ble, bluetooth-library, gatt, node-js, packet-decoding
- Language: JavaScript
- Homepage: https://www.reelyactive.com/pareto/anywhere/
- Size: 96.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
advlib-ble-gatt
===============Wireless packet decoding library for Bluetooth Low Energy GATT data. __advlib-ble-gatt__ is typically used as a library for [advlib-ble](https://github.com/reelyactive/advlib-ble) which itself is commonly a processor module of the protocol-agnostic [advlib](https://github.com/reelyactive/advlib).
![Overview of advlib-ble-gatt](https://reelyactive.github.io/advlib-ble-gatt/images/overview.png)
__advlib-ble-gatt__ is a lightweight [Node.js package](https://www.npmjs.com/package/advlib-ble-gatt) with no dependencies.
Installation
------------npm install advlib-ble-gatt
Hello advlib-ble-gatt!
----------------------```javascript
const advlib = require('advlib-ble-gatt');let protocolSpecificData = {
gatt: [ { serviceUuid: "1c930003d45911e79296b8e856369374",
characteristicUuid: "1c930038d45911e79296b8e856369374",
value: "480d" },
{ serviceUuid: "1c930003d45911e79296b8e856369374",
characteristicUuid: "1c930032d45911e79296b8e856369374",
value: "c019" } ]
};let processedData = advlib.processProtocolSpecificData(protocolSpecificData);
console.log(processedData);
```Which should yield the following console output:
{ batteryVoltage: 3.4, temperature: 25.75 }
The __advlib-ble-gatt__ library observes [these standard properties](https://github.com/reelyactive/advlib#standard-properties).
Supported Services
------------------The following services, in order of their UUID, are supported by __advlib-ble-gatt__.
| Service UUID(s) | /lib file |
|:-------------------------------------|:----------|
| 1c93xxxx-d459-11e7-9296-b8e856369374 | bluvib.js |Contributing
------------Discover [how to contribute](CONTRIBUTING.md) to this open source project which upholds a standard [code of conduct](CODE_OF_CONDUCT.md).
Security
--------Consult our [security policy](SECURITY.md) for best practices using this open source software and to report vulnerabilities.
License
-------MIT License
Copyright (c) 2024 [reelyActive](https://www.reelyactive.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.