Skip to content

Commit

Permalink
Revert "Update names of the registered commands for autonomous"
Browse files Browse the repository at this point in the history
This reverts commit 49346c9.
  • Loading branch information
garrettsummerfi3ld committed Mar 23, 2024
1 parent 49346c9 commit c5fdbf1
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(
"SHOOOTCONVEYOR", new InstantCommand(() -> conveyor.intakeConveyor()));
"shootConveyor", new InstantCommand(() -> conveyor.intakeConveyor()));
NamedCommands.registerCommand(
"SHOOTFLYS", new InstantCommand(() -> FlyWheel.enableflywheelfull()));
"shootFlyWheel", 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 c5fdbf1

Please sign in to comment.