Skip to content

Commit

Permalink
Uses shuffleboard
Browse files Browse the repository at this point in the history
  • Loading branch information
NoraZitnick committed Nov 29, 2023
1 parent fafd13e commit 823ff57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/frc/robot/subsystems/WristSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ public WristSubsystem() {

pidController = new PIDController(0.1, 0, 0);
WristTab.add(pidController);
WristTab.addNumber("Current Motor Position", wrist_motor::getSelectedSensorPosition);
WristTab.addBoolean("Is at target", this::nearTargetAngle);
WristTab.addNumber("Target Angle", () -> this.targetAngle);
}

public static double degreesToTicks(double angle) {
Expand Down

0 comments on commit 823ff57

Please sign in to comment.