Comfort Automation/ Security System Forums
Internal Door - Printable Version

+- Comfort Automation/ Security System Forums (https://www.comfortforums.com)
+-- Forum: Products (https://www.comfortforums.com/forum-3.html)
+--- Forum: Questions on Using Comfort (https://www.comfortforums.com/forum-159.html)
+--- Thread: Internal Door (/thread-1388.html)



- Warby - 03-04-2009

I have a job that has a door contact on an internal door between the garage and the house. The contact only wants to be active when set to vacation mode. there is also a keypad on one side of the door.
If I set the zone type to SwitchNC and use the following response will it work?

If SecurityMode = VacationMode Then
If Input DC3_Coats <> 0 Then
Start EntryDelay
End If
End If

Thanks


- ident - 03-05-2009

The Zone Response should be
If SecurityMode = VacationMode Then
Start EntryDelay
End If

There is no need to test for InputDC3_coats assuming that this is the door itself


You can also make it a Entry Door ZoneType and do this

If SecurityMode < VacationMode Then
Skip Alarm
End If




- Warby - 03-05-2009

I like the second example but won\'t it prevent the alarm from setting as there door will be open most of the time?


- admin - 03-05-2009

You are right. If it is open most of the time, then that example is not suitable