Socket
Socket
Sign inDemoInstall

advlib-eep-vld

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    advlib-eep-vld

Wireless advertising packet decoding library for EnOcean Equipment Profile VLD telegrams. We believe in an open Internet of Things.


Version published
Weekly downloads
69
increased by392.86%
Maintainers
1
Install size
26.8 kB
Created
Weekly downloads
 

Readme

Source

advlib-eep-vld

Wireless advertising packet decoding library for EnOcean Equipment Profiles of variable-length data (VLD). advlib-eep-vld is typically used as a library for advlib-esp which itself is commonly a processor module of the protocol-agnostic advlib.

Overview of advlib-eep-vld

advlib-eep-vld is a lightweight Node.js package with no dependencies. See also its sister libraries advlib-eep-4bs and advlib-eep-rps.

Installation

npm install advlib-eep-vld

Hello advlib-eep-vld!

const advlib = require('advlib-eep-vld');

let eepType = 'D2-14-41';
let telegram = 'd29165c02963e4f5d8000414006980';

let processedData = advlib.processVLDTelegram(eepType, telegram);

console.log(processedData);

Which should yield the following console output:

{
    acceleration: [ -0.01, -0.045, 1.02 ],
    illuminance: 331,
    isContactDetected: [ false ],
    isMotionDetected: [ false ],
    relativeHumidity: 75.5,
    temperature: 18.1
}

Supported EnOcean Equipment Profiles

The following EEPs are currently supported by advlib-eep-vld.

EEPProfile Name/lib file
D2-14-41Temperature, Humidity XYZ Acceleration, Illumination Sensormultifunctionsensors.js
D2-14-50Basic Water Properties Sensor (pH)multifunctionsensors.js
D2-14-51Basic Water Properties Sensor (Dissolved Oxygen)multifunctionsensors.js
D2-15-00Single Sensorsinglesensor.js

See www.reelyactive.com/pareto/anywhere/devices/enocean-alliance/ for a list of all EEPs supported by our Pareto Anywhere open source IoT middleware.

Contributing

Discover how to contribute to this open source project which upholds a standard code of conduct.

Security

Consult our security policy for best practices using this open source software and to report vulnerabilities.

License

MIT License

Copyright (c) 2022-2024 reelyActive

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.

Keywords

FAQs

Last updated on 25 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc