X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc3501%2FRiceCatRobot%2Fcommands%2FOpenClaw.java;h=101ae75f6e7e552a5d1c88612e9840aeda9b7295;hb=e3bfff965c6d5a25b0d98b12b73fbf7eed623326;hp=bece53bcc91d110519198d792de86dd2a1990feb;hpb=b5f932ecccf219b28cbebf44c8896347621f6364;p=3501%2F2015-FRC-Spark diff --git a/src/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.java b/src/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.java index bece53b..101ae75 100644 --- a/src/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.java +++ b/src/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.java @@ -10,28 +10,28 @@ import org.usfirst.frc3501.RiceCatRobot.Robot; */ public class OpenClaw extends Command { - public OpenClaw() { - requires(Robot.claw); - } + public OpenClaw() { + requires(Robot.claw); + } - protected void initialize() { - System.out.println("IN INIT OPENCLAW"); - } + protected void initialize() { + System.out.println("IN INIT OPENCLAW"); + } - protected void execute() { - Robot.claw.openClaw(); - System.out.println("Opening Claw"); - } + protected void execute() { + Robot.claw.openClaw(); + System.out.println("Opening Claw"); + } - protected boolean isFinished() { - System.out.println("Claw Opened"); - return Robot.claw.isOpen(); - } + protected boolean isFinished() { + System.out.println("Claw Opened"); + return Robot.claw.isOpen(); + } - protected void end() { + protected void end() { - } + } - protected void interrupted() { - } + protected void interrupted() { + } }