add precondition and Timeout to Expel and Intake commands
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / RetractLift.java
CommitLineData
00b68bad
YN
1package org.usfirst.frc.team3501.robot.commands;
2
02cb494e
LM
3import org.usfirst.frc.team3501.robot.Robot;
4
00b68bad
YN
5import edu.wpi.first.wpilibj.command.Command;
6
00b68bad
YN
7public class RetractLift extends Command {
8
5585bd31
YN
9 public RetractLift() {
10 }
00b68bad 11
5585bd31
YN
12 @Override
13 protected void initialize() {
02cb494e 14 Robot.scaler.lowerScissorLift();
5585bd31 15 }
00b68bad 16
5585bd31
YN
17 @Override
18 protected void execute() {
19 }
00b68bad 20
5585bd31
YN
21 @Override
22 protected boolean isFinished() {
02cb494e 23 return true;
5585bd31 24 }
00b68bad 25
5585bd31
YN
26 @Override
27 protected void end() {
28 }
00b68bad 29
5585bd31
YN
30 @Override
31 protected void interrupted() {
32 }
00b68bad 33}