Dosing pump question
Posted: Thu May 23, 2013 5:26 pm
I have two dosing pumps I would like to run once a day for a set period of time. Note, I am also running a Swabbie using the memory locations for pump 1.
I have the following in void setup()
I'm trying to run Alk at 7 pm and Cal at 8 pm (once a day), for a calculated amount of time. It doesn't appear to be turning on. What did I do wrong?
Thanks,
--Colin
I have the following in void setup()
Code: Select all
int Dispense = 90; // Amount in ml of 2 part to dispense
ReefAngel.DosingPump(AlkPump, 2, 19, 00, Dispense/0.67); // Alk pump runs at 0.67 ml/sec
ReefAngel.DosingPump(CalPump, 3, 20, 00, Dispense/0.61); // Ca+ pump runs at 0.61 ml/secThanks,
--Colin