Skip to content

Commit b634651

Browse files
committed
Correct digitalWrite call
1 parent 694ab4c commit b634651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Valve.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Valve
2323
pinMode(motorSlowPin, OUTPUT);
2424
digitalWrite(motorBackwardPin, HIGH);
2525
digitalWrite(motorForwardPin, HIGH);
26-
pinMode(motorSlowPin, LOW);
26+
digitalWrite(motorSlowPin, LOW);
2727
moving = false;
2828
};
2929

0 commit comments

Comments
 (0)