File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
TeamCode/src/main/java/org/firstinspires/ftc/teamcode Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 ();
Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments