Delete StopWinch and Climber subsystem, edit javadoc comments
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / climber / StopWinch.java
index a119c91a8d9967f47c63bc21dfe099d7d5da8243..45ae19efee0860cb2d32beb995cdedc8e1e96990 100644 (file)
@@ -5,18 +5,16 @@ import org.usfirst.frc.team3501.robot.Robot;
 import edu.wpi.first.wpilibj.command.Command;
 
 /**
- * This command stops the winch
- *
- * post-condition: the motor values are set to 0.
+ * Stops the winch
  *
  * @author shivanighanta
  *
  */
 public class StopWinch extends Command {
-  /**
-   * 
-   */
+
   public StopWinch() {
+
+    requires(Robot.getDriveTrain());
     requires(Robot.getClimber());
 
   }
@@ -36,7 +34,7 @@ public class StopWinch extends Command {
 
   @Override
   protected void end() {
-    Robot.getClimber().stop();
+    Robot.getDriveTrain().stop();
 
   }