Skip to content

Commit 87989d7

Browse files
authored
Merge pull request #10 from IrishRobotics/8-fix-code-brody
8 fix code brody
2 parents 69f06df + 363b025 commit 87989d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

TeamCode/src/main/java/org/firstinspires/ftc/teamcode/BrodysFIRSTOpMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public void init() {
1919
backLeftMotor = hardwareMap.get(DcMotor.class, "backLeftDrive");
2020
backRightMotor = hardwareMap.get(DcMotor.class, "backRightDrive");
2121

22-
frontRightMotor.setDirection(DcMotorSimple.Direction.REVERSE);
2322
frontLeftMotor.setDirection(DcMotorSimple.Direction.REVERSE);
23+
backLeftMotor.setDirection(DcMotorSimple.Direction.REVERSE);
2424

2525
telemetry.addData("Status", "Initialised");
2626
telemetry.update();

TeamCode/src/main/java/org/firstinspires/ftc/teamcode/NicksFIRSTJavaOpMode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public void init() {
1919
backLeftMotor = hardwareMap.get(DcMotor.class, "backLeftDrive");
2020
backRightMotor = hardwareMap.get(DcMotor.class, "backRightDrive");
2121

22-
frontRightMotor.setDirection(DcMotorSimple.Direction.REVERSE);
23-
backRightMotor.setDirection(DcMotorSimple.Direction.REVERSE);
22+
frontLeftMotor.setDirection(DcMotorSimple.Direction.REVERSE);
23+
backLeftMotor.setDirection(DcMotorSimple.Direction.REVERSE);
2424

2525
telemetry.addData("Status", "Initialised");
2626
telemetry.update();

0 commit comments

Comments
 (0)