7#include <frc2/command/Command.h>
8#include <frc2/command/CommandHelper.h>
17 :
public frc2::CommandHelper<frc2::Command, AutonomousNothing>
26 void End(
bool interrupted)
override;
33 std::string
GetName()
const final;
A command that can be selected from the dashboard.
Definition autonomous_command.h:14
Definition autonomous_nothing.h:18
frc2::Command * GetCommand() final
Get the command to run when selected from dashboard.
Definition autonomous_nothing.cpp:42
InitializeOdometryCommand m_initializeOdometryRed
Definition autonomous_nothing.h:41
void End(bool interrupted) override
Definition autonomous_nothing.cpp:31
void Initialize() override
Definition autonomous_nothing.cpp:17
bool IsFinished() override
Definition autonomous_nothing.cpp:34
void Execute() override
Definition autonomous_nothing.cpp:28
InitializeOdometryCommand m_initializeOdometryBlue
Definition autonomous_nothing.h:42
std::string GetName() const final
Get the name of the command to display on the dashboard.
Definition autonomous_nothing.cpp:38
SwerveDriveSubsystem & m_swerve
Definition autonomous_nothing.h:40
Definition initialize_odometry_command.h:13
Subsystem for controlling the swerve drivetrain of the robot.
Definition swerve_drive_subsystem.h:67