![]() |
|
Logic after Night Mode to check the garage door - Printable Version +- Comfort Automation/ Security System Forums (https://www.comfortforums.com) +-- Forum: Support (https://www.comfortforums.com/forum-2.html) +--- Forum: Questions on Programming Comfort (https://www.comfortforums.com/forum-83.html) +--- Thread: Logic after Night Mode to check the garage door (/thread-2707.html) |
- Tan121 - 01-24-2012 Hello Does someone have time and intrest to make an example of a logic: After pressing KNX button switch sends value 0 and Comfort goes to Night Mode. Now Comfort should check if garage door (Zone 5) is open. If it\'s open, then send groupaddress 1/1/1 with value 1 to KNX network. I tried to do it on my own, but didnt work. Night mode goes ON in 3 seconds. But garage door closes with 10 seconds. Could that be a problem? - TheMax74 - 01-25-2012 Yes. You need to use \"Do response after time expire\" function in the response window. You can then start a second response, after 20 seconds, that performs the garage check. Should sounds like this. \"Do GarageCheck after 20 seconds using timer tmrGarageCheck\" - ident - 01-26-2012 To elaborate on TheMax74 suggestion, Events > Misc Events > Night Mode Response will trigger a Response when system is armed to Night mode \"Do GarageCheck after 10 seconds using timer tmrGarageCheck\" Timer tmrGarageCheck is any timer 10 seconds should be enough for the garage door to close after Night Mode has been set, if not increase the time GarageCheck should check for the door open, ie If Zone GarageDoor <>0 then Send KNX 1/1/1 ON Else Send KNX 1/1/1 OFF Endif I have added sending 1/1/1 OFF if the garage door is closed so that the group can be turned off |