2023 Charge Up
0.1.0
Code for the Titanium Titans (FRC Team #4467)'s 2023 robot
|
Public Member Functions | |
void | robotInit () |
void | robotPeriodic () |
void | disabledInit () |
void | disabledPeriodic () |
void | autonomousInit () |
void | autonomousPeriodic () |
void | teleopInit () |
void | teleopPeriodic () |
void | testInit () |
void | testPeriodic () |
void | simulationInit () |
void | simulationPeriodic () |
The VM is configured to automatically run this class, and to call the functions corresponding to each mode, as described in the TimedRobot documentation. If you change the name of this class or the package after creating this project, you must also update the build.gradle file in the project.
void frc.robot.Robot.autonomousInit | ( | ) |
This autonomous runs the autonomous command selected by your RobotContainer class.
void frc.robot.Robot.autonomousPeriodic | ( | ) |
This function is called periodically during autonomous.
void frc.robot.Robot.disabledInit | ( | ) |
This function is called once each time the robot enters Disabled mode.
void frc.robot.Robot.robotInit | ( | ) |
This function is run when the robot is first started up and should be used for any initialization code.
void frc.robot.Robot.robotPeriodic | ( | ) |
This function is called every 20 ms, no matter the mode. Use this for items like diagnostics that you want ran during disabled, autonomous, teleoperated and test.
This runs after the mode specific periodic functions, but before LiveWindow and SmartDashboard integrated updating.
void frc.robot.Robot.simulationInit | ( | ) |
This function is called once when the robot is first started up.
void frc.robot.Robot.simulationPeriodic | ( | ) |
This function is called periodically whilst in simulation.
void frc.robot.Robot.teleopPeriodic | ( | ) |
This function is called periodically during operator control.
void frc.robot.Robot.testPeriodic | ( | ) |
This function is called periodically during test mode.