/Hue

Philips Hue Light Controller written in NodeJS

Primary LanguageJavaScript

Hue.js

A Node.js library for controlling Philips Hue lights.

🚧 Under Construction 🚧

This library is not yet complete!

Usage

var lamp = new Light(1);
lamp.on()
.then(function(){
    lamp.delay(100);
    return lamp.hue(12000);
})

var kitchen = new LightGroup(1,2);
lamp.off();