Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.32 KB

README.md

File metadata and controls

32 lines (21 loc) · 1.32 KB

Hue Steamer

This is a web application you run locally to manipulate your Philips Hue lights.

Screenshot of lights tab

Screenshot of groups tab

If you just want a JavaScript library for converting hex and RGB color codes to the Philips Hue CIE 1931 color space, or vice versa, look at converter.js. See also its Python implementation or another JavaScript implementation.

How to Run the Web App

npm install
npm start

localhost:3000 should open in your browser.

How to Run the Script (Deprecated)

npm install
node app.js -b YOUR_HUE_BRIDGE_IP -u YOUR_HUE_USER

Thanks

  • proto.io for the snazzy on/off toggle switches.
  • node-hue-api for the API to interact with Philips Hue lights.
  • hue-python-rgb-converter for the basis for the color converting JavaScript to go between the Hue color space and hex.