You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated Arduino Code to check main pump running before turning chiller on. Should also turn chiller off if main pump stops // Turn Chiller ON/ OFF Verify that the main Return pump is running before turning on if ( (tankTempHigh < analogs[2]) && digitalRead(myPumps[pumpReturn]) ) { ledMatrix_ON(myOther[1]); } else { // After temp is lowered proper amount OR if main Pump is turned off if(digitalRead(myOther[1])){ if( tankTempHigh-.2 > analogs[2]){ ledMatrix_OFF(myOther[1]); } } }
The chiller continues to run when the main return pump is off during an alarm state.
Need to make it so that Chiller turns off when main pump turns off.
The text was updated successfully, but these errors were encountered: