Comfort Automation/ Security System Forums

Full Version: Internal Door
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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

I like the second example but won\'t it prevent the alarm from setting as there door will be open most of the time?
You are right. If it is open most of the time, then that example is not suitable