ebr162 Posted May 1, 2013 Posted May 1, 2013 I have set button G to non toggle off to close my garage door. When I press it, the LED flashes 2 times but the program will not trigger. I have cleared the log pressed the G and looked at the log. When I open the log I get a window "Response Failed" and the the log comes up and has no items in it. Here is the program. As I am only in to this for a week I would appreciate any help If Status ‘Key_Pad_G’ is On Then $Tester_Vairable =1 Set ‘1F.C3.77-Relay_Garage_Door’ On Wait 2 seconds Set ‘1F.C3.77-Relay_Garage_Door’ Off Else - No Actions – (To add one, press ‘Action’) Thanks
LeeG Posted May 1, 2013 Posted May 1, 2013 A KeypadLinc button defined for non-toggle Off mode will never have an On Status from pressing the button. In fact using 'If Status" for a non-toggle mode button is not appropriate as the button always presents On or Off Status but does not change status which is a requirement for 'If Status' to trigger a Program. Change the Program to If Control 'Key_Pad_G' is switched Off This statement looks for a specific command to be issued by the device which is what happens each time the button is pressed in non-toggle Off mode. Also it is better to put the I/O Linc into one of the Momentary modes and set the timeout interval to 2 seconds. That way the I/O Linc Relay is assured of being On only for two seconds. The I/O Linc Relay is sent an On command to turn it On. The I/O Linc Relay will turn Off automatically after 2 seconds.
Recommended Posts