Skip to content

Commit

Permalink
Update names of the registered commands for autonomous
Browse files Browse the repository at this point in the history
Names that were registered with PathPlanner were not correct in the PathPlannerGUI, this is now fixed.
  • Loading branch information
garrettsummerfi3ld committed Mar 22, 2024
1 parent 2673eea commit 49346c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ public RobotContainer() {
elevator.setDefaultCommand(new ElevatorControl(elevator));
// Register Named Commands
NamedCommands.registerCommand(
"shootConveyor", new InstantCommand(() -> conveyor.intakeConveyor()));
"SHOOOTCONVEYOR", new InstantCommand(() -> conveyor.intakeConveyor()));
NamedCommands.registerCommand(
"shootFlyWheel", new InstantCommand(() -> FlyWheel.enableflywheelfull()));
"SHOOTFLYS", new InstantCommand(() -> FlyWheel.enableflywheelfull()));
NamedCommands.registerCommand("dump", new InstantCommand(() -> dump.open()));
NamedCommands.registerCommand("Dump bed", new dumpBed(dump));
// Configure the trigger bindings
Expand Down

0 comments on commit 49346c9

Please sign in to comment.