a3aa3a28ee72565a8f5ecdc83c66a6d20dd8a653
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / commands / OpenClaw.java
1 package org.usfirst.frc.team3501.robot.commands;
2
3 public class OpenClaw extends CommandBase {
4
5 public OpenClaw() {
6 super("OpenClaw");
7 requires(claw);
8 }
9
10 protected void initialize() {
11 claw.open();
12 }
13
14 protected boolean isFinished() {
15 return true;
16 }
17 }