Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 367 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 367 Bytes

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();