File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,9 @@ public class RobotContainer {
5656 private final LaunchState launchState = LaunchState .getInstance ();
5757
5858 private final Command driveAndLaunchCommand =
59- drivetrain .applyRequest (() -> getDriveAndLaunchRequest ());
59+ drivetrain
60+ .applyRequest (() -> getDriveAndLaunchRequest ())
61+ .alongWith (shooter .spinFlywheelRanged ());
6062
6163 private final SendableChooser <Command > autoChooser ;
6264
@@ -171,10 +173,10 @@ public void configureTeleopBindings() {
171173 .whileTrue (indexer .pulsingIndexCommand ())
172174 .onFalse (indexer .stopFullIndexingNoPID ());
173175
174- operatorJoystick
175- .leftTrigger ()
176- // driverJoystick
177- // .a()
176+ // operatorJoystick
177+ // .leftTrigger()
178+ driverJoystick
179+ .a ()
178180 .whileTrue (driveAndLaunchCommand )
179181 .onFalse (shooter .stopFlywheelCommand ().andThen (shooter .stowHood ()));
180182
You can’t perform that action at this time.
0 commit comments