X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fsubsystems%2FDriveTrain.java;h=7576e1b08b4bb3c721d956136db5a2b91b574ea3;hb=c688e9da1214ed9257214a0b265a1c1b7eeb1506;hp=9852848e1c1a49fac411fe0ae876f1ffe302d51b;hpb=600a1a1c0e90c03a198c6036de8e5157b7f96af3;p=3501%2Fstronghold-2016 diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java b/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java index 9852848e..7576e1b0 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java @@ -227,16 +227,10 @@ public class DriveTrain extends PIDSubsystem { } /* - * Checks the drive mode <<<<<<< 9728080f491e9fb09795494349dba1297f447c0f + * Checks the drive mode * * @return the current state of the robot in each state Average distance from * both sides of tank drive for Encoder Mode Angle from the gyro in GYRO_MODE - * ======= - * - * @return the current state of the robot in each state Average distance from - * both sides of tank drive for Encoder Mode Angle from the gyro in GYRO_MODE - * >>>>>>> Move all constants in DeadReckoning to Auton class because it makes - * more sense */ private double sensorFeedback() { if (DRIVE_MODE == Constants.DriveTrain.ENCODER_MODE) @@ -367,7 +361,4 @@ public class DriveTrain extends PIDSubsystem { rightGearPiston.set(gear); } - public void toggleTimeDeadReckoning() { - Constants.Auton.isUsingTimeToPassDefense = !Constants.Auton.isUsingTimeToPassDefense; - } }