Skip to content

Commit

Permalink
fixed rawforward so the wheels align
Browse files Browse the repository at this point in the history
  • Loading branch information
DriverStationComputer committed Sep 27, 2024
1 parent cd9bb2c commit d1ea79e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/org/carlmontrobotics/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,9 @@ private void setupAutos() {
// NOTHING
autoCommands.add(0, new PrintCommand("Running NULL Auto!"));
// RAW FORWARD command
autoCommands.add(1, new LastResortAuto(drivetrain));
autoCommands.add(1, new SequentialCommandGroup(
new InstantCommand(() -> drivetrain.drive(-.0001, 0, 0)), new WaitCommand(0.5),
new LastResortAuto(drivetrain)));
// dumb PP forward command
autoCommands.add(2, new PrintCommand("PPSimpleAuto not Configured!"));
}
Expand Down

0 comments on commit d1ea79e

Please sign in to comment.