Skip to content

Commit

Permalink
Smart Dashboard output for climber solenoids state
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgrammingSR committed Mar 9, 2024
1 parent d1887c6 commit b2f9339
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/frc/robot/subsystems/ClimberSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public ClimberSubsystem() {
public void periodic() {
m_leftSolenoid.set(m_state);
m_rightSolenoid.set(m_state);
SmartDashboard.putString("pneumatics state", m_state.name());
SmartDashboard.putNumber("pressure", m_pHub.getPressure(0));
}

Expand Down

0 comments on commit b2f9339

Please sign in to comment.