import frc.robot.subsystems.drivetrain.Drivetrain;
import frc.robot.subsystems.shooter.Shooter;
import frc.robot.subsystems.shooter.ShooterConstants;
+import frc.robot.subsystems.spindexer.Spindexer;
import frc.robot.subsystems.turret.Turret;
import frc.robot.subsystems.hood.Hood;
import frc.robot.subsystems.hood.HoodConstants;
+import frc.robot.subsystems.intake.Intake;
import lib.controllers.PS5Controller;
import lib.controllers.PS5Controller.PS5Axis;
import lib.controllers.PS5Controller.PS5Button;
private Shooter shooter;
private Turret turret;
private Hood hood;
+ private Intake intake;
+ private Spindexer spindexer;
private Pose2d alignmentPose = null;
private Command turretAutoShoot;
interrupted->getDrivetrain().setStateDeadband(true),
()->false, getDrivetrain()).withTimeout(2));
+ if(intake != null){
+
+ }
+
// driver.get(PS5Button.LB).onTrue(
// new SequentialCommandGroup(
// new InstantCommand(()-> shooter.setShooter(-ShooterConstants.SHOOTER_VELOCITY)),