1313import edu .wpi .first .wpilibj2 .command .button .JoystickButton ;
1414import edu .wpi .first .wpilibj2 .command .button .POVButton ;
1515import frc .robot .shuffleboard .GRTShuffleboardTab ;
16+ import frc .robot .subsystems .HoodSubsystem ;
1617import frc .robot .subsystems .IntakeSubsystem ;
1718import frc .robot .subsystems .InternalsSubsystem ;
1819import frc .robot .subsystems .swerve .SwerveSubsystem ;
@@ -29,9 +30,10 @@ public class RobotContainer {
2930 private final SwerveSubsystem swerveSubsystem ;
3031 private final IntakeSubsystem intakeSubsystem ;
3132 private final InternalsSubsystem internalsSubsystem ;
33+ private final HoodSubsystem hoodSubsystem ;
3234
3335 // Controllers and buttons
34- private final XboxController driveController = new XboxController (1 );
36+ private final XboxController driveController = new XboxController (0 );
3537 private final JoystickButton
3638 driveAButton = new JoystickButton (driveController , XboxController .Button .kA .value ),
3739 driveBButton = new JoystickButton (driveController , XboxController .Button .kB .value ),
@@ -40,7 +42,7 @@ public class RobotContainer {
4042 driveLBumper = new JoystickButton (driveController , XboxController .Button .kLeftBumper .value ),
4143 driveRBumper = new JoystickButton (driveController , XboxController .Button .kRightBumper .value );
4244
43- private final XboxController mechController = new XboxController (0 );
45+ private final XboxController mechController = new XboxController (1 );
4446 private final JoystickButton
4547 mechAButton = new JoystickButton (mechController , XboxController .Button .kA .value ),
4648 mechBButton = new JoystickButton (mechController , XboxController .Button .kB .value ),
@@ -59,6 +61,7 @@ public RobotContainer() {
5961 swerveSubsystem = new SwerveSubsystem ();
6062 intakeSubsystem = new IntakeSubsystem ();
6163 internalsSubsystem = new InternalsSubsystem ();
64+ hoodSubsystem = new HoodSubsystem ();
6265
6366 // Configure the button bindings
6467 configureButtonBindings ();
0 commit comments