Skip to content

Commit

Permalink
Fix motor inversion
Browse files Browse the repository at this point in the history
  • Loading branch information
coolinm committed Dec 1, 2023
1 parent 72090a6 commit 752eb40
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/frc/robot/subsystems/DriveTrain.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ public DriveTrain() {
motorLeft2.configFactoryDefault();
motorRight1.configFactoryDefault();
motorRight2.configFactoryDefault();
motorLeft2.setInverted(true);
motorLeft1.setInverted(true);
motorLeft2.setInverted(false);
motorLeft1.setInverted(false);
motorRight1.setInverted(true);
}

@Override
Expand Down

0 comments on commit 752eb40

Please sign in to comment.