2323import frc .robot .subsystems .indexer .IndexerSubsystem ;
2424import frc .robot .subsystems .intake .IntakeSubsystem ;
2525import frc .robot .subsystems .shooter .ShooterSubsystem ;
26- import frc .robot .subsystems .shooter .SimpleShooterSubsystem ;
2726
2827@ Logged
2928public class RobotContainer {
@@ -46,7 +45,6 @@ public class RobotContainer {
4645 @ Logged (name = "Shooter" )
4746 public final ShooterSubsystem shooter = new ShooterSubsystem ();
4847
49- public final SimpleShooterSubsystem simpleShooter = new SimpleShooterSubsystem ();
5048
5149 private final SendableChooser <Command > autoChooser ;
5250
@@ -105,10 +103,10 @@ public void configureTestBindings() {
105103 driverJoystick .rightBumper ().onTrue (Commands .runOnce (SignalLogger ::start ));
106104 driverJoystick .leftBumper ().onTrue (Commands .runOnce (SignalLogger ::stop ));
107105
108- operatorJoystick .y ().whileTrue (simpleShooter .sysIdQuasistatic (SysIdRoutine .Direction .kForward ));
109- operatorJoystick .a ().whileTrue (simpleShooter .sysIdQuasistatic (SysIdRoutine .Direction .kReverse ));
110- operatorJoystick .b ().whileTrue (simpleShooter .sysIdDynamic (SysIdRoutine .Direction .kForward ));
111- operatorJoystick .x ().whileTrue (simpleShooter .sysIdDynamic (SysIdRoutine .Direction .kReverse ));
106+ operatorJoystick .y ().whileTrue (shooter .sysIdQuasistatic (SysIdRoutine .Direction .kForward ));
107+ operatorJoystick .a ().whileTrue (shooter .sysIdQuasistatic (SysIdRoutine .Direction .kReverse ));
108+ operatorJoystick .b ().whileTrue (shooter .sysIdDynamic (SysIdRoutine .Direction .kForward ));
109+ operatorJoystick .x ().whileTrue (shooter .sysIdDynamic (SysIdRoutine .Direction .kReverse ));
112110
113111 // Reset the field-centric heading on left bumper press.
114112 driverJoystick .start ().onTrue (drivetrain .runOnce (drivetrain ::seedFieldCentric ));
@@ -140,7 +138,7 @@ public void configureTeleopBindings() {
140138 driverJoystick
141139 .leftTrigger ()
142140 .whileTrue (shooter .launchLemonsCommand ())
143- .onFalse (simpleShooter .stopLaunchLemonsNoPIDCommand ());
141+ .onFalse (shooter .stopLaunchLemonsNoPIDCommand ());
144142
145143 driverJoystick
146144 .rightTrigger ()
@@ -149,8 +147,8 @@ public void configureTeleopBindings() {
149147
150148 operatorJoystick
151149 .leftTrigger ()
152- .whileTrue (simpleShooter .launchLemonsCommandNoPID ())
153- .onFalse (simpleShooter .stopLaunchLemonsNoPIDCommand ());
150+ .whileTrue (shooter .launchLemonsCommandNoPID ())
151+ .onFalse (shooter .stopLaunchLemonsNoPIDCommand ());
154152
155153 operatorJoystick
156154 .rightTrigger ()
0 commit comments