If anyone is interested I was able to do this with LMCE's "original" On and Off commands the following way:
- first I setup a custom device template that will use Ruby code, using Thom's very usefull information in this thread:
http://forum.linuxmce.org/index.php?topic=7024.0- the I use for example the following code for Off:
system ("/usr/pluto/bin/MessageSend 192.168.78.1 0 363 1 191 9 \"0000 0070 0000 003A 0080 0041 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0031 0010 0030 0010 0ABB\"")
system ("sleep 1")
system ("/usr/pluto/bin/MessageSend 192.168.78.1 0 363 1 191 9 \"0000 0070 0000 003A 0080 0041 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0030 0010 0030 0010 0010 0010 0010 0010 0030 0010 0010 0010 0030 0010 0010 0010 0030 0010 0030 0010 0031 0010 0030 0010 0ABB\"")
Where 192.168.78.1 is the Ip of my core (localhost will not work since the command is mostly executed on MDs), 363 is the device id for my USBUIRT IR Transmitter, and 191 means the "off" command. The data at the end is in Pronto format.
It's not completely kosher since the ID for my USB Uirt is hard coded, and that defeats the purpose of LMCE's message routing intelligence and LMCE templates, but it works.
Jean