you have :
void loop()
{
exhaust= LOW;
so, we know it will always be low.
later you change it before you change it back to low.
then you have
if exhaust == low
and that should be:
if exhaust == low {
.. stuff here..
}
you have :
void loop()
{
exhaust= LOW;
so, we know it will always be low.
later you change it before you change it back to low.
then you have
if exhaust == low
and that should be:
if exhaust == low {
.. stuff here..
}