X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fsubsystems%2FDriveTrain.java;h=645e345b54a692f62d154141a6b2c64e8a0b7556;hp=5c94e53e2b6e63f8c99215fa0bc9f71355fbd8cd;hb=4edb36b41eb77c200fd32d18d2c8ab07ae8f50ec;hpb=8565f6157b0e34288532871e4123f03c15f2179a diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java b/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java index 5c94e53..645e345 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/DriveTrain.java @@ -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;