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

Commit

Permalink
doc(arm): Fix unit.
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenheroux committed Apr 28, 2024
1 parent 5630e26 commit 085c28c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/arm/Arm.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Arm extends Subsystem {
.withMotionProfileConfig(
new MotionProfileConfig()
.withMaximumVelocity(Units.degreesToRotations(240.0)) // rotations per second
.withMaximumAcceleration(Units.degreesToRadians(240.0)) // rotations per second
.withMaximumAcceleration(Units.degreesToRadians(240.0)) // rotations per second per second
)
.withFeedforwardConfig(
new FeedforwardControllerConfig()
Expand Down

0 comments on commit 085c28c

Please sign in to comment.