Commence asynchronous laughter
February 19th, 2012I’ve been working on Roomie all day, fixing up things here and there. Here’s another silly demo. It uses the WebHook.SendScript and Computer.Speak commands to simulate a conversation between my laptop and my TV.
Silly. Here’s a screenshot of the Roomie web interface displaying the script. I did a lot of refactoring today, and I am so close to being able to un-XMLify RoomieScript and make it look like a real programming language.

Happy days! The new Roomie website is usable!
January 16th, 2012Available at http://roomiebot.com, the new Roomie website works! I use the website to turn lights and things on and off from my desktop computer, laptop, smartphone, and and old still-has-a-browser iPod touch.
I spend most of my time on the Devices page, which lists all of the devices in all home automation networks on my account. (Right now I only have a single Z-Wave network, but in theory I could have a potpourri of different networks that include other existing home automation frameworks, IR transceivers, and—I dunno—USB missile launchers?)
Anyway, the UI all works, and dynamically updates when a devices state changes. Cool!

More on Roomie’s website rewrite
December 11th, 2011As stated in my previous post about Roomie, I’ve been using a lot of brain juice to rewrite Roomie’s website. I wrote the original website in ASP.NET with Web Forms, which was pretty standard for the time. Although technology like ASP.NET MVC and the Entity Framework existed in some form, they weren’t even on my radar. So after some coding and hacking and pushing through unfamiliar problems, I eventually got a workable website. (This website, though not the final version, is pictured in this post.)
After merging all of Roomie’s desktop and web components into one self-aware Visual Studio solution, learning a ton of new technology, and a little trial and error, I now have the Roomie desktop client talking directly to the new website. Best of all, I can locally debug everything which means that I can get quicker feedback on code changes and (shrug?) even develop offline. Below I have a simple example pictured. A more impressive example is when I tell the Roomie desktop client to say something using text-to-speech, but obviously that would not convey over a screenshot.
Another novel (and silly) use for Roomie
October 11th, 2010I’ve been working (rather obsessively) on Roomie for the past week. In specific, I have rewritten the XML-based protocol that allows the desktop client to communicate with the web service. (Say “hi” to it here.) The new library (which I call WebCommunicator) is sooo much easier to use than my old one, but still has all the nifty (and important) encryption and anti-hacking features. I will eventually publish the protocol as an independent library. (Give me a bit to use it more and work out all the kinks.)
But enough technical talk. Lets get to serious business. Here I have a little RoomieScript that I wrote, just as a proof of concept.
<RoomieScript>
<ZWave.PowerOff DeviceName="Coffee Pot" />
<Core.Loop>
<ZWave.WaitForChange DeviceName="Coffee Pot" PollInterval="5 Seconds" />
<ZWave.PowerOff DeviceName="Coffee Pot" />
<RoomieBot.TextDavid Text="No coffee!" />
</Core.Loop>
</RoomieScript>
Roomie gets some CSS schooling
June 24th, 2010This week I have been furiously re-writing a few key elements of the Roomie website. Specifically, I scrapped the old device button controls, which you can see here. They were ok, but they were very rigid in use, offering only two different pictures to back the buttons. Zooming on mobile devices didn’t work so great either, since the images were PNGs, raster graphics. Now I have created a button framework entirely in CSS, HTML, and ASP.NET controls. Because of this, I can easily create new kinds of controls completely in code, and they even zoom cleanly as well. My original vision for this was to enable the user to create “virtual device controls”, which would display next to the regular device controls.
Next Page »
