fix runwinchcontinuous comments
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / climber / RunWinchContinuous.java
index 6b8209bd40e835ff68bd3c243dfcd4a4dbd49de2..6b8db75cc2c8eee9ccc09bb0572eeec1257c75f9 100644 (file)
@@ -5,16 +5,13 @@ import org.usfirst.frc.team3501.robot.Robot;
 import edu.wpi.first.wpilibj.command.Command;
 
 /**
- * This command will run the winch motor continuously until the button
- * triggering it is released. This command also runs the drive train.
+ * This command runs the drive train motors (which runs the winch) continuously
+ * at a specified speed until the button triggering it is released
  *
  * pre-condition: This command must be run by a button in OI. The robot must be
  * attached to the rope.
  *
- * post-condition: Winch motor set to a specified speed.
- *
- * @param motorVal
- *          value range is from -1 to 1
+ * post-condition: Drive train motors set to a specified speed.
  *
  * @author shivanighanta
  *
@@ -36,7 +33,6 @@ public class RunWinchContinuous extends Command {
   @Override
   protected void initialize() {
     Robot.getDriveTrain().setMotorValues(motorVal, motorVal);
-
   }
 
   @Override