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