From: Shaina Chen Date: Fri, 12 Feb 2016 03:34:06 +0000 (-0800) Subject: add javadoc style for class and change isFinished to return true X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=11b831a5db46005bbe9fa55093aace9d460f4697 add javadoc style for class and change isFinished to return true --- diff --git a/src/org/usfirst/frc/team3501/robot/commands/LowerDefenseArmContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/LowerDefenseArmContinuous.java index 95a1adf6..b5fe5649 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/LowerDefenseArmContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/LowerDefenseArmContinuous.java @@ -4,6 +4,13 @@ import org.usfirst.frc.team3501.robot.Robot; import edu.wpi.first.wpilibj.command.Command; +/*** + * This command is intended to be run from OI using button.whileHeld(...). + * It lowers the defenseArm continually while the button is being held down. + * + * @author shaina + * + */ public class LowerDefenseArmContinuous extends Command { private double speed; @@ -24,7 +31,7 @@ public class LowerDefenseArmContinuous extends Command { @Override protected boolean isFinished() { - return false; + return true; } @Override