diff --git a/src/main/java/frc/robot/subsystems/drive/DriveConstants.java b/src/main/java/frc/robot/subsystems/drive/DriveConstants.java index eac5365..60cb281 100644 --- a/src/main/java/frc/robot/subsystems/drive/DriveConstants.java +++ b/src/main/java/frc/robot/subsystems/drive/DriveConstants.java @@ -120,7 +120,7 @@ public class SwerveModulePosition { .withSteerMotorGains(steerGains) .withDriveMotorGains(driveGains) .withSpeedAt12VoltsMps( - 6) // Theoretical free speed is 10 meters per second at 12v applied output + kSpeedAt12VoltsMps) // Theoretical free speed is 10 meters per second at 12v applied output .withSteerInertia(Intertia.kSteerInertia) .withDriveInertia(Intertia.kDriveInertia) .withFeedbackSource(SteerFeedbackType.FusedCANcoder)