Please verify this code below. I am only dosing Alk using a BRS 1.1 mL doser on port 6. I only want to dose it between the hours of 10pm and 10am, once an hour for 68 minutes. I will not hard code this so I can adjust on the fly at least during this trial period. Total is 12 doses.
Lee...I've decided (as you've suggested) to get the basic dosing schedule down first and let it run for a while before I try your custom code..which I am very interested in understanding...
I've included this:
Code: Select all
ReefAngel.DosingPumpRepeat1( Port6 );
Code: Select all
////DoserAlk Schedule
if ((hour() >= 10) && (hour() < 22)) { // Between 10am and 10pm we will disable Port 6
ReefAngel.Relay.Off(Port6);
}