Skip to content

Commit

Permalink
Merge pull request #26 from Iron-Panthers/fix/jacob-shoot
Browse files Browse the repository at this point in the history
fix jacob bind
  • Loading branch information
JayK445 committed Mar 19, 2024
2 parents d59adeb + 0d2b56c commit 4f96b41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,9 @@ private void configureButtonBindings() {
new AdvancedIntakeCommand(intakeSubsystem, shooterSubsystem, pivotSubsystem)));

// SHOOT OVERRIDE
jacob.rightTrigger().onTrue(new ShootCommand(shooterSubsystem));
jacob
.rightTrigger()
.onTrue(new AccelNoteCommand(shooterSubsystem).andThen(new ShootCommand(shooterSubsystem)));

anthony.rightStick().onTrue(new DefenseModeCommand(drivebaseSubsystem));
anthony.leftStick().onTrue(new HaltDriveCommandsCommand(drivebaseSubsystem));
Expand Down

0 comments on commit 4f96b41

Please sign in to comment.