@@ -77,7 +77,7 @@ public SpinnerConfig(int spinnerMasterId, int spinnerFollowId, MotorConfig spinn
7777 * @param gearReduction 1 revolution of the spinner / how many revolution is needed by the motor
7878 * @param maxVolts maximum volts that the spinner can use autonomously
7979 * @param spinnerKPID 3 values for kP, kI, and kD
80- * @param spinnerKPIDTolerance in rotations per second how much should pid care for speed
80+ * @param spinnerPIDTolerance in rotations per second how much should pid care for speed
8181 */
8282 public static SpinnerConfig NEOSpinnerConfig (int spinnerMasterId , boolean spinnerMasterInverted , double gearReduction , double maxVolts , double [] spinnerKPID , double spinnerPIDTolerance ) {
8383 return new SpinnerConfig (spinnerMasterId , -1 , MotorConfig .NEO , null , spinnerMasterInverted , false , gearReduction , maxVolts , maxVolts /12.0 , spinnerKPID , null , spinnerPIDTolerance );
@@ -86,7 +86,7 @@ public static SpinnerConfig NEOSpinnerConfig(int spinnerMasterId, boolean spinne
8686 /**
8787 * Creates a simple single NEO spinner without PID
8888 * @param spinnerMasterId id of the motor
89- * @param spinnerMasterInversed inversed setting such that whichever is the desired movement of the spinner will be positive
89+ * @param spinnerMasterInverted inversed setting such that whichever is the desired movement of the spinner will be positive
9090 * @param gearReduction 1 revolution of the spinner / how many revolution is needed by the motor
9191 * @param maxManualInput maximum voltage percentage that the spinner can use while being manually controlled
9292 * @return
@@ -98,11 +98,11 @@ public static SpinnerConfig NEOSpinnerConfig(int spinnerMasterId, boolean spinne
9898 /**
9999 * Creates a simple single NEO spinner with PID
100100 * @param spinnerMasterId id of the motor
101- * @param spinnerMasterInversed inversed setting such that whichever is the desired movement of the spinner will be positive
101+ * @param spinnerMasterInverted inversed setting such that whichever is the desired movement of the spinner will be positive
102102 * @param gearReduction 1 revolution of the spinner / how many revolution is needed by the motor
103103 * @param maxVolts maximum volts that the spinner can use autonomously
104104 * @param spinnerKPID 3 values for kP, kI, and kD
105- * @param spinnerKPIDTolerance in rotations per second how much should pid care for speed
105+ * @param spinnerPIDTolerance in rotations per second how much should pid care for speed
106106 */
107107 public static SpinnerConfig VORTEXSpinnerConfig (int spinnerMasterId , boolean spinnerMasterInverted , double gearReduction , double maxVolts , double [] spinnerKPID , double spinnerPIDTolerance ) {
108108 return new SpinnerConfig (spinnerMasterId , -1 , MotorConfig .NEO_VORTEX , null , spinnerMasterInverted , false , gearReduction , maxVolts , maxVolts /12.0 , spinnerKPID , null , spinnerPIDTolerance );
@@ -111,7 +111,7 @@ public static SpinnerConfig VORTEXSpinnerConfig(int spinnerMasterId, boolean spi
111111 /**
112112 * Creates a simple single NEO spinner without PID
113113 * @param spinnerMasterId id of the motor
114- * @param spinnerMasterInversed inversed setting such that whichever is the desired movement of the spinner will be positive
114+ * @param spinnerMasterInverted inversed setting such that whichever is the desired movement of the spinner will be positive
115115 * @param gearReduction 1 revolution of the spinner / how many revolution is needed by the motor
116116 * @param maxManualInput maximum voltage percentage that the spinner can use while being manually controlled
117117 * @return
0 commit comments