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

Commit 55728b8

Browse files
committed
fix(arm): Use rotations instead of degrees.
1 parent 31d860d commit 55728b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main/java/frc/robot/arm/Arm.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ public void addToShuffleboard(ShuffleboardTab tab) {
125125

126126
Telemetry.addColumn(tab, "Setpoint")
127127
.addDouble(
128-
"Setpoint (deg)",
129-
() -> Units.rotationsToDegrees(setpoint.shoulderRotations().position));
128+
"Setpoint (rot)",
129+
() -> setpoint.shoulderRotations().position);
130130
}
131131

132132
/**

0 commit comments

Comments
 (0)