Skip to content

Commit

Permalink
fixed minor issue to allow intaking while stowing in teleop
Browse files Browse the repository at this point in the history
  • Loading branch information
PGgit08 committed Mar 24, 2024
1 parent 5ff522c commit b99876e
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 @@ -136,7 +136,7 @@ private void configureBindings() {
_operatorController.square().whileTrue(new FeedActuate(_intakeSubsystem, ActuatorState.OUT, FeedMode.INTAKE));
_operatorController.circle().whileTrue(feedOut);
_operatorController.triangle().whileTrue(new FeedActuate(_intakeSubsystem, ActuatorState.STOWED, FeedMode.OUTTAKE));
_operatorController.cross().whileTrue(new FeedActuate(_intakeSubsystem, FeedMode.INTAKE));
_operatorController.cross().whileTrue(new FeedActuate(_intakeSubsystem, ActuatorState.STOWED, FeedMode.INTAKE));

_operatorController.R1().whileTrue(
Commands.parallel(
Expand Down

0 comments on commit b99876e

Please sign in to comment.