edit continuous commands
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / RunFlyWheelContinuous.java
index 65a69f232dd8d6fd5f7699b261a093235434edea..1f1d5cd9d1f25a28dcd34e3be33684a583e16ec8 100644 (file)
@@ -1,18 +1,24 @@
 package org.usfirst.frc.team3501.robot.commands.shooter;
 
+import org.usfirst.frc.team3501.robot.Robot;
+import org.usfirst.frc.team3501.robot.subsystems.Shooter;
+
 import edu.wpi.first.wpilibj.command.Command;
 
 /**
- * This command will run the fly wheel motor continuously until the button
+ * This command runs the fly wheel continuously when OI button managing fly
+ * wheel is pressed. The command will run the fly wheel motor until the button
  * triggering it is released.
  *
+ * Should only be run from the operator interface.
+ *
  * pre-condition: This command must be run by a button in OI, with
  * button.whileHeld(...).
  *
  * @author Shaina
  */
 public class RunFlyWheelContinuous extends Command {
-  private double motorVal;
+  private Shooter shooter = Robot.getShooter();
 
   /**
    * See JavaDoc comment in class for details
@@ -20,8 +26,8 @@ public class RunFlyWheelContinuous extends Command {
    * @param motorVal
    *          value range from -1 to 1
    */
-  public RunFlyWheelContinuous(double motorVal) {
-    this.motorVal = motorVal;
+  public RunFlyWheelContinuous() {
+    requires(shooter);
   }
 
   // Called just before this Command runs the first time
@@ -32,6 +38,7 @@ public class RunFlyWheelContinuous extends Command {
   // Called repeatedly when this Command is scheduled to run
   @Override
   protected void execute() {
+    shooter.setFlyWheelMotorVal(shooter.CURRENT_SHOOTING_SPEED);
   }
 
   // Called once after isFinished returns true