4040import frc .robot .commands .elevator .SetElevatorPositionCommand ;
4141import frc .robot .commands .elevator .ZeroElevatorCommand ;
4242import frc .robot .commands .robotState .AutoReefCycleCommand ;
43+ import frc .robot .commands .robotState .DepthChargeHealthCheckCommand ;
4344import frc .robot .commands .robotState .FloorAlgaeCommand ;
4445import frc .robot .commands .robotState .ForceProcessorCommand ;
4546import frc .robot .commands .robotState .HPAlgaeCommand ;
4647import frc .robot .commands .robotState .InterruptAutoCommand ;
48+ import frc .robot .commands .robotState .LockWheelsCommand ;
4749import frc .robot .commands .robotState .ReefCycleCommand ;
4850import frc .robot .commands .robotState .ScoreAlgaeCommand ;
4951import frc .robot .commands .robotState .SetScoreSideCommand ;
5456import frc .robot .commands .robotState .ToggleAlgaeHeightCommand ;
5557import frc .robot .commands .robotState .ToggleAutoPlacingCommand ;
5658import frc .robot .commands .robotState .ToggleGetAlgaeCommand ;
57- import frc .robot .commands .robotState .lockwheelscommand ;
5859import frc .robot .commands .robotState .setScoreSideLeftCommand ;
5960import frc .robot .commands .vision .SetVisionUpdatesCommand ;
6061import frc .robot .constants .BiscuitConstants ;
7172import frc .robot .subsystems .climb .ClimbIO ;
7273import frc .robot .subsystems .climb .ClimbIOServoFX ;
7374import frc .robot .subsystems .climb .ClimbSubsystem ;
74- import frc .robot .subsystems .coral .CoralIO ;
7575import frc .robot .subsystems .coral .CoralIOFX ;
7676import frc .robot .subsystems .coral .CoralSubsystem ;
7777import frc .robot .subsystems .drive .DriveSubsystem ;
7878import frc .robot .subsystems .drive .Swerve ;
7979import frc .robot .subsystems .drive .SwerveFXS ;
80- import frc .robot .subsystems .elevator .ElevatorIO ;
8180import frc .robot .subsystems .elevator .ElevatorIOFX ;
8281import frc .robot .subsystems .elevator .ElevatorSubsystem ;
8382import frc .robot .subsystems .elevator .ElevatorSubsystem .ElevatorStates ;
@@ -110,14 +109,14 @@ public class RobotContainer {
110109 private final ClimbIO climbIO ;
111110 private final ClimbSubsystem climbSubsystem ;
112111
113- private final CoralIO coralIO ;
112+ private final CoralIOFX coralIO ;
114113 private final CoralSubsystem coralSubsystem ;
115114
116115 private Swerve protoSwerve ;
117116 private SwerveFXS swerve ;
118117 private final DriveSubsystem driveSubsystem ;
119118
120- private final ElevatorIO elevatorIO ;
119+ private final ElevatorIOFX elevatorIO ;
121120 private final ElevatorSubsystem elevatorSubsystem ;
122121
123122 private final FunnelIOFXS funnelIO ;
@@ -602,7 +601,7 @@ private void configurePitDashboard() {
602601 .withSize (1 , 1 );
603602
604603 Shuffleboard .getTab ("Pit" )
605- .add ("Lock Wheels" , new lockwheelscommand (driveSubsystem ))
604+ .add ("Lock Wheels" , new LockWheelsCommand (driveSubsystem ))
606605 .withPosition (3 , 1 )
607606 .withSize (1 , 1 );
608607
@@ -615,6 +614,25 @@ private void configurePitDashboard() {
615614 .add ("Stop Azimuths" , new StopAllAxisCommand (robotStateSubsystem ).ignoringDisable (true ))
616615 .withPosition (5 , 1 )
617616 .withSize (1 , 1 );
617+
618+ Shuffleboard .getTab ("Pit" )
619+ .add (
620+ "Health Check" ,
621+ new DepthChargeHealthCheckCommand (
622+ swerve ,
623+ driveSubsystem ,
624+ funnelIO ,
625+ funnelSubsystem ,
626+ coralIO ,
627+ coralSubsystem ,
628+ algaeIO ,
629+ algaeSubsystem ,
630+ elevatorIO ,
631+ elevatorSubsystem ,
632+ biscuitIO ,
633+ biscuitSubsystem ))
634+ .withPosition (6 , 1 )
635+ .withSize (1 , 1 );
618636 }
619637
620638 public void configTestDash () {
0 commit comments