delete auto generated comments in auton package
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / PassChevalDeFrise.java
1 package org.usfirst.frc.team3501.robot.commands.auton;
2
3 import edu.wpi.first.wpilibj.command.Command;
4
5 /***
6 * This command will move the intake arm downwards using a motor to lower the
7 * cheval de frise and drive over it.
8 *
9 * pre-condition: robot is flush against the ramp of the outerworks in front of
10 * the cheval de frise
11 *
12 * post-condition: the robot has passed the cheval de frise and is in the next
13 * zone
14 *
15 * @author Meryem and Avi
16 *
17 */
18 public class PassChevalDeFrise extends Command {
19
20 public PassChevalDeFrise() {
21 }
22
23 @Override
24 protected void end() {
25 }
26
27 @Override
28 protected void execute() {
29 }
30
31 @Override
32 protected void initialize() {
33 }
34
35 @Override
36 protected void interrupted() {
37 }
38
39 @Override
40 protected boolean isFinished() {
41 return false;
42 }
43
44 }