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

index 248f4ae0f0d9830378b24d29b9725b3045600b8b..d531963393885a006c86d426f39ad7ff7f0506e8 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 defenseWrist continually while the button is being held down.
+ *
+ * @author shaina
+ *
+ */
 public class LowerDefenseWristContinuous extends Command {
 
   private double speed;
@@ -24,7 +31,7 @@ public class LowerDefenseWristContinuous extends Command {
 
   @Override
   protected boolean isFinished() {
-    return false;
+    return true;
   }
 
   @Override