if (ReefAngel.Params.PH < 830)
{
ReefAngel.DosingPumpRepeat( DosePump,0,30,20 );
}
Is there something wrong with this code? Currently When I set the relay to auto it just turns on right away. My PH reads 8.59... I have been using this code for a while and hadn't had an issue until today.
Thanks for the quick response Roberto, I thought I may need to do that. Since this has been working for months without issue it led me to believe it wasn't needed.
Yeah, you will only have an issue in the event that this order of events happen:
ph=8.29
Dosing pumps kicks in
If in less than 20 seconds ph goes up to 8.3, it will leave the relay on forever, because it never goes back to check the DosingPumpRepeat function again.