Skip to content

Commit

Permalink
Update Swerve module constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Sail-wang committed Jul 27, 2024
1 parent 7e44ddc commit 04559ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ def getNumber(self):
def toString(self) -> str:
return self.name

MODULE_0 = SwerveModuleConstants(2, 3, 11, Rotation2d(-0.361083984375)) # ROBOT SPECIFIC
MODULE_0 = SwerveModuleConstants(2, 3, 11, Rotation2d.fromRotations(-0.359)) # ROBOT SPECIFIC

MODULE_1 = SwerveModuleConstants(8, 9, 14, Rotation2d(-0.7451171875)) # ROBOT SPECIFIC
MODULE_1 = SwerveModuleConstants(8, 9, 14, Rotation2d.fromRotations(-0.735)) # ROBOT SPECIFIC

MODULE_2 = SwerveModuleConstants(4, 5, 12, Rotation2d(-0.184814453125)) # ROBOT SPECIFIC
MODULE_2 = SwerveModuleConstants(4, 5, 12, Rotation2d.fromRotations(-0.187)) # ROBOT SPECIFIC

MODULE_3 = SwerveModuleConstants(6, 7, 13, Rotation2d(-0.66552734375)) # ROBOT SPECIFIC
MODULE_3 = SwerveModuleConstants(6, 7, 13, Rotation2d.fromRotations(-0.662)) # ROBOT SPECIFIC

0 comments on commit 04559ef

Please sign in to comment.