0.0.1 • Published 10 years ago

max-control v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

max-control

Control the ELV Max! heating system with node.js

Usage

var MaxCube = require('./index');
var mc = new MaxCube('192.168.1.110', 62910);

mc.on('connected', function () {
  console.log('ready');

  setTimeout(function () {
    console.log('send');
    mc.setTemperature('0087ae', 'manual', 19);
  }, 5000);
});

mc.on('update', function (data) {
  console.log('got update');
  console.log(data);
});