X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc3501%2FRiceCatRobot%2Fcommands%2FToggleCompressor.java;h=64c34f9f4078296dde2b83a52a63952ec945d7e3;hb=e3bfff965c6d5a25b0d98b12b73fbf7eed623326;hp=5f3fad191af25f623bd7a084950422dbdf3f8706;hpb=b5f932ecccf219b28cbebf44c8896347621f6364;p=3501%2F2015-FRC-Spark diff --git a/src/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.java b/src/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.java index 5f3fad1..64c34f9 100644 --- a/src/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.java +++ b/src/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.java @@ -9,35 +9,35 @@ import edu.wpi.first.wpilibj.command.Command; */ public class ToggleCompressor extends Command { - public ToggleCompressor() { + public ToggleCompressor() { + } + + // Called just before this Command runs the first time + protected void initialize() { + } + + // Called repeatedly when this Command is scheduled to run + protected void execute() { + if (Robot.compressor.enabled()) { + Robot.compressor.stop(); + } else { + Robot.compressor.start(); } - // Called just before this Command runs the first time - protected void initialize() { - } - - // Called repeatedly when this Command is scheduled to run - protected void execute() { - if (Robot.compressor.enabled()) { - Robot.compressor.stop(); - } else { - Robot.compressor.start(); - } + } - } + // Make this return true when this Command no longer needs to run execute() + protected boolean isFinished() { + return true; + } - // Make this return true when this Command no longer needs to run execute() - protected boolean isFinished() { - return true; - } + // Called once after isFinished returns true + protected void end() { - // Called once after isFinished returns true - protected void end() { + } - } - - // Called when another command which requires one or more of the same - // subsystems is scheduled to run - protected void interrupted() { - } + // Called when another command which requires one or more of the same + // subsystems is scheduled to run + protected void interrupted() { + } }