comment out necessary stuff in OI
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Robot.java
index 9bc45b8f2c73ca742e7f332ff1fee083c63201ca..8beb817d189bba11dd761c6f2f3da5ffa05a60a2 100644 (file)
@@ -1,6 +1,7 @@
 package org.usfirst.frc.team3501.robot;
 
 import org.usfirst.frc.team3501.robot.Constants.Defense;
+import org.usfirst.frc.team3501.robot.commands.driving.JoystickDrive;
 import org.usfirst.frc.team3501.robot.subsystems.DefenseArm;
 import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
 import org.usfirst.frc.team3501.robot.subsystems.IntakeArm;
@@ -25,7 +26,7 @@ public class Robot extends IterativeRobot {
   // Sendable Choosers send a drop down menu to the Smart Dashboard.
   SendableChooser positionChooser;
   SendableChooser positionOneDefense, positionTwoDefense, positionThreeDefense,
-  positionFourDefense, positionFiveDefense;
+      positionFourDefense, positionFiveDefense;
 
   @Override
   public void robotInit() {
@@ -137,7 +138,7 @@ public class Robot extends IterativeRobot {
 
   @Override
   public void teleopInit() {
-    // Scheduler.getInstance().add(new JoystickDrive());
+    Scheduler.getInstance().add(new JoystickDrive());
 
   }