How to add a wait/delay to programming block?

compuryan

Member
Is there a way to add a timed delay between commands in an automation block in PC Access? For instance when zone 3 tripped have HLC unit X turn on then wait 60 seconds and turn on HLC unit Y?
 
You can use a flag that executes with the first command
(Psuedo code)

Code:
WHEN Zone 3 NOT READY
THEN HLC Unit X ON
THEN Light Delay Flag ON FOR 60 Seconds
 
WHEN Light Delay Flag OFF
THEN HLC Unit Y ON
 
Back
Top