Odd behavior of "ANY SOUNDER" condition

cornutt

Active Member
I have the following automation code. When we pull into the garage, it lets us know if the alarm is armed:

Code:
4.	WHEN Garage door Lexus side NOT READY
	WHEN Garage door Altima side NOT READY
		AND IF NOT OFF
		AND IF AREA 1 ANY SOUNDER NOT ACTIVATED
			THEN Garage alarm armed indicator ON FOR 5 MINUTES
5.	WHEN Garage door Lexus side NOT READY
	WHEN Garage door Altima side NOT READY
		AND IF AREA 1 ANY SOUNDER ACTIVATED
			THEN Garage alarm armed indicator BLINK (0.50 Sec) FOR 5 MINUTES
6.	WHEN OFF
			THEN Garage alarm armed indicator OFF

Both "Garage door" zones are defined as X4 ENTRY DELAY. "Garage alarm armed indicator" is a red light bulb screwed into a plug-in socket, which is plugged into a UPB lamp module.

When one of us arrives home and the alarm is armed, as soon as the garage door opens, block 4 turns on the red light. That lets us know that the alarm is armed and we need to get to the console inside the house and disarm it. If the red light doesn't come on, the alarm is not on; no hurry. However, I've noticed something. Occasionally, my wife and I both arrive home at the same time. When the first garage door opens, block 4 turns on the red light. However, when the second garage door is opened during the entry delay, the "AREA 1 ANY SOUNDER ACTIVATED" condition in block 5 becomes true, and the light starts to flash. The intent of block 5 is to let us know when we enter if the alarm has been activated. (We do not have an external siren or strobe.)

Am I misunderstanding the meaning of "ANY SOUNDER ACTIVATED"? Or is this a firmware bug? The two garage door zones are connected to an expansion enclosure, if that makes any difference.
 
You're opening one door and making one zone not ready, no alarm is going so it just turns on the light, but it also trips the alarm by opening the zone.
So when the second zone opens, the alarm is already tripped, the sounder is tripped, console beeping, so it flashes.

If you want to key off the actual siren use the status of the output.
IF OUTPUT INDOOR SIREN ON.
 
Back
Top