2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2016-11-01 23:41:05 -07:00
|
|
|
|
2020-06-26 11:10:34 -07:00
|
|
|
package frc.robot;
|
|
|
|
|
|
2025-11-08 15:08:38 -08:00
|
|
|
import org.wpilib.framework.TimedRobot;
|
2016-11-01 23:41:05 -07:00
|
|
|
|
2024-05-24 10:41:23 -07:00
|
|
|
public class Robot extends TimedRobot {
|
2016-11-01 23:41:05 -07:00
|
|
|
/**
|
2020-12-29 22:45:16 -08:00
|
|
|
* This function is run when the robot is first started up and should be used for any
|
|
|
|
|
* initialization code.
|
2016-11-01 23:41:05 -07:00
|
|
|
*/
|
2024-07-17 11:22:39 +08:00
|
|
|
public Robot() {}
|
2016-11-01 23:41:05 -07:00
|
|
|
|
2022-09-24 00:13:55 -07:00
|
|
|
/** This function is run once each time the robot enters autonomous mode. */
|
2016-11-01 23:41:05 -07:00
|
|
|
@Override
|
|
|
|
|
public void autonomousInit() {}
|
|
|
|
|
|
2022-09-24 00:13:55 -07:00
|
|
|
/** This function is called periodically during autonomous. */
|
2016-11-01 23:41:05 -07:00
|
|
|
@Override
|
|
|
|
|
public void autonomousPeriodic() {}
|
|
|
|
|
|
2022-09-24 00:13:55 -07:00
|
|
|
/** This function is called once each time the robot enters tele-operated mode. */
|
2016-11-01 23:41:05 -07:00
|
|
|
@Override
|
|
|
|
|
public void teleopInit() {}
|
|
|
|
|
|
2022-09-24 00:13:55 -07:00
|
|
|
/** This function is called periodically during operator control. */
|
2016-11-01 23:41:05 -07:00
|
|
|
@Override
|
|
|
|
|
public void teleopPeriodic() {}
|
|
|
|
|
|
2022-09-24 00:13:55 -07:00
|
|
|
/** This function is called periodically during test mode. */
|
2016-11-01 23:41:05 -07:00
|
|
|
@Override
|
|
|
|
|
public void testPeriodic() {}
|
|
|
|
|
|
2022-09-24 00:13:55 -07:00
|
|
|
/** This function is called periodically during all modes. */
|
2016-11-01 23:41:05 -07:00
|
|
|
@Override
|
|
|
|
|
public void robotPeriodic() {}
|
|
|
|
|
}
|