X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fsubsystems%2FClimber.java;h=d9268cb8f2705e921549d3f12abd2602dd51ad80;hp=4cb6c0b8c2f4981c8424467a857cd2bb2ec9ae6e;hb=ba9f0b126afd5973b11a22dd6640d8d6f0822f5a;hpb=150f450f2b4f9e6094d71007507a7b877e05328a diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/Climber.java b/src/org/usfirst/frc/team3501/robot/subsystems/Climber.java index 4cb6c0b..d9268cb 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/Climber.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Climber.java @@ -2,7 +2,6 @@ package org.usfirst.frc.team3501.robot.subsystems; import org.usfirst.frc.team3501.robot.Constants; import org.usfirst.frc.team3501.robot.MathLib; -import org.usfirst.frc.team3501.robot.commands.climber.RunWinchContinuous; import com.ctre.CANTalon; @@ -14,7 +13,8 @@ public class Climber extends Subsystem { public static final boolean BRAKE_MODE = true; public static final boolean COAST_MODE = false; - public static final double CLIMBER_SPEED = 0; + public static final double CLIMBER_SPEED = 1.0; + public boolean shouldBeClimbing = false; private CANTalon winch; @@ -43,6 +43,5 @@ public class Climber extends Subsystem { @Override protected void initDefaultCommand() { - setDefaultCommand(new RunWinchContinuous()); } }