@CMRancho,
I reckon you can do it. I've listed the key data below, from that and the code of the Onkyo:
http://code.mios.com/trac/mios_onkyo-media-control/browser/trunkyou should be able to get up and running with basic On/Off functionality, and a bunch more if you want to venture further.
Start with this post on RemoteCentral:
http://www.remotecentral.com/cgi-bin/forums/viewpost.cgi?372960you'll get most of the key commands that need to be sent. If you want to take the existing plugin, and open it in a text editor, then you can either do this with a [Vera]
<protocol> element of "
raw" and then send the commands like:
For a line in their Forum page like:
serialstring "Power ON" "\x0207A1D\x03"
it becomes the following, inside the corresponding
<action> block's
<run> element in Vera:
<name>On</name>
<run>
-- Power On
luup.io.write("\00207A1D\003")
</run>...effectively replacing each call to "
sendCommand(...)" that's there now.
or you can change the protocol element from
raw to
stxetx (same as what the
Panasonic TV uses) and then use simplified calls like:
<name>On</name>
<run>
-- Power On
luup.io.write("07A1D")
</run>If you run into trouble, attach the conversion you've done "so far" and I'm sure folks can help out.