We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b6bb38 commit 974e551Copy full SHA for 974e551
src/main/java/frc/robot/RobotContainer.java
@@ -356,7 +356,9 @@ public void configureButtonBindings() {
356
public boolean get() {
357
return (operator.getPOV() == 0);
358
}
359
- }.whenPressed(new PresetFlywheelController(mShooter, "BLP"));
+ }.whenPressed(new PresetFlywheelController(mShooter, "BLP")
360
+ .alongWith(new PullTrigger(mShooter)))
361
+ .whenReleased(new StopShooter(mShooter).alongWith(new StopTrigger(mShooter)));
362
363
// .and(new JoystickButton(operator, X_BOX_LOGO_LEFT))
364
// .whenActive(new ToggleClimber(mClimber));
0 commit comments