8#include <frc2/command/Command.h>
9#include <frc2/command/CommandHelper.h>
10#include <frc2/command/SequentialCommandGroup.h>
18 :
public frc2::CommandHelper<frc2::Command, AutonomousZeroNote>
27 void End(
bool interrupted)
override;
34 std::string
GetName()
const final;
A command that can be selected from the dashboard.
Definition autonomous_command.h:14
Definition autonomous_zero_note.h:19
void Execute() override
Definition autonomous_zero_note.cpp:23
frc2::SequentialCommandGroup m_commands
Definition autonomous_zero_note.h:42
bool IsFinished() override
Definition autonomous_zero_note.cpp:33
frc2::Command * GetCommand() final
Get the command to run when selected from dashboard.
Definition autonomous_zero_note.cpp:41
std::string GetName() const final
Get the name of the command to display on the dashboard.
Definition autonomous_zero_note.cpp:37
void Initialize() override
Definition autonomous_zero_note.cpp:18
SwerveDriveSubsystem & m_Swerve
Definition autonomous_zero_note.h:41
void End(bool interrupted) override
Definition autonomous_zero_note.cpp:28
Subsystem for controlling the swerve drivetrain of the robot.
Definition swerve_drive_subsystem.h:67