Tetraib / node-openzwave-shared

OpenZWave addon for Node.js (0.10.x/0.12.x) including all the missing management functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-openzwave-shared

This is a node.js add-on for node 0.10.x and 0.12.x which wraps the Open Z-Wave library to provide access to a Z-Wave network from within node.js (server-side JavaScript.)

You can now easily control and manage your ZWave devices (lights, dimmers, blinds, you name it) from within NodeJS applications.

Check out the Node-Red integration project for an interesting use case, in which I've wired up ZWave and KNX devices working together as one big happy automated home.

This addon is currently able to:

  • scan a Z-Wave network and report on connected devices,
  • write values to zwave nodes
  • monitor the network for changes,
  • heal nodes and/or the network
  • perform management tasks (add/remove nodes, replace failed nodes, manage their group associations etc)

Important notice

  • This library differs in that it links dynamically to an OpenZWave shared library by means of your system dynamic linker. This is in contrast to statically linking OpenZWave in the node.js addon. Thus you need to have OpenZWave fully installed on your system (both the compiled library AND the development headers) before trying to install this little baby. I know this diverges from the dominant npm paradigm, but with the shared lib approach:
    • compilation / installation is a lot faster and
    • OZW minor upgrades / bugfixes are way lot easier.

This also means that you need to be careful if you upgrade your OZW library: you might need to rebuild this addon, otherwise you'd might get api mismatch exceptions.

  • The Node.js C++ API has changed dramatically between 0.10.x and 0.12.x thus I'm using [the Native Abstractions for Node library] (https://github.com/nodejs/nan) to get this node addon to compile and run across all currently known versions.

Install

The module currently builds only on Linux (and Windows, but its untested). On Linux you will need to ensure the OpenZWave library and headers are installed first.

  • Manually compiling OpenZwave involves the usual dance of

    • downloading its source tarball
    • compiling it and installing on your system (make && sudo make install)
  • You could also install OpenZWave via a precompiled package that's suitable for your Linux distribution. Precompiled packages for various Linux flavours and architectures can be downloaded from the OpenZWave snapshots repository Be sure to install BOTH the binary (libopenzwave-x.y) AND the development package (libopenzwave-dev).

It should also compile in Windows, but you need to edit binding.gyp to set the paths for the OpenZWave library sources and libraries.

Whenever you have OpenZWave installed in your machine, then all you need to do is:

$ sudo npm install -g openzwave-shared

Development documentation

Basic API usage

See list of supported EVENTS

See example usage

License

The Open Z-Wave library that this module heavily relies upon is licensed under the GPLv3.

Everything else (all the bits that I have written) is under the vastly more sensible ISC license.

About

OpenZWave addon for Node.js (0.10.x/0.12.x) including all the missing management functions

License:Other


Languages

Language:C++ 87.5%Language:JavaScript 11.3%Language:Python 1.1%