Test Failed
Pull Request — master (#66)
by John
02:06
created

interrupted()   A

Complexity

Conditions 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
rs 10
cc 1
1
package org.usfirst.frc.team3695.robot.commands;
2
3
import org.usfirst.frc.team3695.robot.OI;
4
import org.usfirst.frc.team3695.robot.Robot;
5
6
import edu.wpi.first.wpilibj.command.Command;
7
8
/** move the mast */
9
public class ManualCommandGrow extends Command {
10
	
11
    public ManualCommandGrow() {
12
        requires(Robot.SUB_MAST);
13
    }
14
15
    protected void initialize() {
16
    }
17
18
    protected void execute() {
19
    	Robot.SUB_MAST.moveBySpeed(OI.OPERATOR);
20
    }
21
22
    protected boolean isFinished() {
23
        return false;
24
    }
25
26
    protected void end() {}
27
28
    protected void interrupted() {}
29
}
30