I wrote code for incrreasing and decreasing shooting speed and added necessary consta...
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / subsystems / Shooter.java
index 06073a791795c2be6c7aeccb781042bbba045fce..73c1b23282356686b7475b9ba8b21692c0753504 100644 (file)
@@ -10,9 +10,15 @@ public class Shooter extends Subsystem {
   private static Shooter shooter;
   private final CANTalon flyWheel, indexWheel;
 
+  public static final double DEFAULT_SHOOTING_SPEED = 0;
+  public static double CURRENT_SHOOTING_SPEED;
+
+  public static final double SHOOTING_SPEED_INCREMENT = 0;
+
   private Shooter() {
     flyWheel = new CANTalon(Constants.Shooter.FLY_WHEEL);
     indexWheel = new CANTalon(Constants.Shooter.INDEX_WHEEL);
+
   }
 
   /**