Skip to content

Commit

Permalink
Update src/main/java/frc/robot/RobotContainer.java
Browse files Browse the repository at this point in the history
Co-authored-by: Minh Vu <[email protected]>
  • Loading branch information
RealSirLancelot and minhd-vu authored Nov 20, 2024
1 parent 10a5f45 commit e91c15e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private void configureBindings() {
.whileTrue(intake.intakeBucket(intake, Constants.IntakeConstants.INTAKE_SPEED, true));
driverXbox
.rightTrigger()
.whileTrue(intake.intakeBucket(intake, Constants.IntakeConstants.OUTTAKE_SPEED,false));
.whileTrue(intake.intakeBucket(intake, Constants.IntakeConstants.OUTTAKE_SPEED, false));
driverXbox.rightBumper().onTrue(Commands.none());
drivebase.setDefaultCommand(
!RobotBase.isSimulation()
Expand Down

0 comments on commit e91c15e

Please sign in to comment.