Implement RunFLyWheel class, add motor methods to Shooter class
authorshainachen <shaina.sierra@gmail.com>
Sat, 14 Jan 2017 23:15:52 +0000 (15:15 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Wed, 25 Jan 2017 03:40:38 +0000 (19:40 -0800)
src/org/usfirst/frc/team3501/robot/Robot.java
src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheel.java

index b18f7a5bec59dad0a6f5e85873f08e936cc4400d..00ad1cb9d8f13168f8c5668f155c113f2bdbb09f 100644 (file)
@@ -9,6 +9,7 @@ import edu.wpi.first.wpilibj.command.Scheduler;
 
 public class Robot extends IterativeRobot {
   private static DriveTrain driveTrain;
+  private static Shooter shooter;
   private static OI oi;
   private static Shooter shooter;
 
@@ -24,6 +25,10 @@ public class Robot extends IterativeRobot {
     return DriveTrain.getDriveTrain();
   }
 
+  public static Shooter getShooter() {
+    return Shooter.getShooter();
+  }
+
   public static OI getOI() {
     return OI.getOI();
   }
index f57cd5bc607865b133f1e18ec786cc796a5075cc..203f9dce79a4eb3088eb1155e9e67dfa1fbac036 100644 (file)
@@ -1,5 +1,8 @@
 package org.usfirst.frc.team3501.robot.commands.shooter;
 
+import org.usfirst.frc.team3501.robot.Robot;
+
+import edu.wpi.first.wpilibj.Timer;
 import edu.wpi.first.wpilibj.command.Command;
 
 /**
@@ -9,6 +12,7 @@ import edu.wpi.first.wpilibj.command.Command;
  * @author Shaina
  */
 public class RunFlyWheel extends Command {
+  Timer timer;
   private double motorVal;
   private double time;
 
@@ -21,6 +25,9 @@ public class RunFlyWheel extends Command {
    *          in seconds, amount of time to run fly wheel motor
    */
   public RunFlyWheel(double motorVal, double time) {
+    requires(Robot.getShooter());
+
+    timer = new Timer();
     this.motorVal = motorVal;
     this.time = time;
   }
@@ -28,6 +35,8 @@ public class RunFlyWheel extends Command {
   // Called just before this Command runs the first time
   @Override
   protected void initialize() {
+    timer.start();
+    Robot.getShooter().setFlyWheelMotorVal(motorVal);
   }
 
   // Called repeatedly when this Command is scheduled to run
@@ -38,17 +47,19 @@ public class RunFlyWheel extends Command {
   // Called once after isFinished returns true
   @Override
   protected void end() {
+    Robot.getShooter().stopFlyWheel();
   }
 
   // Called when another command which requires one or more of the same
   // subsystems is scheduled to run
   @Override
   protected void interrupted() {
+    end();
   }
 
   @Override
   protected boolean isFinished() {
-    return false;
+    return timer.get() >= time;
   }
 
 }