Skip to content

Commit

Permalink
Mb fix name change
Browse files Browse the repository at this point in the history
  • Loading branch information
jpothen8 committed Dec 14, 2023
1 parent c6e53ed commit 03813f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class HolonomicOI(
{ if (abs(driveController.leftY) < RobotConstants.TRANSLATION_DEADBAND) .0 else -driveController.leftY },
{ if (abs(driveController.leftX) < RobotConstants.TRANSLATION_DEADBAND) .0 else -driveController.leftX },
{ if (abs(driveController.getRawAxis(4)) < RobotConstants.ROTATION_DEADBAND) .0 else -driveController.getRawAxis(4) },
SlewRateLimiter(RobotConstants.RATE_LIMIT),
SlewRateLimiter(RobotConstants.ROT_RATE_LIMIT, RobotConstants.NEG_ROT_RATE_LIM, 0.0),
RobotConstants.MAX_ACCEL,
{ true }
)
Expand Down

0 comments on commit 03813f3

Please sign in to comment.