Skip to content

Commit

Permalink
happy?
Browse files Browse the repository at this point in the history
  • Loading branch information
cyblazer committed Oct 14, 2024
1 parent 40b4557 commit 1d4d61c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/frc/robot/subsystems/ClimberSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,18 @@ public class ClimberSubsystem extends SubsystemBase {

private Value m_state;

public ClimberSubsystem() {
private ClimberSubsystem() {
m_pHub = new PneumaticHub(2);

solenoidOff();

m_compressorEnabled = false;
}

public ClimberSubsystem init(){
return new ClimberSubsystem();
}

// Runs once every tick (~20ms)
public void periodic() {
m_leftSolenoid.set(m_state);
Expand Down

0 comments on commit 1d4d61c

Please sign in to comment.