Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: any X-10 interface code / libraries?

From: jeff:rebol at: 24-Oct-2001 19:51

Howdy, Doug:
> Do any of you know of any interface/driver code or Rebol-compatible > libraries that provide X-10 control capabilities, e.g., for home > automation control components?
For my home X-10 uses, I took the lazy route: I use a linux console app called 'br' which I CALL from my scripts with REBOL/Command (call "br a5 on"). The 'br' source code is pretty simple and could be turned into a shared library, if need be, or serve as a model for doing it in REBOL via the serial:// port port. Then it'd be neat if someone made an x-10 protocol handler: close insert open X-10://a5 off -jeff