Skip to content

Commit

Permalink
rotationPID tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
witherslayer67 committed Apr 6, 2024
1 parent dca841e commit fc9db50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static final class Swerve {
public static final double maxDumpError = 1.5; // degrees
public static final Rotation2d slideAngle = new Rotation2d(Units.degreesToRadians(0.0));
public static final double maxSlideError = 3.0; // degrees
public static final PIDController rotationPID = new PIDController(0.0095, 0.02, 0.0);
public static final PIDController rotationPID = new PIDController(0.0095, 0.025, 0.0);
public static final double rotationIZone = 2.5; // degrees

/* Drivetrain Constants */
Expand Down

0 comments on commit fc9db50

Please sign in to comment.