Setup port and initialize wheel object for ShooterTest to use
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Robot.java
index 36ca70bc268a526c02d33f5531c1d8d550fcbe90..79e12d9e00d8adc2adeb8be51b8fd97fa8978459 100644 (file)
@@ -1,17 +1,21 @@
 package org.usfirst.frc.team3501.robot;
 
 import org.usfirst.frc.team3501.robot.Constants.DriveTrain;
+import org.usfirst.frc.team3501.robot.subsystems.Shooter;
+
 import edu.wpi.first.wpilibj.IterativeRobot;
 import edu.wpi.first.wpilibj.command.Scheduler;
 
 public class Robot extends IterativeRobot {
   public static OI oi;
   public static DriveTrain driveTrain;
+  public static Shooter shooter;
 
   @Override
   public void robotInit() {
     driveTrain = new DriveTrain();
     oi = new OI();
+    shooter = new Shooter();
   }
 
   @Override