Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit f926056

Browse files
committed
Copy PID constants for path follower
1 parent 4631340 commit f926056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/frc/robot/autos/trailblazer/Trailblazer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private static AutoConstraintOptions resolveConstraints(
3030
private final PathTracker pathTracker = new HeuristicPathTracker();
3131
private final PathFollower pathFollower =
3232
new PidPathFollower(
33-
new PIDController(0, 0, 0), new PIDController(0, 0, 0), new PIDController(0, 0, 0));
33+
new PIDController(4, 0, 0), new PIDController(4, 0, 0), new PIDController(2.5, 0, 0));
3434
private int previousAutoPointIndex = -1;
3535

3636
public Trailblazer(SwerveSubsystem swerve, LocalizationSubsystem localization) {

0 commit comments

Comments
 (0)