add variables
authorChristopher Zhu <christopherzhu@Christophers-MacBook-Pro.local>
Fri, 3 Feb 2017 05:07:45 +0000 (21:07 -0800)
committerChristopher Zhu <christopherzhu@Christophers-MacBook-Pro.local>
Sat, 4 Feb 2017 21:27:02 +0000 (13:27 -0800)
src/org/usfirst/frc/team3501/robot/commands/shooter/StartUpFlyWheel.java

index 97f07e64d2eda0f5c68e8e4741530ff3a2f80529..d0e07db3e7c7872dad78d362a69c125d6a6722c1 100644 (file)
@@ -1,36 +1,49 @@
 package org.usfirst.frc.team3501.robot.commands.shooter;
 
+import org.usfirst.frc.team3501.robot.Robot;
+import org.usfirst.frc.team3501.robot.subsystems.Shooter;
+import org.usfirst.frc.team3501.robot.utils.PIDController;
+
 import edu.wpi.first.wpilibj.command.Command;
 
 /**
  *
  */
 public class StartUpFlyWheel extends Command {
-
-    public StartUpFlyWheel() {
-        // Use requires() here to declare subsystem dependencies
-        // eg. requires(chassis);
-    }
-
-    // Called just before this Command runs the first time
-    protected void initialize() {
-    }
-
-    // Called repeatedly when this Command is scheduled to run
-    protected void execute() {
-    }
-
-    // Make this return true when this Command no longer needs to run execute()
-    protected boolean isFinished() {
-        return false;
-    }
-
-    // Called once after isFinished returns true
-    protected void end() {
-    }
-
-    // Called when another command which requires one or more of the same
-    // subsystems is scheduled to run
-    protected void interrupted() {
-    }
+  private Shooter shooter = Robot.getShooter();
+  private PIDController wheelController;
+  private double wheelP;
+  private double wheelI;
+  private double wheelD;
+  private double motorVal;
+  private double target;
+  
+  public StartUpFlyWheel() {
+    // Use requires() here to declare subsystem dependencies
+    // eg. requires(chassis);
+    requires(shooter);
+  }
+
+  // Called just before this Command runs the first time
+  protected void initialize() {
+    
+  }
+
+  // Called repeatedly when this Command is scheduled to run
+  protected void execute() {
+  }
+
+  // Make this return true when this Command no longer needs to run execute()
+  protected boolean isFinished() {
+    return false;
+  }
+
+  // Called once after isFinished returns true
+  protected void end() {
+  }
+
+  // Called when another command which requires one or more of the same
+  // subsystems is scheduled to run
+  protected void interrupted() {
+  }
 }