Skip to content

Commit

Permalink
Merge pull request #58 from frc937/pneumatics-bypass
Browse files Browse the repository at this point in the history
Pneumatics bypass
  • Loading branch information
willitcode authored Feb 13, 2024
2 parents 6fb05bd + 3b3c24b commit 27357d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ private void configureBindings() {
driverController.leftStick().toggleOnTrue(driveFieldOriented);

driverController.x().onTrue(enterXMode);
driverController.y().onTrue(fireNote);
driverController.a().onTrue(runIntake);
driverController.rightTrigger().onTrue(deployMailbox);
driverController.b().onTrue(fireNoteRoutineNoLimitSwitch);
driverController.y().whileTrue(fireNote);
driverController.a().whileTrue(runIntake);
driverController.rightTrigger().whileTrue(deployMailbox);
driverController.b().whileTrue(runBelts);
}

/**
Expand Down

0 comments on commit 27357d5

Please sign in to comment.