Author Topic: Home.js? Node.js & Home Automation  (Read 2771 times)

tvongaza

  • First post!
  • Posts: 1
    • View Profile
Home.js? Node.js & Home Automation
« on: May 27, 2010, 10:52:33 pm »
Starting a new project to merge together Node.js and Home Automation most likely using LinuxMCE as the driver behind it all like RHouse has done.  If anyone is interested in helping out, feel free to join the discussion.

The eventual goal it to control your house with DOM using regular CSS and JS.

Imagine the following with jQuery:
// When motion is detected in the living room, turn all lights to 75% intensity
$(".living-room").delegate(".motion-sensor", "activate", function(){
  $(".living-room .lights").css("intensity", 0.75);
});

http://groups.google.com/group/nodejs/browse_thread/thread/ee11c077e5f89f7a
http://groups.google.com/group/homejs

Cheers,
Tys