@@ -50,7 +50,7 @@ public class XBoxTeleopSwerveConstants implements Cloneable {
5050 * <li><b>Maximum Value:</b> 1.0
5151 * </ul>
5252 */
53- public double DefaultTranslationalSpeed = 0.7 ;
53+ public double DefaultTranslationalSpeed = 1.0 ;
5454
5555 /**
5656 * The angular speed used during teleop when not boostin or using the D-pad for fine control. This
@@ -62,31 +62,7 @@ public class XBoxTeleopSwerveConstants implements Cloneable {
6262 * <li><b>Maximum Value:</b> 1.0
6363 * </ul>
6464 */
65- public double DefaultAngularSpeed = 0.7 ;
66-
67- /**
68- * The translational speed used during teleop when boosting and not using the D-pad for fine
69- * control. This is represented as a fraction of the maximum robot speed, where 1.0 is the maximum
70- * speed and 0.0 is stationary.
71- *
72- * <ul>
73- * <li><b>Minimum Value:</b> 0.0
74- * <li><b>Maximum Value:</b> 1.0
75- * </ul>
76- */
77- public double BoostTranslationalSpeed = 1.0 ;
78-
79- /**
80- * The angular speed used during teleop when boosting and not using the D-pad for fine control.
81- * This is represented as a fraction of the maximum robot angular speed, where 1.0 is the maximum
82- * angular speed and 0.0 is stationary.
83- *
84- * <ul>
85- * <li><b>Minimum Value:</b> 0.0
86- * <li><b>Maximum Value:</b> 1.0
87- * </ul>
88- */
89- public double BoostAngularSpeed = 1.0 ;
65+ public double DefaultAngularSpeed = 1.0 ;
9066
9167 /**
9268 * When true, the D-pad on the Xbox controller will enable fine control mode, where the robot
@@ -258,28 +234,6 @@ public XBoxTeleopSwerveConstants withDefaultAngularSpeed(double defaultAngularSp
258234 return this ;
259235 }
260236
261- /**
262- * Sets the boost translational speed, and returns this XBoxTeleopSwerveConstants for chaining.
263- *
264- * @param boostTranslationalSpeed The boost translational speed (0.0-1.0)
265- * @return This XBoxTeleopSwerveConstants object
266- */
267- public XBoxTeleopSwerveConstants withBoostTranslationalSpeed (double boostTranslationalSpeed ) {
268- BoostTranslationalSpeed = boostTranslationalSpeed ;
269- return this ;
270- }
271-
272- /**
273- * Sets the boost angular speed, and returns this XBoxTeleopSwerveConstants for chaining.
274- *
275- * @param boostAngularSpeed The boost angular speed (0.0-1.0)
276- * @return This XBoxTeleopSwerveConstants object
277- */
278- public XBoxTeleopSwerveConstants withBoostAngularSpeed (double boostAngularSpeed ) {
279- BoostAngularSpeed = boostAngularSpeed ;
280- return this ;
281- }
282-
283237 /**
284238 * Sets whether fine control is enabled, and returns this XBoxTeleopSwerveConstants for chaining.
285239 *
0 commit comments