Class IterativeRobotBase
- All Implemented Interfaces:
AutoCloseable
- Direct Known Subclasses:
TimedRobot
public abstract class IterativeRobotBase extends RobotBase
The IterativeRobotBase class does not implement startCompetition(), so it should not be used by teams directly.
This class provides the following functions which are called by the main loop, startCompetition(), at the appropriate times:
robotInit() -- provide for initialization at robot power-on
init() functions -- each of the following functions is called once when the appropriate mode is entered:
- disabledInit() -- called each and every time disabled is entered from another mode
- autonomousInit() -- called each and every time autonomous is entered from another mode
- teleopInit() -- called each and every time teleop is entered from another mode
- testInit() -- called each and every time test is entered from another mode
periodic() functions -- each of these functions is called on an interval:
- robotPeriodic()
- disabledPeriodic()
- autonomousPeriodic()
- teleopPeriodic()
- testPeriodic()
final() functions -- each of the following functions is called once when the appropriate mode is exited:
- disabledExit() -- called each and every time disabled is exited
- autonomousExit() -- called each and every time autonomous is exited
- teleopExit() -- called each and every time teleop is exited
- testExit() -- called each and every time test is exited
-
Constructor Summary
Constructors Modifier Constructor Description protectedIterativeRobotBase(double period)Constructor for IterativeRobotBase. -
Method Summary
Modifier and Type Method Description voidautonomousExit()Exit code for autonomous mode should go here.voidautonomousInit()Initialization code for autonomous mode should go here.voidautonomousPeriodic()Periodic code for autonomous mode should go here.voiddisabledExit()Exit code for disabled mode should go here.voiddisabledInit()Initialization code for disabled mode should go here.voiddisabledPeriodic()Periodic code for disabled mode should go here.doublegetPeriod()Gets time period between calls to Periodic() functions.protected voidloopFunc()voidrobotInit()Robot-wide initialization code should go here.voidrobotPeriodic()Periodic code for all robot modes should go here.voidsetNetworkTablesFlushEnabled(boolean enabled)Enables or disables flushing NetworkTables every loop iteration.voidsimulationInit()Robot-wide simulation initialization code should go here.voidsimulationPeriodic()Periodic simulation code should go here.abstract voidstartCompetition()Provide an alternate "main loop" via startCompetition().voidteleopExit()Exit code for teleop mode should go here.voidteleopInit()Initialization code for teleop mode should go here.voidteleopPeriodic()Periodic code for teleop mode should go here.voidtestExit()Exit code for test mode should go here.voidtestInit()Initialization code for test mode should go here.voidtestPeriodic()Periodic code for test mode should go here.Methods inherited from class edu.wpi.first.wpilibj.RobotBase
close, endCompetition, getBooleanProperty, getMainThreadId, getRuntimeType, isAutonomous, isAutonomousEnabled, isDisabled, isEnabled, isNewDataAvailable, isOperatorControl, isOperatorControlEnabled, isReal, isSimulation, isTeleop, isTeleopEnabled, isTest, startRobot, suppressExitWarning
-
Constructor Details
-
IterativeRobotBase
Constructor for IterativeRobotBase.- Parameters:
period- Period in seconds.
-
-
Method Details
-
startCompetition
Provide an alternate "main loop" via startCompetition().- Specified by:
startCompetitionin classRobotBase
-
robotInit
Robot-wide initialization code should go here.Users should override this method for default Robot-wide initialization which will be called when the robot is first powered on. It will be called exactly one time.
Warning: the Driver Station "Robot Code" light and FMS "Robot Ready" indicators will be off until RobotInit() exits. Code in RobotInit() that waits for enable will cause the robot to never indicate that the code is ready, causing the robot to be bypassed in a match.
-
simulationInit
Robot-wide simulation initialization code should go here.Users should override this method for default Robot-wide simulation related initialization which will be called when the robot is first started. It will be called exactly one time after RobotInit is called only when the robot is in simulation.
-
disabledInit
Initialization code for disabled mode should go here.Users should override this method for initialization code which will be called each time the robot enters disabled mode.
-
autonomousInit
Initialization code for autonomous mode should go here.Users should override this method for initialization code which will be called each time the robot enters autonomous mode.
-
teleopInit
Initialization code for teleop mode should go here.Users should override this method for initialization code which will be called each time the robot enters teleop mode.
-
testInit
Initialization code for test mode should go here.Users should override this method for initialization code which will be called each time the robot enters test mode.
-
robotPeriodic
Periodic code for all robot modes should go here. -
simulationPeriodic
Periodic simulation code should go here.This function is called in a simulated robot after user code executes.
-
disabledPeriodic
Periodic code for disabled mode should go here. -
autonomousPeriodic
Periodic code for autonomous mode should go here. -
teleopPeriodic
Periodic code for teleop mode should go here. -
testPeriodic
Periodic code for test mode should go here. -
disabledExit
Exit code for disabled mode should go here.Users should override this method for code which will be called each time the robot exits disabled mode.
-
autonomousExit
Exit code for autonomous mode should go here.Users should override this method for code which will be called each time the robot exits autonomous mode.
-
teleopExit
Exit code for teleop mode should go here.Users should override this method for code which will be called each time the robot exits teleop mode.
-
testExit
Exit code for test mode should go here.Users should override this method for code which will be called each time the robot exits test mode.
-
setNetworkTablesFlushEnabled
Enables or disables flushing NetworkTables every loop iteration. By default, this is disabled.- Parameters:
enabled- True to enable, false to disable
-
getPeriod
Gets time period between calls to Periodic() functions.- Returns:
- The time period between calls to Periodic() functions.
-
loopFunc
-