Skip to content

Commit

Permalink
Changed the Drivetrain Motor ID's (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
S0L0GUY authored Nov 10, 2024
1 parent e081b5a commit d572fb0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/frc/robot/RobotMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ public static class mapHopper {

public static class mapDriveTrain {
// Motor ID's
public static final int FRONT_RIGHT_MOTOR = 0;
public static final int BACK_RIGHT_MOTOR = 1;
public static final int FRONT_LEFT_MOTOR = 2;
public static final int BACK_LEFT_MOTOR = 3;
public static final int FRONT_RIGHT_MOTOR = 1;
public static final int BACK_RIGHT_MOTOR = 2;
public static final int FRONT_LEFT_MOTOR = 3;
public static final int BACK_LEFT_MOTOR = 4;
}

public static class mapIntake {
Expand Down

0 comments on commit d572fb0

Please sign in to comment.