2023-09-15 20:42:21 -07: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.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2025-11-08 16:58:51 -08:00
|
|
|
#include "wpi/framework/TimesliceRobot.hpp"
|
2023-09-15 20:42:21 -07:00
|
|
|
|
2025-11-07 20:00:05 -05:00
|
|
|
class Robot : public wpi::TimesliceRobot {
|
2023-09-15 20:42:21 -07:00
|
|
|
public:
|
|
|
|
|
Robot();
|
|
|
|
|
|
|
|
|
|
void RobotPeriodic() override;
|
|
|
|
|
|
|
|
|
|
void AutonomousInit() override;
|
|
|
|
|
void AutonomousPeriodic() override;
|
|
|
|
|
|
|
|
|
|
void TeleopInit() override;
|
|
|
|
|
void TeleopPeriodic() override;
|
|
|
|
|
|
|
|
|
|
void DisabledInit() override;
|
|
|
|
|
void DisabledPeriodic() override;
|
|
|
|
|
|
|
|
|
|
void TestInit() override;
|
|
|
|
|
void TestPeriodic() override;
|
|
|
|
|
};
|