Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
fix: remove negative multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
drive station committed Dec 12, 2024
1 parent 8d64bbc commit b326f2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ object Drivetrain : Subsystem, Sendable {
desiredChassisSpeeds = ChassisSpeeds.fromFieldRelativeSpeeds(
translationInput.x * FREE_SPEED.baseUnitMagnitude() * TRANSLATION_SENSITIVITY,
translationInput.y * FREE_SPEED.baseUnitMagnitude() * TRANSLATION_SENSITIVITY,
-rotationInput.y * TAU * ROTATION_SENSITIVITY,
rotationInput.y * TAU * ROTATION_SENSITIVITY,
inputs.gyroRotation.toRotation2d()
)
}
Expand Down

0 comments on commit b326f2b

Please sign in to comment.