code review changes and add code for braking cantalons
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / subsystems / Shooter.java
index 6397292049a78637fe675af773033a382d605268..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_SHOOTING_SPEED = 2700; // rpm
-  private static final double SHOOTING_SPEED_INCREMENT = 25;
+  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 = 50;
 
   private double targetShootingSpeed = DEFAULT_SHOOTING_SPEED;
   private double currentShooterMotorValue = 0;