Mochad double send?

for the X11 Mochad binding is there any way to double/repeat the command send to make sure it gets recieved? double on and double off commands?

You could use a rule:

rule "Garage"
when
Item Garage received command
then
QR1.sendCommand(ON)
Thread::sleep(300)
QR1.sendCommand(OFF)
// Sure it is off? Wait...
Thread::sleep(300)
// ...and send again...
QR1.sendCommand(OFF)
end

Just change the ON and OFF to your needs … and maybe you need two rules, one for ON (… received command ON) and one for OFF (… received command OFF)

Cool Thanks