Somebody please make sure that the nut behind this keyboard is sufficiently tightened up! :mtool:
I have two AquaLifters supplying Top Off Water to my sump. One (ATO_RO) is a direct feed from my RO Reservoir, and the other (ATO_KALK) runs into my Kalkwasser Reactor.
I want the Kalk water topoff to only happen every hour for one minute between 8PM and 8AM if the pH < 8.36.
I want the RO water topoff to happen every hour for one minute when the Kalk isn't going to topoff (ie pH is high) So I tried to build in a priority override so the RO water will not run if the KALK should be filling the tank.
I will be adding a calcium reactor to the mix to run during the 8AM to 8PM time frame in the very near future. The code is as follows:
Note: SumpHigh is a virtual outlet set to a float switch at the correct level to fill, using 10 second hysteresis.
ATO_Kalk Outlet
===========
Fallback OFF
Set OFF
OSC 059:00/001:00/000:00 Then ON
If Time 08:00 to 20:00 Then OFF
If Outlet SumpHigh = ON Then OFF
If pH > 08.35 Then OFF
ATO_RO Outlet
=============
Fallback OFF
Set OFF
OSC 000:30/001:00/059:00 Then ON
If Outlet ATO_Kalk = ON Then OFF
If Outlet SumpHigh = ON Then OFF
From a reefkeeping standpoint should I modify the ATO_Kalk program as follows:
The first lights on and last lights off use the following program:
ActinicR
==============
Fallback ON
Set ON
If Sun 060/060 Then ON
If Temp > 82.0 Then OFF
If Temp < 77.1 Then ON
If Outlet ActinicOnly = ON Then ON
If FeedA 000 Then ON
If FeedB 000 Then ON
If FeedC 000 Then ON
If FeedD 000 Then ON
If Outlet AutoFeed = ON Then ON
If Outlet SumpLow = ON Then OFF
Should I replace the "If Time" statement in ATO_Kalk with the following:
If Outlet ActinicR = ON Then OFF
Thanks in advance for the programming help.
I have two AquaLifters supplying Top Off Water to my sump. One (ATO_RO) is a direct feed from my RO Reservoir, and the other (ATO_KALK) runs into my Kalkwasser Reactor.
I want the Kalk water topoff to only happen every hour for one minute between 8PM and 8AM if the pH < 8.36.
I want the RO water topoff to happen every hour for one minute when the Kalk isn't going to topoff (ie pH is high) So I tried to build in a priority override so the RO water will not run if the KALK should be filling the tank.
I will be adding a calcium reactor to the mix to run during the 8AM to 8PM time frame in the very near future. The code is as follows:
Note: SumpHigh is a virtual outlet set to a float switch at the correct level to fill, using 10 second hysteresis.
ATO_Kalk Outlet
===========
Fallback OFF
Set OFF
OSC 059:00/001:00/000:00 Then ON
If Time 08:00 to 20:00 Then OFF
If Outlet SumpHigh = ON Then OFF
If pH > 08.35 Then OFF
ATO_RO Outlet
=============
Fallback OFF
Set OFF
OSC 000:30/001:00/059:00 Then ON
If Outlet ATO_Kalk = ON Then OFF
If Outlet SumpHigh = ON Then OFF
From a reefkeeping standpoint should I modify the ATO_Kalk program as follows:
The first lights on and last lights off use the following program:
ActinicR
==============
Fallback ON
Set ON
If Sun 060/060 Then ON
If Temp > 82.0 Then OFF
If Temp < 77.1 Then ON
If Outlet ActinicOnly = ON Then ON
If FeedA 000 Then ON
If FeedB 000 Then ON
If FeedC 000 Then ON
If FeedD 000 Then ON
If Outlet AutoFeed = ON Then ON
If Outlet SumpLow = ON Then OFF
Should I replace the "If Time" statement in ATO_Kalk with the following:
If Outlet ActinicR = ON Then OFF
Thanks in advance for the programming help.