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