Tuesday, October 1, 2013

Raspberry Pi Home Controller; In service and working

I finally made the plunge yesterday and brought my Rasberry Pi online and disconnected my old controller.  The Pi is now doing all the functions of the controller and presenting a web interface for monitoring control.  It was quite the learning experience.

In this post <link> I described the architecture I chose for the new device; I extended that to handle scheduled events such as turning the pool light on for an hour at 8PM to attract bats.  Bats are fun to watch when they swoop over the pool catching bugs.  Eventually I'll have a number of events because I intend to hook my drip watering system up to the network as well as a number of lights around the house.

I also added the three cloud services I update data to: Pachube (legacy Xively), the new Xively <link>, emoncms <link>, and ThingSpeak <link>.  They fit right in the architecture without changing much at all.  Over time I expect to extend it a bit more and have a tablet based application that can control the house like a remote control.  The hooks are all there to add things over time.

Wow, was there a lot to think about.  I had to make the processes restart after a power failure, which meant taking on the init process of linux.  I upgraded the init process to use upstart.  This piece of code is much friendlier than the older init process, but was a scary piece of work.  See, if I screwed that one up I would have to start all over because it would have made my little Pi fail to boot up.  So, I backed up the operating system image before I started and several times during the process.  Fortunately, I did it right and the system came right up and worked.  Now, all the processes start on boot up and are restarted whenever they die.  This makes it cool because I can make a few changes, kill the old process, and the new one takes off and does whatever job I added to it.

I also added an update process for dyndns.  When you get a controller like this working, it just makes sense to put it on the internet so it can be monitored from anywhere.  Services like dyndns make this possible for us regular folk that have normal consumer DSL service.  Our ip addresses change from time to time and we have to keep the internet name servers up to date.  To do this, I had to take on the mysteries of the cron process.  What a pain in the behind that was.  No, the documentation out there is correct, but it's so easy to make a mistake, and so hard to find it that I spent almost a day messing around with that piece alone.

But I got it working.  Here's a block diagram of the process architecture as it exists right this minute:


Notice how the cloud update services Xively, ThingSpeak, and emoncms just read from the database to update over the internet.  Using this technique, I can try out other cloud services without making any changes at all to the ones that already exist.  The event handler communicates with the House Monitor directly, it doesn't need to mess with any other processes to do its job.  The Web Server has interfaces to the controls and database to keep the internet away.  I'm trying to keep my neighbors from playing with my garage doors.

It's strange to imagine that a little arduino 2560 did most of this stuff for a couple of years.  When you think about it though, the arduino was written in c++ and hand tailored to handle stuff over a long period of development.  I only added the things I knew it could handle.  Now, I can add capabilities that the arduino just couldn't do, which also means that I can off load some of the work that is handled automatically by other network devices if I need to in the future.

One of the great things I haven't experimented with yet is the web interface.  I can easily edit new pages off the one I have now to show graphs, pictures, etc.  This could get to be fun and offer a platform for other folks to get ideas from (that I would then steal and put in mine).

Later today I hope to massively update my page on the House Controller (see the tabs at the top of the page) so that I can share the code and ideas that are currently running.  It'll be a bit bittersweet though, since I put so much time into the care and feeding of the old controller.  But, I'm sure I'll find a use for the parts in some future expansion of the system.

You can see the web page here <link> be kind though, it's a Raspberry Pi, not a giant web server.

7 comments:

  1. It looks really nice! Good job!
    You've gone a long way from "Hello World!", and I hope that I can follow along some more.
    Thank You! for letting us follow this far!

    ReplyDelete
  2. Looks very nice.
    Hope to be able to share soon mine.

    ReplyDelete
  3. Thanks folks. I'm always very interested in other people's ideas about controlling their home. So, if you have ideas, let me know.

    ReplyDelete
  4. Thanks to Dave's excellent examples and help, I have mine up and running now. It's still not to the level of his but I'm adding to it every day. If anyone want's to have a look, it's at http://myeager.no-ip.biz and at the moment is really nothing more than a stripped down version of Dave's page. I've been able to take enough work off of the Arduino that I can now add other features to it and further control things in it's vicinity.

    ReplyDelete
    Replies
    1. Congratulations. It looks really good.

      Delete
    2. Hi Dave:

      Can you post a copy of your Data Provider PHP. The copy I found only pulls the thermostats data and I'm working on getting your Web monitor page working.
      Lots of learning being done here.
      Thank you once again for all you've done to increase my knowledge base on Home Automation and as someone said "Open Source ROCKS!!"
      Glenn.

      Delete
  5. stampeder, certainly. I added it to the RPi Controller page (see tab above). I was going to get to it eventually; really I was.

    ReplyDelete