Skip to content

Commit

Permalink
Merge branch 'pneumatics' of https://github.com/RoboLoCo-5338/Kit-Bot
Browse files Browse the repository at this point in the history
…into pneumatics
  • Loading branch information
shreshtaparthaje committed Dec 1, 2024
2 parents b800814 + c8468de commit 754394a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/Pneumatics.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ public void extendPiston() {
}

public void retractPiston() {
RobotContainer.m_doubleSolenoid.set(DoubleSolenoid.Value.kForward);
RobotContainer.m_doubleSolenoid.set(DoubleSolenoid.Value.kReverse);
}

public void setSolenoidOff() {
RobotContainer.m_doubleSolenoid.set(DoubleSolenoid.Value.kForward);
RobotContainer.m_doubleSolenoid.set(DoubleSolenoid.Value.kOff);
}

public void toggleSolenoid() {
Expand Down

0 comments on commit 754394a

Please sign in to comment.