Skip to content

Commit

Permalink
Copy PID constants for path follower
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahsnider committed Nov 20, 2024
1 parent 5eeb752 commit a607df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/autos/trailblazer/Trailblazer.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private static AutoConstraintOptions resolveConstraints(
private final PathTracker pathTracker = new HeuristicPathTracker();
private final PathFollower pathFollower =
new PidPathFollower(
new PIDController(0, 0, 0), new PIDController(0, 0, 0), new PIDController(0, 0, 0));
new PIDController(4, 0, 0), new PIDController(4, 0, 0), new PIDController(2.5, 0, 0));
private int previousAutoPointIndex = -1;

public Trailblazer(SwerveSubsystem swerve, LocalizationSubsystem localization) {
Expand Down

0 comments on commit a607df1

Please sign in to comment.