Slashdot Mirror


A Protocol For Home Automation

jfruh writes "Marshall Rose, one of the creators of the SNMP protocol, has a beef with current home automation gadgets: it's very, very difficult to get them to talk to each other, and you often end up needing a pile of remote controls to operate them. To fix these problems, he's proposed the Thing System, which will serve as an intermediary on your home automation network. The Thing System aims to help integrate gadgets already on the market, which may help it take off."

12 of 116 comments (clear)

  1. Not my style to quote xkcd, but... by Anonymous Coward · · Score: 3, Insightful

    http://xkcd.com/927/

  2. obligatory xkcd by Anonymous Coward · · Score: 4, Funny
  3. Another home automation hub? by Midnight+Thunder · · Score: 4, Informative

    There are already a few home automation hubs (if I understand what he is suggesting correctly), such as Pytomation.

    The main challenge is as far as I can see there is yet a single protocol to bind them all, and even then it would be yet another protocol. For this reason, there have been attempts to create protocol exchanges (not sure the right term), that act as central system that can speak to different sensors and control systems using the specific protocols.

    Its not clear what he is offering that existing solutions fail at? It doesn't help that the site doesn't sum things up in one paragraph and instead requires us to parse the whole presentation before understanding what he really is proposing.

    --
    Jumpstart the tartan drive.
  4. Please don't re-invent the wheel. by Vesvvi · · Score: 4, Insightful

    Please don't re-invent the wheel unless you need to. By that, I mean to say that automation and interconnection of "gadgets" is a well-established field in industry and tech. For example, vehicle ECU and sensor systems, factory automation, and data acquisition systems are all now decades old, and we should have a really solid idea of how to do these things properly.

    Of course these existing systems aren't the same as what we're talking about here, with modules that span different physical link layers, protocols, etc. I just hope that we can take the best lessons from existing "gadget integration" attempts to make forward progress more successful and not just something doomed to rapid obsolescence.

    For some fun and background, have a look at the old HPIB/GPIB physical/protocol standard (http://en.wikipedia.org/wiki/IEEE-488), which was used in many different pieces of scientific equipment. When that somewhat died out it was replaced by CAN (http://www.team-cag.com/support/theory/chroma/hplc_bas_at/system/cableConnections.html). Agilent uses that for their HPLCs (maybe test equipment, too?), and Waters uses the same physical link, but with a different protocol? Other vendors still work with contact-closure, and USB is becoming more popular, but that pushes so much onto the host computer and really enforces lock-in.

    I will personally be watching this closely from the perspective of someone who operates a lot of data-acquisition equipment. Could this be the foundation for better interop between different vendors at the more commercial/research level, in addition to the consumer? I hope so.

  5. I Fully Support This by Atticka · · Score: 3, Informative

    I've been attempting to connect, network and control as much of my house as possible with little success. Too many companies are trying (and failing) to offer up an integrated solution, none have the ability to truly integrated across the board.

    Key systems that need this:
    HVAC - Nest is doing great things for automation and remote control, limited reach however
    Lighting - a bunch of half baked solutions out there, each with their own app and control interface
    Security - sound, video, motion detection, garage door control, etc...
    Appliances - remote control certain appliances, pre-heat your stove, notification when the dryer is done, etc...
    Power Monitoring - Semi decent solution out there, however needs better apps and integration
    Audio\Video - Remote control

    If all of these systems used a common protocol we can focus on developing great apps and home automation, as long as manufacturer dick around with their own setup we'll never move forward.

    --
    No sig here...
    1. Re:I Fully Support This by Anrego · · Score: 4, Insightful

      I was really interested in home automation at one point. Had an x10 setup using an ocelot controller (x10 is a horrible, horrible system by the way and I wouldn't recommend it to an enemy).

      The novelty factor wore off eventually (and my frustration with x10 grew) and I gave up on it. Beyond automated lighting (which while cool, isn't really all that useful.. a light switch really is "good enough"), temperature (already handled quite well by smart thermostats), and appliances which handle their own automation (coffee pot), what else is there that provides any real benefit beyond geek appeal.

      And with that limited set of actual useful use cases, how much benefit is there in centralizing it, or adding voice control.

      I suspect all this is why despite having the tech to do it for quite some time, home automation hasn't really taken off.

  6. He needs to learn more.... by Lumpy · · Score: 3, Informative

    "Marshall Rose, one of the creators of the SNMP protocol, has a beef with current home automation gadgets: it's very, very difficult to get them to talk to each other, and you often end up needing a pile of remote controls to operate them."

    I have 1 remote to control every gadget in the house including sonos. It's called Crestron, but AMX can do it as well (The toy stuff called Control 4 can not)
    He really needs to learn more about integration because there have been solutions out there for decades.

    --
    Do not look at laser with remaining good eye.
  7. won't work by callmetheraven · · Score: 5, Funny

    Everything in the fridge is melted because I couldn't find the right MIB.

    --
    You can have my SIG when you pry it from my cold, dead hands.
  8. SNMP is a model for how not to do things. by Above · · Score: 5, Informative

    This is someone who was ok with ASN.1, OID's, and "walking" tables that had no business in being walked, over an unreliable UDP protocol that initially had effectively zero security.

    Someone stop him from developing a home automation protocol before his being "first" relegates that industry to 30 years of pain and suffering.

  9. It's Intentional by Jaime2 · · Score: 3, Interesting

    Home automation gadgets are incompatible because the vendors want it that way. Selling you a $50 light bulb is the "gateway drug" to selling you a $20 a month service to manage it from your smart phone. If the protocol is proprietary, there is no competition. A/V components have been this way for so long that the world has just accepted that IR is the only way to talk to them.

    It will change when a system gets so much market share that the component vendors see more value in staying a component vendor than they see in establishing themselves as a system vendor. At that point the problem is that the system vendor will want to protect their market by locking up their protocol.

  10. Did he learn from SNMP? by Luke_22 · · Score: 3, Interesting

    I had a quick look at the website, and can't find any low-level detail, just a lot of pictures...

    That said, he seems to use HTTPS/SSH and certificate-based access.
    It is useless to sign the certificates, since we are in a lan, not on the internet, and I doubt your house devices will have a full dns name...

    I'm more interested in the packet structure and to the data format, as it always gives more insight on the protocol that big, colored images...
    Its said to use websockets, but I doubt that will be the case in SSH-based access.
    There seems to be the option to use UDP multicast for the sensors..

    The HTTP traffic is exchanged via websockets and json... This is nice, since the programmers can use all the http server/client and json libraries they want, and it usually is fairly simple.... BUT we are talking about home automation, arduino boards and in general "things" with very little computational power/memory etc...
    I really don't understand why we want all on HTTP, the efficiency is very low and now you require an HTTP server and client to communicate with something just to flip a switch...

    Maybe if SNMP was done the right way, without OIDs and security from the start we would not need this, but I digress...

    I don't like the fact that there seem to be a lot of new definitions... apprentices, stewards, and ... "things"... couldn't dumb it down more even if he tried -.-''

    But the nice thing is that it seems to be able to include 3rd-party modules and protocols fairly easily... Which IMHO is not a small thing and can in fact help this protocol a lot.
    And whatever he does, he can't do as badly as DPWS. If he manages to make it general enough we might even put an end to the horror that is DPWS and WS-* standards....

    --
    "I was gratified to be able to answer promptly, and I did. I said I didn't know." -- Mark Twain
  11. already done? by datapharmer · · Score: 3

    Isn't this what zigbee and 802.15.4 was designed for?

    --
    Get a web developer