if (enablePin1 == LOW);
else
interval;
What is this trying to do? The semicolon on the if statement looks out of place. The else body is not a function call.
if (enablePin1 == LOW);
else
interval;
What is this trying to do? The semicolon on the if statement looks out of place. The else body is not a function call.