We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c8649 commit fa62375Copy full SHA for fa62375
src/main/java/frc/robot/RobotContainer.java
@@ -298,7 +298,7 @@ private void configureBindings() {
298
))
299
.onFalse(new InstantCommand(()-> {stopDrive(); joystick.setRumble(RumbleType.kBothRumble, 0);})
300
.andThen(s_Shooter.stop()));
301
- joystick.button(7).onTrue(new RunCommand(()-> {stopDrive(); System.out.println("STOP");}, drivetrain));
+ joystick.button(7).onTrue(new RunCommand(()-> {System.out.println("STOP");stopDrive(); }, drivetrain));
302
303
joystick.x().whileTrue(Commands.parallel(new DriveToPose(drivetrain,
304
new Transform2d(Units.inchesToMeters(-33.5/2+0.25), Units.inchesToMeters(13.5+2.25),
0 commit comments