WPILibC++ 2024.3.2
frc::TimedRobot Class Reference

TimedRobot implements the IterativeRobotBase robot program framework. More...

#include <frc/TimedRobot.h>

Inheritance diagram for frc::TimedRobot:
frc::IterativeRobotBase frc::RobotBase frc::TimesliceRobot

Public Member Functions

void StartCompetition () override
 Provide an alternate "main loop" via StartCompetition(). More...
 
void EndCompetition () override
 Ends the main loop in StartCompetition(). More...
 
 TimedRobot (units::second_t period=kDefaultPeriod)
 Constructor for TimedRobot. More...
 
 ~TimedRobot () override
 
 TimedRobot (TimedRobot &&)=default
 
TimedRobotoperator= (TimedRobot &&)=default
 
void AddPeriodic (std::function< void()> callback, units::second_t period, units::second_t offset=0_s)
 Add a callback to run at a specific period with a starting time offset. More...
 
- Public Member Functions inherited from frc::IterativeRobotBase
virtual void RobotInit ()
 Robot-wide initialization code should go here. More...
 
virtual void DriverStationConnected ()
 Code that needs to know the DS state should go here. More...
 
virtual void SimulationInit ()
 Robot-wide simulation initialization code should go here. More...
 
virtual void DisabledInit ()
 Initialization code for disabled mode should go here. More...
 
virtual void AutonomousInit ()
 Initialization code for autonomous mode should go here. More...
 
virtual void TeleopInit ()
 Initialization code for teleop mode should go here. More...
 
virtual void TestInit ()
 Initialization code for test mode should go here. More...
 
virtual void RobotPeriodic ()
 Periodic code for all modes should go here. More...
 
virtual void SimulationPeriodic ()
 Periodic simulation code should go here. More...
 
virtual void DisabledPeriodic ()
 Periodic code for disabled mode should go here. More...
 
virtual void AutonomousPeriodic ()
 Periodic code for autonomous mode should go here. More...
 
virtual void TeleopPeriodic ()
 Periodic code for teleop mode should go here. More...
 
virtual void TestPeriodic ()
 Periodic code for test mode should go here. More...
 
virtual void DisabledExit ()
 Exit code for disabled mode should go here. More...
 
virtual void AutonomousExit ()
 Exit code for autonomous mode should go here. More...
 
virtual void TeleopExit ()
 Exit code for teleop mode should go here. More...
 
virtual void TestExit ()
 Exit code for test mode should go here. More...
 
void SetNetworkTablesFlushEnabled (bool enabled)
 Enables or disables flushing NetworkTables every loop iteration. More...
 
void EnableLiveWindowInTest (bool testLW)
 Sets whether LiveWindow operation is enabled during test mode. More...
 
bool IsLiveWindowEnabledInTest ()
 Whether LiveWindow operation is enabled during test mode. More...
 
units::second_t GetPeriod () const
 Gets time period between calls to Periodic() functions. More...
 
 IterativeRobotBase (units::second_t period)
 Constructor for IterativeRobotBase. More...
 
 ~IterativeRobotBase () override=default
 
- Public Member Functions inherited from frc::RobotBase
bool IsEnabled () const
 Determine if the Robot is currently enabled. More...
 
bool IsDisabled () const
 Determine if the Robot is currently disabled. More...
 
bool IsAutonomous () const
 Determine if the robot is currently in Autonomous mode. More...
 
bool IsAutonomousEnabled () const
 Determine if the robot is currently in Autonomous mode and enabled. More...
 
bool IsTeleop () const
 Determine if the robot is currently in Operator Control mode. More...
 
bool IsTeleopEnabled () const
 Determine if the robot is current in Operator Control mode and enabled. More...
 
bool IsTest () const
 Determine if the robot is currently in Test mode. More...
 
bool IsTestEnabled () const
 Determine if the robot is current in Test mode and enabled. More...
 
virtual void StartCompetition ()=0
 Start the main robot code. More...
 
virtual void EndCompetition ()=0
 Ends the main loop in StartCompetition(). More...
 
 RobotBase ()
 Constructor for a generic robot program. More...
 
virtual ~RobotBase ()=default
 

Static Public Attributes

static constexpr auto kDefaultPeriod = 20_ms
 Default loop period. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from frc::RobotBase
static std::thread::id GetThreadId ()
 Returns the main thread ID. More...
 
static RuntimeType GetRuntimeType ()
 Get the current runtime type. More...
 
static constexpr bool IsReal ()
 Get if the robot is real. More...
 
static constexpr bool IsSimulation ()
 Get if the robot is a simulation. More...
 
- Protected Member Functions inherited from frc::IterativeRobotBase
 IterativeRobotBase (IterativeRobotBase &&)=default
 
IterativeRobotBaseoperator= (IterativeRobotBase &&)=default
 
void LoopFunc ()
 Loop function. More...
 
- Protected Member Functions inherited from frc::RobotBase
 RobotBase (RobotBase &&)=default
 
RobotBaseoperator= (RobotBase &&)=default
 
- Static Protected Attributes inherited from frc::RobotBase
static std::thread::id m_threadId
 

Detailed Description

TimedRobot implements the IterativeRobotBase robot program framework.

The TimedRobot class is intended to be subclassed by a user creating a robot program.

Periodic() functions from the base class are called on an interval by a Notifier instance.

Constructor & Destructor Documentation

◆ TimedRobot() [1/2]

frc::TimedRobot::TimedRobot ( units::second_t  period = kDefaultPeriod)
explicit

Constructor for TimedRobot.

Parameters
periodPeriod.

◆ ~TimedRobot()

frc::TimedRobot::~TimedRobot ( )
override

◆ TimedRobot() [2/2]

frc::TimedRobot::TimedRobot ( TimedRobot &&  )
default

Member Function Documentation

◆ AddPeriodic()

void frc::TimedRobot::AddPeriodic ( std::function< void()>  callback,
units::second_t  period,
units::second_t  offset = 0_s 
)

Add a callback to run at a specific period with a starting time offset.

This is scheduled on TimedRobot's Notifier, so TimedRobot and the callback run synchronously. Interactions between them are thread-safe.

Parameters
callbackThe callback to run.
periodThe period at which to run the callback.
offsetThe offset from the common starting time. This is useful for scheduling a callback in a different timeslot relative to TimedRobot.

◆ EndCompetition()

void frc::TimedRobot::EndCompetition ( )
overridevirtual

Ends the main loop in StartCompetition().

Implements frc::RobotBase.

◆ operator=()

TimedRobot & frc::TimedRobot::operator= ( TimedRobot &&  )
default

◆ StartCompetition()

void frc::TimedRobot::StartCompetition ( )
overridevirtual

Provide an alternate "main loop" via StartCompetition().

Implements frc::RobotBase.

Member Data Documentation

◆ kDefaultPeriod

constexpr auto frc::TimedRobot::kDefaultPeriod = 20_ms
staticconstexpr

Default loop period.


The documentation for this class was generated from the following file: