Defer Statements

txfatcat

New member
Ok I have everything rocking and just love that it does all the work for me. How ever I have a 3 month old kiddo and would like to defer all the statements under "base_warn" the 1st audible warning so that I dont get woken up with a falsey alarm in the middle of the AM. Its trying enough at those hours and sleep is a precious commodity.

Just want to defer the whole thing for lets say 30 secs. or so but not sure where to put the single statement or if (per the "un-official manual") I need to put a "defer" statement after each Bit

My alarm statement is as follows:

Set OFF
If Power EB8_3 Off 000 Then ON
If Outlet TempCritical = ON Then ON
If Outlet Sump_Low = ON Then ON
If Outlet Sump_High = ON Then ON
If Outlet Skim_Collect = ON Then ON
If Outlet PH_Critical = ON Then ON
If Outlet PH_High = ON Then ON
If Outlet PH_Low = ON Then ON
If Outlet On2Long = ON Then ON




thanks in advance for any insight or solution to this
 
You can have a Max of 2 Defer statements; 1 to control ON and 1 to control Off, add them at the end (though I'm not certain that it matters to be honest).

Defer 000:30 Then ON
 
Back
Top