Garage door interface?

Hi All!

SUCCESS FINALLY! I am using a DSC 5010 Power 832…and was able to trigger PGM1.

Ok, so the 071 command, which is a keypress command was not working for me. This is where the keypress is *71 (which works without passcode from my keypads).
The IT100 guide calls the ‘virtual keypress’ command being enabled for the 07X commands to work…I am still looking for that in the Power 832 manuals as to what program area that is.

As with many things there is another way! You can use the 020 command (Command Output Control Command per the IT100 guide).

I was so happy to get this working!

This did not work for me:

luup.call_action(“urn:micasaverde-com:serviceId:DSCAlarmPanel1”,
“SendCommand”,
{Command = “071”, Data=“1*71”}, )

This did work:

luup.call_action(“urn:micasaverde-com:serviceId:DSCAlarmPanel1”,
“SendCommand”,
{Command = “020”, Data=“11”}, )

Best of luck to all!

Kevin