Apex Programming - Secondary ATO

BrokenReefer

Well-Known Member
View Badges
Joined
Jan 14, 2022
Messages
523
Reaction score
1,390
Location
Naperville
Rating - 0%
0   0   0
evening all: probably should have thought of this further in advance of my vacation but here we are. The family leaves for a week long vacation tomorrow and I just got the idea to install a backup ATO so my top off doesn’t run dry and leave my tank suffering while I’m away. Mini vacation last weekend had my sump running in fumes by the time I got home 3 days later.

So my question is kinda simple: programming wise, would I be better served to create a virtual output that triggers the back up ATO or just program it as normal and use the LLS as the guide post to turn on and off?

Currently I have it programmed as follows:

Code:
Fallback OFF
Set OFF
If ATOLVL > 5.0 Then OFF
If ATOLVL < 10.5 Then OFF
When On > 005:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 060:00 Then OFF

Which is really just the stock code snippet and adjusted to use the LLS in the ATO reservoir (which was also just installed today) as the low level on and high level off. This does leave me a slight cushion for mechanical float to engage and shut off water flow… which I did test a few times this evening.

Certainly don’t need any floods while I’m away either.

Thanks for any and all input!
 

blaxsun

10K Club member
View Badges
Joined
Dec 15, 2020
Messages
26,702
Reaction score
29,853
Location
The Abyss
Rating - 0%
0   0   0
This is what I have for mine (I'm using the Neptune ATK kit, which I assume you are as well). ATK_RO is my LLS.

Fallback OFF
Set OFF
If FeedD 000 Then OFF
If ATK_RO < 1.0 Then OFF
If LEAK CLOSED Then OFF
If ATK_LO OPEN Then ON
If ATK_HI CLOSED Then OFF
When On > 010:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 030:00 Then OFF

I have an external RO reservoir with the Neptune PMUP that feeds to a gravity-fed internal Ro reservoir (where the Neptune optical sensors and float is). Full details can be found in the link on page 1 of my build thread.
 
OP
OP
BrokenReefer

BrokenReefer

Well-Known Member
View Badges
Joined
Jan 14, 2022
Messages
523
Reaction score
1,390
Location
Naperville
Rating - 0%
0   0   0
One thing I’ve noticed is that the command runs any time I move the switch to AUTO. The low level command doesn’t seem to trigger the “on” it always seems to be in constant state of “on”.

Additionally, I don’t want the two optical sensors triggering any run commands, can I code those “out” and then also the high level optical sensor is registering a constant closed.

I just updated the code as follows:

Code:
Fallback OFF
Set OFF
If ATOLVL > 5.0 Then ON
If Swx7_2 CLOSED Then OFF
When On > 010:00 Then OFF
Defer 000:10 Then ON
Defer 000:04 Then OFF
Min Time 060:00 Then OFF
 

n2585722

2500 Club Member
View Badges
Joined
Jun 17, 2013
Messages
4,814
Reaction score
2,775
Location
Cedar Park, Tx
Rating - 0%
0   0   0
Wow, it takes several weeks for my DI reservoir to go low. It is a 20 gallon brute can under my workbench in the garage. So I do turn off the auto refill programming when I am gone on vacation. I also stop the auto water changes for that period. I also have someone that goes by the house at least once a day to feed the cat so I can alway have them check out something if needed.
 

TOP 10 Trending Threads

HOW DO YOU ADJUST YOUR CUC AS ALGAE DISAPPEARS?

  • Capture and re-home CUC

    Votes: 8 7.2%
  • Increase white light/hours in tank to spur algae growth to feed CUC

    Votes: 7 6.3%
  • Feed nori to support CUC

    Votes: 39 35.1%
  • Feed herbivore pellets to support CUC

    Votes: 39 35.1%
  • Allow attrition to balance CUC and algae

    Votes: 47 42.3%
  • Provide macro algae to feed CUC

    Votes: 8 7.2%
  • Introduce CUC predators

    Votes: 1 0.9%
  • Other (please explain)

    Votes: 11 9.9%
Back
Top