Skip to content

Commit

Permalink
Cite and fix gear ratio
Browse files Browse the repository at this point in the history
  • Loading branch information
mpatankar6 committed Jan 28, 2024
1 parent b2451eb commit 4509278
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/drivetrain/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

public class Module {

public static final double kDriveRatio = 6.25;
// https://www.swervedrivespecialties.com/products/mk4i-swerve-module
public static final double kDriveRatio = 6.75;
public static final double kSteerRatio = 150.0 / 7.0;
public final double kWheelDiameterMeters = Units.inchesToMeters(4.0);
public final double kWheelRadiusMeters = kWheelDiameterMeters / 2.0;
Expand Down

0 comments on commit 4509278

Please sign in to comment.