Newbie Code Q: Using Defer and two virtual outlets

  • Thread starter Thread starter mike550
  • Start date Start date
  • Tagged users None

mike550

Valuable Member
View Badges
Joined
Oct 13, 2019
Messages
2,268
Reaction score
2,380
Location
Chicago
Rating - 0%
0   0   0
Hello Apex gurus,

I’m trying to get my head around Apex programming and using the Defer statement. Right now, I’ve created (or shamelessly copied from @SuncrestReef — thank you) the following code for my return pump:

If Output Maintenance = ON then OFF
Defer 000:05 Then OFF


The use of the Defer statement is so that my ATO (Tunze) turns off before the pump so I don’t trip the ATO alarm as the sump fills with water. But here is my question, if I create another virtual outlet “Emergency” and want it to turn off the pump it would look like this.

If Output Maintenance = ON then OFF
Defer 000:05 Then OFF
If Output Emergency = ON then OFF


If I understand the Apex DEFER code correctly, it will be used regardless of where it lines up in the code. So basically even if Emergency = ON the pump will still wait 5 seconds before turning off. Is that correct? Is there a simple way around this?

Thanks in advance!
 
Yes, Defer is applied after all conditions have been evaluated. To get around this for your particular situation, create an additional virtual output for the return pump where you can place the Defer delay rather than on the pump itself:

[Pump_Maint] — virtual output
Set OFF
If Output Maintenance = ON Then ON
Defer 000:05 Then ON

[Pump]
Fallback ON
Set ON
If Output Pump_Maint = ON Then OFF
If Output Emergency = ON Then OFF
 
Yes, Defer is applied after all conditions have been evaluated. To get around this for your particular situation, create an additional virtual output for the return pump where you can place the Defer delay rather than on the pump itself:

[Pump_Maint] — virtual output
Set OFF
If Output Maintenance = ON Then ON
Defer 000:05 Then ON

[Pump]
Fallback ON
Set ON
If Output Pump_Maint = ON Then OFF
If Output Emergency = ON Then OFF
Thanks for this. So basically like a subroutine for the Defer code. Much appreciated.
 

IF YOU HAD TO TAKE A REEFING EXAM, WOULD YOU PASS?

  • Yes!

    Votes: 32 45.7%
  • Not yet, but I have one that I want to buy in mind!

    Votes: 9 12.9%
  • No.

    Votes: 26 37.1%
  • Other (please explain).

    Votes: 3 4.3%

New Posts

Back
Top