Skip to content

Commit

Permalink
stop shooter when amp
Browse files Browse the repository at this point in the history
  • Loading branch information
PGgit08 committed Apr 5, 2024
1 parent 352eddb commit 01a5549
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ private void configureBindings() {
_operatorController.R1().whileTrue(
Commands.parallel(
new SetShooter(_shooterSubsystem, () -> Presets.SHOOTER_AMP_HANDOFF),
new SetElevator(_elevatorSubsystem, () -> Presets.ELEVATOR_AMP_HANDOFF)
new SetElevator(_elevatorSubsystem, () -> Presets.ELEVATOR_AMP_HANDOFF),
new SpinShooter(_shooterSubsystem, ShooterState.NONE, true)
)
);

Expand Down

0 comments on commit 01a5549

Please sign in to comment.