Apex ATO timer

gnomer

New Member
View Badges
Joined
Apr 15, 2023
Messages
11
Reaction score
0
Location
USA
Rating - 0%
0   0   0
Hey Guys,
Looking for some insight into my ATO code. I am using the 15" LLS which I've read isn't the best to use in this situation however it has seemed to work fairly well so far.

Any how, I am looking to set delay on topping off as I am getting some ripple effects.

The code I started with is:

Fallback OFF
Set OFF
If LvlSns < 6.2 Then ON
Defer 005:00 Then ON
If LvlSns > 6.4 Then OFF
If Output Maintenance = ON The n OFF


The Defer when set to 5min doesn't seem to turn the ATO pump on. If I update the Defer command to be 000:30 it executes without problem. I am now testing with 1min to see if that works. Anyone have any thoughts?
 
OP
OP
G

gnomer

New Member
View Badges
Joined
Apr 15, 2023
Messages
11
Reaction score
0
Location
USA
Rating - 0%
0   0   0
Hey Guys,
Looking for some insight into my ATO code. I am using the 15" LLS which I've read isn't the best to use in this situation however it has seemed to work fairly well so far.

Any how, I am looking to set delay on topping off as I am getting some ripple effects.

The code I started with is:

Fallback OFF
Set OFF
If LvlSns < 6.2 Then ON
Defer 005:00 Then ON
If LvlSns > 6.4 Then OFF
If Output Maintenance = ON The n OFF


The Defer when set to 5min doesn't seem to turn the ATO pump on. If I update the Defer command to be 000:30 it executes without problem. I am now testing with 1min to see if that works. Anyone have any thoughts?
I'm realizing it's only topping off to 6.2 as well and not to 6.4 as I would like. Would it be best to take out the "IF LvlSns < 6.2 Then ON" and replace the "IF LvlSns > 6.4 Then OFF" with "IF lvlsns < 6.4 Then ON"? I'm still looking for a way to delay the top off too allowing the water to settle if there's any ripples.

Im guessing the correct code may look something like:

Fallback OFF
Set OFF
Defer 001:00 Then ON
If LvlSns < 6.4 Then ON
If Output Maintenance = ON Then OFF

How could I incorporate a timer that says if the ATO runs for so long to turn off to prevent over filling or would it be best to just add another height limit via the if then on/off command?
 

Dburr1014

10K Club member
View Badges
Joined
May 8, 2016
Messages
12,621
Reaction score
11,570
Location
CT
Rating - 0%
0   0   0
I'm realizing it's only topping off to 6.2 as well and not to 6.4 as I would like. Would it be best to take out the "IF LvlSns < 6.2 Then ON" and replace the "IF LvlSns > 6.4 Then OFF" with "IF lvlsns < 6.4 Then ON"? I'm still looking for a way to delay the top off too allowing the water to settle if there's any ripples.

Im guessing the correct code may look something like:

Fallback OFF
Set OFF
Defer 001:00 Then ON
If LvlSns < 6.4 Then ON
If Output Maintenance = ON Then OFF

How could I incorporate a timer that says if the ATO runs for so long to turn off to prevent over filling or would it be best to just add another height limit via the if then on/off command?
If statement will shut it off if on to long.
If on 00:00 Then off
You need to enter your time. I would see what your max time normally is and add a bit to it.
 
OP
OP
G

gnomer

New Member
View Badges
Joined
Apr 15, 2023
Messages
11
Reaction score
0
Location
USA
Rating - 0%
0   0   0
If statement will shut it off if on to long.
If on 00:00 Then off
You need to enter your time. I would see what your max time normally is and add a bit to it.
Thank you! I'll have to look at my run times and figure out what would be ideal. Do you think the rest of the code looks good as is?
 

Dburr1014

10K Club member
View Badges
Joined
May 8, 2016
Messages
12,621
Reaction score
11,570
Location
CT
Rating - 0%
0   0   0
Thank you! I'll have to look at my run times and figure out what would be ideal. Do you think the rest of the code looks good as is?
Not sure on level sensors.
The code looks like it would work. That is, the last one you wrote.
Defer is good cuz it will have to be lower than that for a minute before it kicks on.
 

Indymann99

Active Member
View Badges
Joined
Sep 29, 2018
Messages
189
Reaction score
305
Rating - 0%
0   0   0
I have been using floats (w breakout box) on APEX for 10yrs. Neptune specifically states not to use the LLS for ATO as it takes a while to update. I would re-think your use.

1681929097096.png


1681929119144.png
 
OP
OP
G

gnomer

New Member
View Badges
Joined
Apr 15, 2023
Messages
11
Reaction score
0
Location
USA
Rating - 0%
0   0   0
I have been using floats (w breakout box) on APEX for 10yrs. Neptune specifically states not to use the LLS for ATO as it takes a while to update. I would re-think your use.

1681929097096.png


1681929119144.png
Ohhh I didn't realize they state not to use it. Well I guess an optical sensor is in my near future then. Thank you!
 

Indymann99

Active Member
View Badges
Joined
Sep 29, 2018
Messages
189
Reaction score
305
Rating - 0%
0   0   0
Ohhh I didn't realize they state not to use it. Well I guess an optical sensor is in my near future then. Thank you!
I just use a breakout box (I did a DIY but Neptune sells one) and some floats with a Toms Aqualifter pump.
1681931850054.jpeg


1681931888560.jpeg
 

TOP 10 Trending Threads

HOW DO YOU ADJUST YOUR CUC AS ALGAE DISAPPEARS?

  • Capture and re-home CUC

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

    Votes: 8 6.8%
  • Feed nori to support CUC

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

    Votes: 41 34.7%
  • Allow attrition to balance CUC and algae

    Votes: 51 43.2%
  • Provide macro algae to feed CUC

    Votes: 8 6.8%
  • Introduce CUC predators

    Votes: 1 0.8%
  • Other (please explain)

    Votes: 12 10.2%
Back
Top