Skip to content

Commit

Permalink
fix: run kid mode swerve drive
Browse files Browse the repository at this point in the history
  • Loading branch information
rutmanz authored Sep 14, 2024
1 parent 05771a7 commit e89068c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/team1540/robot2024/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.team1540.robot2024.commands.autos.*;
import org.team1540.robot2024.commands.climb.ClimbAlignment;
import org.team1540.robot2024.commands.drivetrain.DriveWithAmpSideLock;
import org.team1540.robot2024.commands.drivetrain.SwerveDriveCommand;
import org.team1540.robot2024.commands.drivetrain.KidModeSwerveDriveCommand;
import org.team1540.robot2024.commands.drivetrain.WheelRadiusCharacterization;
import org.team1540.robot2024.commands.elevator.ElevatorManualCommand;
import org.team1540.robot2024.commands.indexer.ContinuousIntakeCommand;
Expand Down Expand Up @@ -130,7 +130,7 @@ private void configureLedBindings() {

private void configureButtonBindings() {
Command manualPivotCommand = new ManualPivotCommand(shooter, copilot);
drivetrain.setDefaultCommand(new SwerveDriveCommand(drivetrain, driver));
drivetrain.setDefaultCommand(new KidModeSwerveDriveCommand(drivetrain, driver));
elevator.setDefaultCommand(new ElevatorManualCommand(elevator, copilot));
shooter.setDefaultCommand(manualPivotCommand);
driver.b().onTrue(Commands.runOnce(drivetrain::stopWithX, drivetrain));
Expand Down

0 comments on commit e89068c

Please sign in to comment.