clear out robot.java
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / Robot.java
1 package org.usfirst.frc.team3501.robot;
2
3 import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
4
5 import edu.wpi.first.wpilibj.IterativeRobot;
6 import edu.wpi.first.wpilibj.command.Scheduler;
7
8 public class Robot extends IterativeRobot {
9
10 @Override
11 public void robotInit() {
12
13 }
14
15 public static DriveTrain getDriveTrain() {
16 return DriveTrain.getDriveTrain();
17 }
18
19 public static OI getOI() {
20 return OI.getOI();
21 }
22
23 @Override
24 public void autonomousInit() {
25 Scheduler.getInstance();
26 }
27
28 @Override
29 public void autonomousPeriodic() {
30 Scheduler.getInstance().run();
31
32 }
33
34 @Override
35 public void teleopInit() {
36 }
37
38 @Override
39 public void teleopPeriodic() {
40 Scheduler.getInstance().run();
41
42 }
43 }