Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
fix(shooter): Slightly reduce ramp.
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenheroux committed Apr 19, 2024
1 parent 8afeb8f commit b644913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/shooter/ShooterConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static class FlywheelConstants {
public static final double MAXIMUM_SPEED = 60;

public static final SlewRateLimiter ACCELERATION_LIMITER =
new SlewRateLimiter(MotionProfileCalculator.calculateAcceleration(MAXIMUM_SPEED, 0.25));
new SlewRateLimiter(MotionProfileCalculator.calculateAcceleration(MAXIMUM_SPEED, 0.3));

public static final double TOLERANCE = 5;
}
Expand Down

0 comments on commit b644913

Please sign in to comment.