LinuxMCE Forums

General => Users => Topic started by: tvongaza on May 27, 2010, 10:52:33 pm

Title: Home.js? Node.js & Home Automation
Post by: tvongaza 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