Skip to content

Commit

Permalink
run intake for a little longer to make sure note goes in
Browse files Browse the repository at this point in the history
  • Loading branch information
penguin212 committed Feb 9, 2024
1 parent c35d782 commit fca98a1
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 @@ -144,7 +144,8 @@ public RobotContainer() {

private void configureBindings() {
aButton.onTrue(new ElevatorToChuteCommand(elevatorSubsystem).andThen(
new IntakeRollerIntakeCommand(intakeRollerSubsystem)));
new IntakeRollerIntakeCommand(intakeRollerSubsystem).andThen(
new IntakeRollerFeedCommand(intakeRollerSubsystem).withTimeout(.1))));

bButton.onTrue(new IdleCommand(intakePivotSubsystem, intakeRollerSubsystem,
elevatorSubsystem,
Expand Down

0 comments on commit fca98a1

Please sign in to comment.