Hi,
I’m using the Auto Control Module to control power.
I have a calculated channel CnlLimit whose script returns a Yes or No value.
I added a Channel Data Trigger, which works fine.
However, I need a backup action: after the trigger fires and a time interval elapses (e.g., 3 minutes), it must check whether the power is below the minimum threshold, and if not, shut it down hard using a switch.
How can I implement the following algorithm as simply as possible:
if CnlLimit > 0 CnlPow = 0
Delay 180s
if CnlPow > 10 CnlSwitch1 = 0
?