Skip to content

Commit

Permalink
Correct digitalWrite call
Browse files Browse the repository at this point in the history
  • Loading branch information
Simsso committed Apr 2, 2019
1 parent 694ab4c commit b634651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Valve.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Valve
pinMode(motorSlowPin, OUTPUT);
digitalWrite(motorBackwardPin, HIGH);
digitalWrite(motorForwardPin, HIGH);
pinMode(motorSlowPin, LOW);
digitalWrite(motorSlowPin, LOW);
moving = false;
};

Expand Down

0 comments on commit b634651

Please sign in to comment.