COR Pump turn Off skimmer?

musaabi

Well-Known Member
View Badges
Joined
Feb 11, 2021
Messages
959
Reaction score
1,283
Location
Long Beach
Rating - 100%
1   0   0
Can I program my skimmer to turn off if my cor pump is under a certain value? I have all my feed modes turning off my skimmer appropriately but the idea is a fail safe in case someone hits the speed controller and slows down the flow, I don’t want the skimmer overflowing. I tried programming it into the skimmer using “if output returnpump < 65 than off” “if output returnpump less 65 than off” if output returnpump [<] 65 than off” and then tried on cor “if < 65 then output skimmer off” and the system rejects everything. Any ideas?
 

SuncrestReef

That Apex guy
View Badges
Joined
Jan 18, 2018
Messages
4,214
Reaction score
9,216
Location
Oregon
Rating - 0%
0   0   0
The correct syntax is:

If Output returnpump Percent < 65 Then OFF

See my Apex Command Reference article for the exact syntax of every available Apex command:
 
OP
OP
musaabi

musaabi

Well-Known Member
View Badges
Joined
Feb 11, 2021
Messages
959
Reaction score
1,283
Location
Long Beach
Rating - 100%
1   0   0
The correct syntax is:

If Output returnpump Percent < 65 Then OFF

See my Apex Command Reference article for the exact syntax of every available Apex command:
That worked! Thanks! If I add a defer 5 min statement would that mean the system would wait 5 min AFTER the cor returns to 65 to turn back on?
 

SuncrestReef

That Apex guy
View Badges
Joined
Jan 18, 2018
Messages
4,214
Reaction score
9,216
Location
Oregon
Rating - 0%
0   0   0
That worked! Thanks! If I add a defer 5 min statement would that mean the system would wait 5 min AFTER the cor returns to 65 to turn back on?
Yes, if you use:

Defer 005:00 Then ON

This would cause the skimmer to remain off for 5 additional minutes after all the conditions (not just the COR) that turn it off have been cleared. See my tutorial on Apex Timers for more details on Defer:
 

Algae invading algae: Have you had unwanted algae in your good macroalgae?

  • I regularly have unwanted algae in my macroalgae.

    Votes: 27 33.8%
  • I occasionally have unwanted algae in my macroalgae.

    Votes: 19 23.8%
  • I rarely have unwanted algae in my macroalgae.

    Votes: 7 8.8%
  • I never have unwanted algae in my macroalgae.

    Votes: 5 6.3%
  • I don’t have macroalgae.

    Votes: 20 25.0%
  • Other.

    Votes: 2 2.5%
Back
Top