add javadoc style for class and change isFinished to return true
authorShaina Chen <shaina.sierra@gmail.com>
Fri, 12 Feb 2016 03:34:06 +0000 (19:34 -0800)
committerShaina Chen <shaina.sierra@gmail.com>
Fri, 12 Feb 2016 03:34:06 +0000 (19:34 -0800)
src/org/usfirst/frc/team3501/robot/commands/LowerDefenseArmContinuous.java

index 95a1adf6f24e8f8e2ff09656724e37dd884a6cc9..b5fe56491dd938f3d8bbdeb30d5751c5e145634a 100755 (executable)
@@ -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