code review changes and add code for braking cantalons
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / subsystems / Shooter.java
index adfdb341862f933a03094392848cdfe80ec37328..bf743b1a3195139d8ec59c73f4d5f713087458e3 100644 (file)
@@ -18,9 +18,9 @@ public class Shooter extends Subsystem {
   private PIDController wheelController;
 
   private static final double RPM_THRESHOLD = 10;
-  private static final double DEFAULT_INDEXING_MOTOR_VALUE = -0.75;
+  private static final double DEFAULT_INDEXING_MOTOR_VALUE = 0.75;
   private static final double DEFAULT_SHOOTING_SPEED = 2800; // rpm
-  private static final double SHOOTING_SPEED_INCREMENT = 25;
+  private static final double SHOOTING_SPEED_INCREMENT = 50;
 
   private double targetShootingSpeed = DEFAULT_SHOOTING_SPEED;
   private double currentShooterMotorValue = 0;