Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jack60612 committed Feb 27, 2024
1 parent a74f32a commit 2356082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/ShooterSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public class ShooterSubsystem extends SubsystemBase {
private final double kGearRatio = 4; // TBD
// basically converted from rotations to to radians to then meters using the wheel diameter.
// the diameter is already *2 so we don't need to multiply by 2 again.
private final double kPositionConversionRatio = (Math.PI * kWheelDiameter) / kGearRatio;
private final double kVelocityConversionRatio = kPositionConversionRatio / 60;
private final double kPositionConversionRatio = (Math.PI * kWheelDiameter) / kGearRatio;
private final double kVelocityConversionRatio = kPositionConversionRatio / 60;

// setup feedforward
private final double ksShooterVolts = 0.17875;
Expand Down

0 comments on commit 2356082

Please sign in to comment.