Switch all methods of gyro to Robot class so DriveTrain does not have to be depended...
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Robot.java
index 49921b2e56a5dacd19535f2468ae454873501ba8..18f5fd5af30a032d3267df813d7148b783f32139 100644 (file)
@@ -19,26 +19,31 @@ public class Robot extends IterativeRobot {
   public static Shooter shooter;
 
   public static Scaler scaler;
-  public static DefenseArm defenseArm;
+
   public static IntakeArm intakeArm;
+  public static DefenseArm defenseArm;
 
   // Sendable Choosers send a drop down menu to the Smart Dashboard.
   SendableChooser positionChooser;
   SendableChooser positionOneDefense, positionTwoDefense, positionThreeDefense,
-  positionFourDefense, positionFiveDefense;
+      positionFourDefense, positionFiveDefense;
 
   // Gyro stuff
   private final static double NANOSECONDS_PER_SECOND = 1000000000;
   short rawValue;
-  public GyroClass gyro;
+  public FirebotGyro gyro;
 
-  double degreesIncreased;
+  double initialSpeedNanoseconds;
+  double finalSpeedNanoseconds;
+  double initialSpeedSeconds;
+  double finalSpeedSeconds;
+  double deltaSpeed;
   double degrees;
 
   @Override
   public void robotInit() {
     // driveTrain = new DriveTrain();
-    gyro = new GyroClass(I2C.Port.kOnboard, (byte) 0x68);
+    gyro = new FirebotGyro(I2C.Port.kOnboard, (byte) 0x68);
     // oi = new OI();
 
     shooter = new Shooter();
@@ -50,10 +55,10 @@ public class Robot extends IterativeRobot {
     // 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();
+    addDefensesToAllDefenseSendableChooosers();
+    sendSendableChoosersToSmartDashboard();
 
   }
 
@@ -103,14 +108,12 @@ public class Robot extends IterativeRobot {
         positionFourDefense);
     SmartDashboard.putData("Position Five Defense Chooser",
         positionFiveDefense);
-
     SmartDashboard.putData("Position Four Defense Chooser",
         positionFourDefense);
     SmartDashboard.putData("Position Five Defense Chooser",
         positionFiveDefense);
 
     shooter = new Shooter();
-
   }
 
   @Override
@@ -150,6 +153,6 @@ public class Robot extends IterativeRobot {
   @Override
   public void teleopPeriodic() {
     Scheduler.getInstance().run();
-  }
 
+  }
 }