Skip to content

Commit 3dd5c48

Browse files
authored
Merge pull request #208 from strykeforce/rkalnins/fix-climb-pressure-bug
Fix buf
2 parents c8e1ed6 + 658823b commit 3dd5c48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/frc/team2767/deepspace/command/climb/DeploySequenceCommandGroup.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
import edu.wpi.first.wpilibj.command.CommandGroup;
44
import frc.team2767.deepspace.command.elevator.ElevatorSetPositionCommand;
55
import frc.team2767.deepspace.command.log.LogCommand;
6-
import frc.team2767.deepspace.command.sequences.StowAllCommandGroup;
6+
import frc.team2767.deepspace.command.teleop.StowElevatorConditionalCommand;
77
import frc.team2767.deepspace.command.vacuum.PressureSetCommand;
88
import frc.team2767.deepspace.command.vacuum.SetSolenoidStatesCommand;
99
import frc.team2767.deepspace.subsystem.VacuumSubsystem;
1010

1111
public class DeploySequenceCommandGroup extends CommandGroup {
1212
public DeploySequenceCommandGroup() {
1313
addSequential(new LogCommand("BEGIN DEPLOY SEQUENCE"));
14-
addSequential(new PressureSetCommand(VacuumSubsystem.kClimbPressureInHg));
14+
addSequential(new PressureSetCommand(VacuumSubsystem.kClimbPressureInHg), 0.3);
1515
addSequential(new SetSolenoidStatesCommand(VacuumSubsystem.SolenoidStates.CLIMB));
1616
addParallel(
1717
new CommandGroup() {
1818
{
19-
addSequential(new StowAllCommandGroup());
19+
addSequential(new StowElevatorConditionalCommand());
2020
addSequential(new ElevatorSetPositionCommand(5.0), 0.5);
2121
}
2222
});

0 commit comments

Comments
 (0)