Files
RiseOfRidgebotics2020/src/main/java/frc4388/robot/commands/auto/TenBallAutoMiddle.java
T

61 lines
2.6 KiB
Java
Raw Normal View History

2020-03-11 17:49:09 -06:00
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
package frc4388.robot.commands.auto;
2020-03-13 08:37:28 -06:00
import edu.wpi.first.wpilibj2.command.ParallelDeadlineGroup;
2020-03-11 17:49:09 -06:00
import edu.wpi.first.wpilibj2.command.RamseteCommand;
2020-03-13 08:37:28 -06:00
import edu.wpi.first.wpilibj2.command.RunCommand;
2020-03-11 17:49:09 -06:00
import edu.wpi.first.wpilibj2.command.SequentialCommandGroup;
2020-03-13 08:37:28 -06:00
import frc4388.robot.Constants.IntakeConstants;
import frc4388.robot.commands.shooter.CalibrateShooter;
import frc4388.robot.commands.shooter.PrepChecker;
import frc4388.robot.commands.shooter.ShootPrepGroup;
import frc4388.robot.commands.storage.RunStorage;
2020-03-11 17:49:09 -06:00
import frc4388.robot.subsystems.Drive;
2020-03-13 08:37:28 -06:00
import frc4388.robot.subsystems.Intake;
2021-04-03 15:39:00 -06:00
import frc4388.robot.subsystems.LimeLight;
2020-03-13 08:37:28 -06:00
import frc4388.robot.subsystems.Shooter;
import frc4388.robot.subsystems.ShooterAim;
import frc4388.robot.subsystems.ShooterHood;
import frc4388.robot.subsystems.Storage;
2020-03-11 17:49:09 -06:00
// NOTE: Consider using this command inline, rather than writing a subclass. For more
// information, see:
// https://docs.wpilib.org/en/latest/docs/software/commandbased/convenience-features.html
public class TenBallAutoMiddle extends SequentialCommandGroup {
/**
* Creates a new TenBallAutoMiddle.
*/
2021-04-03 15:39:00 -06:00
public TenBallAutoMiddle(ShooterHood shooterHood, Storage storage, Intake intake, Shooter shooter, ShooterAim shooterAim, Drive drive, LimeLight m_limeLight, RamseteCommand[] paths) {
2020-03-11 17:49:09 -06:00
// Add your commands in the super() call, e.g.
// super(new FooCommand(), new BarCommand());
addCommands(
2020-03-13 08:37:28 -06:00
new ParallelDeadlineGroup(
new Wait(drive, 0.1, 0),
new CalibrateShooter(shooter, shooterAim, shooterHood)
),
new ParallelDeadlineGroup(
new Wait(drive, 1, 0),
new RunCommand(() -> shooterAim.runShooterWithInput(-0.75), shooterAim)
),
new ParallelDeadlineGroup(
new Wait(drive, 4, 0),
new PrepChecker(shooter, shooterAim),
new RunCommand(() -> intake.runExtender(IntakeConstants.EXTENDER_SPEED), intake),
2021-04-03 15:39:00 -06:00
new ShootPrepGroup(shooter, shooterAim, shooterHood, storage, m_limeLight)
2020-03-13 08:37:28 -06:00
),
new ParallelDeadlineGroup(
2021-04-03 15:39:00 -06:00
new ShootPrepGroup(shooter, shooterAim, shooterHood, storage, m_limeLight),
2020-03-13 08:37:28 -06:00
new RunStorage(storage)
)
//paths[0],
//paths[1]
2020-03-11 17:49:09 -06:00
);
}
}