8#include <frc2/command/CommandBase.h>
9#include <frc2/command/CommandHelper.h>
10#include <frc2/command/SequentialCommandGroup.h>
21 :
public frc2::CommandHelper<frc2::CommandBase, AutonomousCenterLeft2ballDelay>
30 void End(
bool interrupted)
override;
37 std::string
GetName()
const final;
Definition: autonomous_center_left_2ball_delay.h:22
frc2::Command * GetCommand() final
Get the command to run when selected from dashboard.
Definition: autonomous_center_left_2ball_delay.cpp:44
std::string GetName() const final
Get the name of the command to display on the dashboard.
Definition: autonomous_center_left_2ball_delay.cpp:40
SwerveDriveSubsystem * m_pDrive
Definition: autonomous_center_left_2ball_delay.h:46
ShooterSubsystem * m_pShooter
Definition: autonomous_center_left_2ball_delay.h:45
void End(bool interrupted) override
Definition: autonomous_center_left_2ball_delay.cpp:31
DelayCommand m_startDelay
Definition: autonomous_center_left_2ball_delay.h:48
bool IsFinished() override
Definition: autonomous_center_left_2ball_delay.cpp:36
frc2::SequentialCommandGroup m_allCommands
Definition: autonomous_center_left_2ball_delay.h:50
IntakeSubsystem * m_pIntake
Definition: autonomous_center_left_2ball_delay.h:44
void Execute() override
Definition: autonomous_center_left_2ball_delay.cpp:26
void Initialize() override
Definition: autonomous_center_left_2ball_delay.cpp:20
A command that can be selected from the dashboard.
Definition: autonomous_command.h:14
Definition: delay_command.h:13
Controls the Intake of the robot and provides internal ball position state info.
Definition: intake_subsystem.h:24
Definition: shooter_subsystem.h:138
Subsystem for controlling the swerve drivetrain of the robot.
Definition: swerve_drive_subsystem.h:50