Add constructer comments
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / climber / RunWinchContinuous.java
1 package org.usfirst.frc.team3501.robot.commands.climber;
2
3 import org.usfirst.frc.team3501.robot.Robot;
4
5 import edu.wpi.first.wpilibj.command.Command;
6
7 /**
8 * This command will run the winch motor continuously until the button
9 * triggering it is released.
10 *
11 * pre-condition: This command must be run by a button in OI. The robot must be
12 * attached to the rope.
13 *
14 * post-condition: Winch motor set to a specified speed.
15 *
16 * @param motorVal
17 * value range is from -1 to 1
18 *
19 * @author shivanighanta
20 *
21 */
22 public class RunWinchContinuous extends Command {
23 private double motorVal;
24
25 /**
26 *
27 * @param motorVal
28 */
29 public RunWinchContinuous(double motorVal) {
30 requires(Robot.getClimber());
31 this.motorVal = motorVal;
32 }
33
34 @Override
35 protected void initialize() {
36 Robot.getClimber().setMotorValue(motorVal);
37
38 }
39
40 @Override
41 protected void execute() {
42
43 }
44
45 @Override
46 protected boolean isFinished() {
47 return !Robot.getOI().toggleWinch.get();
48 }
49
50 @Override
51 protected void end() {
52 Robot.getClimber().stop();
53 }
54
55 @Override
56 protected void interrupted() {
57 end();
58 }
59 }