Edit JavaDoc comment, instantiate motorVal and time variable
authorshainachen <shaina.sierra@gmail.com>
Sat, 14 Jan 2017 20:04:42 +0000 (12:04 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 14 Jan 2017 22:28:37 +0000 (14:28 -0800)
src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheel.java

index 8814b2ce6ae2fb106bd4c6d194d13d519f3f3d74..5cb3ada2c93251a7b15c51842c8c0c27e7eb983b 100644 (file)
@@ -3,43 +3,47 @@ package org.usfirst.frc.team3501.robot.commands.shooter;
 import edu.wpi.first.wpilibj.command.Command;
 
 /**
- * Runs index wheel at a given speed in () for input time in seconds
+ * Runs index wheel at a given speed in () for given time in seconds
  *
  * @param speed
- *            in ()
+ *          in ()
  * @param time
- *            in seconds
+ *          in seconds
+ * @author shaina
  */
 public class RunIndexWheel extends Command {
-       public RunIndexWheel() {
-
-       }
-
-       // Called just before this Command runs the first time
-       @Override
-       protected void initialize() {
-       }
-
-       // Called repeatedly when this Command is scheduled to run
-       @Override
-       protected void execute() {
-       }
-
-       // Called once after isFinished returns true
-       @Override
-       protected void end() {
-       }
-
-       // Called when another command which requires one or more of the same
-       // subsystems is scheduled to run
-       @Override
-       protected void interrupted() {
-       }
-
-       @Override
-       protected boolean isFinished() {
-               // TODO Auto-generated method stub
-               return false;
-       }
+  private double time;
+  private double motorVal;
+
+  public RunIndexWheel(double motorVal, double time) {
+    this.motorVal = motorVal;
+    this.time = time;
+  }
+
+  // Called just before this Command runs the first time
+  @Override
+  protected void initialize() {
+  }
+
+  // Called repeatedly when this Command is scheduled to run
+  @Override
+  protected void execute() {
+  }
+
+  // Called once after isFinished returns true
+  @Override
+  protected void end() {
+  }
+
+  // Called when another command which requires one or more of the same
+  // subsystems is scheduled to run
+  @Override
+  protected void interrupted() {
+  }
+
+  @Override
+  protected boolean isFinished() {
+    return false;
+  }
 
 }