For Example:
6am - Pump(Box1_Port1) comes on for 12 seconds
7am - Pump(Box1_Port2) comes on for 9 seconds
8am - Pump(Box1_Port3) comes on for 2 seconds
I would ideally like to have this in a custom menu that i can change on the fly from the reef controller menu but if i can hard code it for now that would be the easiest and the fastest. I need a bullet prof way of doing it so i dont over dose the tank and eff it up

I was thinking something like:
Code: Select all
if( (hour() == 6) && (minute() == 00) )
ReefAngel.Relay.On(Box1_Port1);
else
ReefAngel.Relay.Off(Box1_Port1);
What are your suggestions?