Recode everything for new robot
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / scaler / StopWinch.java
CommitLineData
cef820ab
KZ
1package org.usfirst.frc.team3501.robot.commands.scaler;
2
3import org.usfirst.frc.team3501.robot.Robot;
4
5import edu.wpi.first.wpilibj.command.Command;
6
7public class StopWinch extends Command {
8
9 @Override
10 protected void initialize() {
11 Robot.scaler.stopWinch();
12 }
13
14 @Override
15 protected void execute() {
16
17 }
18
19 @Override
20 protected boolean isFinished() {
21 return true;
22 }
23
24 @Override
25 protected void end() {
26
27 }
28
29 @Override
30 protected void interrupted() {
31 end();
32 }
33
34}