Skip to content

Commit

Permalink
remove unused diameter variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mpatankar6 committed Apr 14, 2024
1 parent ff6829d commit b95482f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/frc/robot/drivetrain/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ public class Module {
Constants.kIsViper ? (50.0 / 13.0) : (50.0 / 14.0);
public static final double kDriveRatio = kDriveRatioFirstStage * (16.0 / 28.0) * (45.0 / 15.0);
public static final double kSteerRatio = 150.0 / 7.0;
private final double kWheelDiameterMeters = Units.inchesToMeters(1.73 * 2);
private final double kWheelRadiusMeters = kWheelDiameterMeters / 2.0;
private final double kWheelRadiusMeters = Units.inchesToMeters(1.73);
private final double kCouplingRatio = kDriveRatioFirstStage;

private final ModuleIO m_io;
Expand Down

0 comments on commit b95482f

Please sign in to comment.