change location of base files
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / commands / TurnOnCompressor.java
CommitLineData
510cff21
LH
1package org.usfirst.frc.team3501.robot.commands;
2
5b3b1652
LH
3import org.usfirst.frc.team3501.bases.Command;
4
b2640783 5public class TurnOnCompressor extends Command {
510cff21
LH
6
7 public TurnOnCompressor() {
8 super("TurnOnCompressor");
9 requires(pneumatics);
10 }
11
12 protected void initialize() {
13 pneumatics.start();
14 }
15
16 protected boolean isFinished() {
17 return true;
18 }
19}