Skip to content

Commit

Permalink
Increase auto align tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Mar 9, 2024
1 parent a8d0afd commit 817763d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public class AutoAlignController {
private static final LoggedTunableNumber thetakD =
new LoggedTunableNumber("AutoAlign/thetakD", 0.0);
private static final LoggedTunableNumber linearTolerance =
new LoggedTunableNumber("AutoAlign/controllerLinearTolerance", 0.05);
new LoggedTunableNumber("AutoAlign/controllerLinearTolerance", 0.08);
private static final LoggedTunableNumber thetaTolerance =
new LoggedTunableNumber("AutoAlign/controllerThetaTolerance", Units.degreesToRadians(2.0));
private static final LoggedTunableNumber toleranceTime =
new LoggedTunableNumber("AutoAlign/controllerToleranceSecs", 0.4);
new LoggedTunableNumber("AutoAlign/controllerToleranceSecs", 0.5);
private static final LoggedTunableNumber maxLinearVelocity =
new LoggedTunableNumber(
"AutoAlign/maxLinearVelocity", DriveConstants.driveConfig.maxLinearVelocity());
Expand Down

0 comments on commit 817763d

Please sign in to comment.