Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chiller during alarm state #1

Open
niget2002 opened this issue Aug 31, 2016 · 1 comment
Open

chiller during alarm state #1

niget2002 opened this issue Aug 31, 2016 · 1 comment

Comments

@niget2002
Copy link
Owner

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.

@niget2002
Copy link
Owner Author

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]); } } }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant