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

Commit

Permalink
fix(arm): Use rotations instead of degrees.
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenheroux committed Apr 30, 2024
1 parent 31d860d commit 55728b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/arm/Arm.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ public void addToShuffleboard(ShuffleboardTab tab) {

Telemetry.addColumn(tab, "Setpoint")
.addDouble(
"Setpoint (deg)",
() -> Units.rotationsToDegrees(setpoint.shoulderRotations().position));
"Setpoint (rot)",
() -> setpoint.shoulderRotations().position);
}

/**
Expand Down

0 comments on commit 55728b8

Please sign in to comment.