Are there any other presets avail?

ZoeReef

New member
I would love to be able to setup a water change setting, similar to the feed cycle setting.

Are there any commands avail so that I could activate a water change cycle
(turns off pumps, water topoff, skimmer etc.
 
There is only the one feed cycle currently in the AquaController. Others have used the external inputs wired to push button switches to initiate other events. You'd use statements like this:

If Time > 00:00 Then Switch1 OFF
If Switch1 CLOSED Then SW1 ON
Max Change 020 M Then SW1 ON

In the above SW1 would be on for 20 minutes after you pushed the external button.

Curt
 
Thanks Curt. So then, I could add

If SW1 ON Then CLR OFF
If SW1 ON Then LT1 OFF
etc...

Did I get that right?
 
Almost, the syntax is:

If Tmr SW1 = ON Then CLR OFF
If Tmr SW1 = ON Then LT1 OFF

Curt
 
Syntax... love it :D.... Reminds me of my younger years learning Fortran on punch cards (yes IBM punch cards)... Ah yes, but I was but a young whipper-snapper knee-high to a grasshopper.
 
Back
Top