fix bugs
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / Robot.java
CommitLineData
38a404b3
KZ
1package org.usfirst.frc.team3501.robot;
2
8e4c083c 3import org.usfirst.frc.team3501.robot.commands.driving.DriveDistance;
cca02549 4import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
6f3b6d29 5import org.usfirst.frc.team3501.robot.subsystems.Intake;
079a8cb6 6import org.usfirst.frc.team3501.robot.subsystems.Shooter;
6acd1f1b 7
38a404b3
KZ
8import edu.wpi.first.wpilibj.IterativeRobot;
9import edu.wpi.first.wpilibj.command.Scheduler;
10
11public class Robot extends IterativeRobot {
6acd1f1b 12 private static DriveTrain driveTrain;
414d5638 13 private static Shooter shooter;
6acd1f1b 14 private static OI oi;
6f3b6d29 15 private static Intake intake;
38a404b3
KZ
16
17 @Override
18 public void robotInit() {
6acd1f1b
CZ
19 driveTrain = DriveTrain.getDriveTrain();
20 oi = OI.getOI();
079a8cb6 21 shooter = Shooter.getShooter();
6f3b6d29 22 intake = Intake.getIntake();
cca02549 23 }
6acd1f1b
CZ
24
25 public static DriveTrain getDriveTrain() {
26 return DriveTrain.getDriveTrain();
cca02549 27 }
6acd1f1b 28
414d5638 29 public static Shooter getShooter() {
30 return Shooter.getShooter();
31 }
32
6acd1f1b
CZ
33 public static OI getOI() {
34 return OI.getOI();
38a404b3
KZ
35 }
36
6f3b6d29 37 public static Intake getIntake() {
7992f152
AD
38 return Intake.getIntake();
39 }
40
38a404b3
KZ
41 @Override
42 public void autonomousInit() {
8e4c083c 43 Scheduler.getInstance().add(new DriveDistance(25, 10));
38a404b3
KZ
44 }
45
46 @Override
47 public void autonomousPeriodic() {
48 Scheduler.getInstance().run();
49
50 }
51
52 @Override
53 public void teleopInit() {
54 }
55
56 @Override
57 public void teleopPeriodic() {
58 Scheduler.getInstance().run();
59
60 }
61}