Coming home at night and not waking the family

broconne

Active Member
This seems like a fairly common scenario, so I imagine there is a simple fix, but playing with the configs I have not found it.

I would like it such that my wife could arm the alarm at night (using night delay) and I could come home later and disarm the system without our keypad beeping in the bedroom. Is there any setting or combination of settings that would let me accomplish that?
 
This seems like a fairly common scenario, so I imagine there is a simple fix, but playing with the configs I have not found it.

I would like it such that my wife could arm the alarm at night (using night delay) and I could come home later and disarm the system without our keypad beeping in the bedroom. Is there any setting or combination of settings that would let me accomplish that?


You can either permanently disable the beep at the console through the setup menu, or do it programatically based on time, arming at night or other triggers.

I use timed beeper off/on and have the beeper turn back on if there is an alarm. The "Touchpad Sounder" line is a Button to enable/disable the 5.7e sounders.

Code:
110.	TIMED Bedtime MTWTFSS
			THEN All Consoles DISABLE BEEPS
			THEN RUN Touchpad Sounder OFF

111.	WHEN ANY ALARM
 	TIMED Wakeup MTWTFSS
			THEN All Consoles ENABLE BEEPS
			THEN RUN Touchpad Sounder ON
 
You can either permanently disable the beep at the console through the setup menu, or do it programatically based on time, arming at night or other triggers.

I use timed beeper off/on and have the beeper turn back on if there is an alarm. The "Touchpad Sounder" line is a Button to enable/disable the 5.7e sounders.

Code:
110.	TIMED Bedtime MTWTFSS
			THEN All Consoles DISABLE BEEPS
			THEN RUN Touchpad Sounder OFF

111.	WHEN ANY ALARM
 	TIMED Wakeup MTWTFSS
			THEN All Consoles ENABLE BEEPS
			THEN RUN Touchpad Sounder ON



Thanks! That was exactly the solution wanted. I just went with disabling beeps on when set to night delay. Perfect.


Slowly, but surely I seem to be copying your exact HAI programming setup :-)


 
Back
Top