Skip to content

Commit

Permalink
un-screwed-up the drive motor IDs
Browse files Browse the repository at this point in the history
--Gabe
  • Loading branch information
willitcode committed Oct 3, 2023
1 parent 3d94ebb commit 5a5ed86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ public static class RobotDimensions {
/** General constants for the drivetrain. Primarily used by {@link frc.robot.subsystems.Drive}. */
public static class Drive {
/* CAN IDs for the drivetrain motor controllers */
public static final int ID_TALON_FRONT_LEFT = 0;
public static final int ID_TALON_FRONT_LEFT = 3;
public static final int ID_TALON_FRONT_RIGHT = 1;
public static final int ID_TALON_REAR_LEFT = 2;
public static final int ID_TALON_REAR_RIGHT = 3;
public static final int ID_TALON_REAR_LEFT = 4;
public static final int ID_TALON_REAR_RIGHT = 2;

/* Locations of mecanum drive wheels relative to the center of the robot
* For use with MecanumDriveKinematics
Expand Down

0 comments on commit 5a5ed86

Please sign in to comment.