From 24460710764361f5998f762c1fdc79df2ae1588a Mon Sep 17 00:00:00 2001 From: EvanYap Date: Fri, 12 Feb 2016 21:10:20 -0800 Subject: [PATCH] Remove useless variables and commented stuff in Robot.java --- src/org/usfirst/frc/team3501/robot/Robot.java | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index b1b58641..9b94e18e 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -1,7 +1,6 @@ package org.usfirst.frc.team3501.robot; import org.usfirst.frc.team3501.robot.Constants.Defense; -import org.usfirst.frc.team3501.robot.GyroLib.Rotation; import org.usfirst.frc.team3501.robot.subsystems.DefenseArm; import org.usfirst.frc.team3501.robot.subsystems.DriveTrain; import org.usfirst.frc.team3501.robot.subsystems.IntakeArm; @@ -20,7 +19,6 @@ public class Robot extends IterativeRobot { public static Shooter shooter; public static Scaler scaler; - double then; public static IntakeArm intakeArm; public static DefenseArm defenseArm; @@ -31,35 +29,16 @@ 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(); 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(); - } private void initializeSendableChoosers() { -- 2.30.2