Skip to content

Instantly share code, notes, and snippets.

View 2fast2fourier's full-sized avatar

Matthew Shepard 2fast2fourier

  • Credera
  • Denver, CO
View GitHub Profile
var Insteon = require('home-controller').Insteon;
gateway = new Insteon();
var ip = "x.x.x.x";
gateway.connect(ip, 9761, function(info){
console.log("CONNECTED", ip);
gateway.light('AABBCC').turnOn().then(function(info){
console.log("LIGHT ON", info);
});