From 21db9d8812db0a3dc855706045dbe8af017ce03d Mon Sep 17 00:00:00 2001 From: Ghozti <62896836+ghozti@users.noreply.github.com> Date: Tue, 9 Aug 2022 22:02:52 -0400 Subject: [PATCH] - commented on Robot.java --- core/src/Robot/Robot.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/src/Robot/Robot.java b/core/src/Robot/Robot.java index ece906c..2fe7436 100644 --- a/core/src/Robot/Robot.java +++ b/core/src/Robot/Robot.java @@ -9,26 +9,31 @@ public Robot(){ } + //called once per program init @Override public void robotInit() { } + //called periodically at all times @Override public void robotPeriodic() { } + //called periodically during autonomous @Override public void autonomousPeriodic() { } + //called periodically during tele-op @Override public void teleopPeriodic() { } + //called once when set to kill @Override public void robotShutDown() {