Home automation via iPhone
When we had our house built a little over 10 years ago, we had a home automation system installed, which included a Lutron Homeworks lighting control system. This meant every light circuit in the house was wired to Lutron’s controller, which could be programmed with their custom Windows application.
The installation company distributed multi-button keypads throughout the house and programmed them to do interesting things, like turning on a dim path of lights from the bedroom to the kitchen, or the ever-popular “30 seconds from now, turn off all lights in the house” button we use when going out or going to bed. One requirement I had was that they leave me with a copy of the application so I could re-program the keypads myself.
I quickly grew dissatisfied with being limited to the keypads, so did some digging around and discovered the documentation for the RS-232 command set used to program the keypads. I hooked up the serial port of the Lutron controller to my Linux server in the basement and quickly whipped up some HTML+Javascript to show me the status of all the lights in the house and let me change the level of any of the lights. Since we’re a very laptop-enabled household, this meant no more getting up off the couch to adjust the lights! There’s a generally-accepted belief that programmers are lazy, since we often write programs to do things for us, rather than do the things ourselves.
Now that we’re also an iPhone-enabled household, I decided it was time to get with the times. After all, it’s been almost 10 years since my original web-based version. I looked into several UI frameworks for creating iPhone web apps, and decided to go with jQTouch. After one evening I was up and running with an iPhone web app that would let me control the lights The next evening I had the app updated to query the lighting system to display the status of the lights in the house. Touching one of the lights brings up the iPhone radial selector to change the brightness of that light. Touching done sends a command to the Linux server with the RS-232 connection to the Lutron controller.
With jQTouch, the HTML and CSS were very straightforward, and only a little bit of JavaScript glue was needed to bring in the interactivity.
Here’s a bit of the Haml for the main page of the web app:
[cc lang=”haml” line_numbers=”false”]
%body
#home
.toolbar
%h1 Lighting
%form
%h2 Main Floor
%ul.rounded.lights
%li
.title Kitchen
%select{:id => ‘z_01_04_01_08_03’}
%optgroup{:label => “Kitchen”}
%option{:value => ‘0’} 0%
%option{:value => ’20’} 20%
%option{:value => ’40’} 40%
%option{:value => ’60’} 60%
%option{:value => ’80’} 80%
%option{:value => ‘100’} 100%
%li
.title Breakfast
%select{:id => ‘z_01_04_01_08_04’}
%optgroup{:label => “Breakfast”}
%option{:value => ‘0’} 0%
[/cc]
And the HTML which is delivered to the iPhone after Haml conversion:
[cc lang=”html4strict” line_numbers=”false”]