0.0.5 • Published 7 years ago

node-vantage v0.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

node-vantage

node-vantage is a dead simple Davis Vantage driver for Node.js.

Installation

npm install node-vantage

How to use

var Driver = require("node-vantage");
var vantage = new Driver();

vantage.on("connect", function(error) {
	if (!error) {
        console.log("Connected to the Vantage");
        vantage.on("loop", function(loop) {
            console.log(loop);
        });
	} else {
        console.log("Failed connecting to the Vantage: " + error);
	}
});

TODO

  • Custom settings
  • Multiple unit systems
  • Push commands (reset, alarms...)
0.0.5

7 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago