Fix deleted stuff that shouldn't have been deleted
authorKevin Zhang <icestormf1@gmail.com>
Sat, 13 Feb 2016 05:38:09 +0000 (21:38 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 13 Feb 2016 23:37:21 +0000 (15:37 -0800)
src/org/usfirst/frc/team3501/robot/Robot.java

index ebe4ba33dec5d2052e3797e7ba9f3985925a2193..a9dd9d0b21ee10eff701a407e2a1d27a5287c347 100644 (file)
@@ -21,7 +21,6 @@ public class Robot extends IterativeRobot {
   public static Shooter shooter;
 
   public static Scaler scaler;
-  double then;
 
   public static IntakeArm intakeArm;
   public static DefenseArm defenseArm;
@@ -32,34 +31,22 @@ public class Robot extends IterativeRobot {
       positionFourDefense, positionFiveDefense;
 
   // Gyro stuff
-  short rawValue;
   public GyroLib gyro;
 
-  double now;
-  double degreesIncreased;
-  double degrees;
-
-  Rotation rotation;
-
   @Override
   public void robotInit() {
-    // driveTrain = new DriveTrain();
+    driveTrain = new DriveTrain();
+    oi = new OI();
     gyro = new GyroLib(I2C.Port.kOnboard, false);
-    // oi = new OI();
 
     shooter = new Shooter();
     scaler = new Scaler();
     intakeArm = new IntakeArm();
 
-    // Sendable Choosers allows the driver to select the position of the
-    // robot
-    // and the positions of the defenses from a drop-down menu on the Smart
-    // Dashboard
-    // make the Sendable Choosers
-    // initializeSendableChoosers();
-    // addPositionChooserOptions();
-    // addDefensesToAllDefenseSendableChooosers();
-    // sendSendableChoosersToSmartDashboard();
+    initializeSendableChoosers();
+    addPositionChooserOptions();
+    addDefensesToAllDefenseSendableChoosers();
+    sendSendableChoosersToSmartDashboard();
 
   }
 
@@ -80,7 +67,7 @@ public class Robot extends IterativeRobot {
     positionChooser.addObject("Position 5", 5);
   }
 
-  private void addDefensesToAllDefenseSendableChooosers() {
+  private void addDefensesToAllDefenseSendableChoosers() {
     addDefenseOptions(positionOneDefense);
     addDefenseOptions(positionTwoDefense);
     addDefenseOptions(positionThreeDefense);