add timeToClimbFor constant
authorCindy Zhang <cindyzyx9@gmail.com>
Sat, 4 Feb 2017 19:25:04 +0000 (11:25 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 4 Feb 2017 19:25:04 +0000 (11:25 -0800)
src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java

index 5c94e53e2b6e63f8c99215fa0bc9f71355fbd8cd..645e345b54a692f62d154141a6b2c64e8a0b7556 100644 (file)
@@ -22,7 +22,8 @@ public class DriveTrain extends Subsystem {
   public static final int ENCODER_PULSES_PER_REVOLUTION = 256;
   public static final double INCHES_PER_PULSE = WHEEL_DIAMETER * Math.PI
       / ENCODER_PULSES_PER_REVOLUTION;
-  public static final int MAINTAIN_CLIMBED_POSITION = 1;
+  public static final int MAINTAIN_CLIMBED_POSITION = 0;
+  public static final int TIME_TO_CLIMB_FOR = 0;
   private static DriveTrain driveTrain;
 
   private final CANTalon frontLeft, frontRight, rearLeft, rearRight;