Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Jan 3, 2020
1 parent c5e712b commit 18d20bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public void runOpMode() {
motor2.setDirection(DcMotorSimple.Direction.REVERSE);
motor3.setDirection(DcMotorSimple.Direction.REVERSE);
waitForStart();
servo1.setPosition(0.0);
new Move().left(motor0, motor1, motor2, motor3);
sleep(2700);
new Move().back(motor0, motor1, motor2, motor3);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public void runOpMode() throws InterruptedException {
motor2.setDirection(DcMotorSimple.Direction.REVERSE);
motor3.setDirection(DcMotorSimple.Direction.REVERSE);
waitForStart();
servo1.setPosition(0.0);
new Move().right(motor0, motor1, motor2, motor3);
sleep(2700);
new Move().back(motor0, motor1, motor2, motor3);
Expand Down

0 comments on commit 18d20bb

Please sign in to comment.