I was using SingleATOLow but my relay was kicking on and off with ripples in my sump.
I looked at the SingleATOLow code and found that it was as follows:
Code: Select all
void ReefAngelClass::SingleATOLow(byte Relay)
{
SingleATO(true, Relay, InternalMemory.ATOExtendedTimeout_read(), InternalMemory.ATOHourInterval_read());
}
But this made me wonder, why is are the ATOExtendedTimeout and ATOHourInterval in internal memory if there is no way to change them? Am I missing something?
Don