Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reelyactive/advlib-identifier
Library for extracting the wireless device identifier from a transmitted packet. We believe in an open Internet of Things.
https://github.com/reelyactive/advlib-identifier
advlib
Last synced: 9 days ago
JSON representation
Library for extracting the wireless device identifier from a transmitted packet. We believe in an open Internet of Things.
- Host: GitHub
- URL: https://github.com/reelyactive/advlib-identifier
- Owner: reelyactive
- License: mit
- Created: 2018-08-16T12:57:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-16T14:41:57.000Z (over 6 years ago)
- Last Synced: 2024-04-14T23:30:11.556Z (8 months ago)
- Topics: advlib
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
advlib-identifier
=================Library for extracting the wireless device identifier from a transmitted packet. We believe in an open Internet of Things.
Bluetooth Low Energy (BLE)
--------------------------Extract the identifier (and its type) from a BLE Packet Data Unit (PDU) represented as a hexadecimal string. For example:
```javascript
const advlib = require('advlib-identifier');let packet = '400dc3dc80ee20e40201060303edfe';
let identifier = advlib.ble.extractIdentifier(packet);console.log(identifier);
// {
// identifier: "e420ee80dcc3",
// identifierType: 3
// }
```reelyActive (Sub-GHz Active RFID)
---------------------------------Extract the identifier (and its type) from a packet represented as a hexadecimal string. For example:
```javascript
const advlib = require('advlib-identifier');let packet = '1234567c';
let identifier = advlib.reelyactive.extractIdentifier(packet);console.log(identifier);
// {
// identifier: "001bc50941234567",
// identifierType: 1
// }
```Identifiers
-----------Identifier types are encoded as numbers. The following identifier types are currently supported.
| identifierType | Reference | Description |
|----------------|--------------|-------------------------------------|
| 0 | TYPE_UNKNOWN | Unknown identifier |
| 1 | TYPE_EUI64 | EUI-64 |
| 2 | TYPE_EUI48 | EUI-48 (BLE public address) |
| 3 | TYPE_RND48 | Random 48-bits (BLE random address) |```javascript
const advlib = require('advlib-identifier');let identifierType = 3;
if(identifierType === advlib.identifiers.TYPE_RND48) {
console.log('The identifier is a BLE random address');
}
// -> The identifier is a BLE random address
```License
-------MIT License
Copyright (c) 2018 [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.