Skip to content

Commit

Permalink
Added to RobotContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
MarissaKoglesby committed Apr 29, 2024
1 parent b82308f commit 96049b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import frc.robot.commands.RunIntake;
import frc.robot.commands.RunIntakeReverse;
import frc.robot.commands.StartCamera;
import frc.robot.commands.auto.DelayedTaxiAuto;
import frc.robot.commands.auto.DriveToCenterAuto;
import frc.robot.commands.auto.MoveAwayFromAmp;
import frc.robot.commands.auto.OnePieceAuto;
Expand Down Expand Up @@ -277,6 +278,9 @@ public class RobotContainer {
/** Singleton instance of {@link TaxiAuto} for the whole robot. */
public static TaxiAuto taxiAuto = new TaxiAuto();

/** Singleton instance of {@link DelayedTaxiAuto} for the whole robot. */
public static DelayedTaxiAuto delayedTaxiAuto = new DelayedTaxiAuto();

/** Singleton instance of {@link ClearPDPStickyFaults} for the whole robot. */
public static ClearPDPStickyFaults clearPDPStickyFaults = new ClearPDPStickyFaults();

Expand Down Expand Up @@ -351,6 +355,8 @@ private void configureAuto() {

autoChooser.addOption("NO INTAKE drive to center", driveToCenterAuto);

autoChooser.addOption("Taxi with 10 second delay", delayedTaxiAuto);

Shuffleboard.getTab("Driver").add("Choose Auto Routine", autoChooser);
}

Expand Down

0 comments on commit 96049b0

Please sign in to comment.