Skip to content

Commit

Permalink
Updated CAN Ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepps233 committed Feb 27, 2024
1 parent a33c541 commit e55f2fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/rambots/config/SwerveModuleSettings.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ enum class SwerveModuleSettings(
override val simulationEncoderOffset: Rotation2d
) : SwerveModuleConfiguration {
/** values to be updated */
FRONT_LEFT(1, 2, 3, 0.0.degrees, 0.0.degrees),
FRONT_RIGHT(4, 5, 6, 0.0.degrees, 0.0.degrees),
BACK_LEFT(10, 11, 12, 0.0.degrees, 0.0.degrees),
BACK_RIGHT(7, 8, 9, 0.0.degrees, 0.0.degrees),
FRONT_LEFT(3, 2, 1, 0.0.degrees, 0.0.degrees),
FRONT_RIGHT(12, 11, 10, 0.0.degrees, 0.0.degrees),
BACK_LEFT(6, 5, 4, 0.0.degrees, 0.0.degrees),
BACK_RIGHT(9, 8, 7, 0.0.degrees, 0.0.degrees),
}

/* Double extension property. Allows to convert a double to a rotation 2d object. */
Expand Down

0 comments on commit e55f2fc

Please sign in to comment.