Add comment explain get Shooter Speed()
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / subsystems / Shooter.java
index d91b234192218906cb44e1847f22666af90b913b..a9e8d6e8463f8ad341d96e7c1511acf1a45bdb42 100755 (executable)
@@ -65,6 +65,11 @@ public class Shooter extends Subsystem {
     return encoder.getRate();
   }
 
+  /*
+   * We are going to map a lidar distance to a shooter speed that will be set to
+   * the shooter. This function does not yet exist so we will just use y=x but
+   * when testing commences we shall create the function
+   */
   public double getShooterSpeed() {
     double distanceToGoal = lidar.getDistance();
     double shooterSpeed = distanceToGoal; // Function to be determined