Skip to content

Commit

Permalink
Automated deploy commit at 10/22/2024 19:00:41
Browse files Browse the repository at this point in the history
  • Loading branch information
RHR2713 committed Oct 22, 2024
1 parent fcfc782 commit 9c4e759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/util/MotionHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static ChassisSpeeds driveTrajectoryHeadingController(ChassisSpeeds cs) {
* @return The desired array of desaturated swerveModuleStates.
*/
public static ChassisSpeeds driveFullControl() {
double speedFactor = Robot.modeManager.getMode() == RobotMode.DEMO ? 0.5 : 1;
double speedFactor = Robot.modeManager.getMode() == RobotMode.DEMO ? 0.01 : 1;

double xSpeed =
MathUtil.applyDeadband(-Robot.driver.getLeftY(), DriveConstants.K_JOYSTICK_TURN_DEADZONE)
Expand Down

0 comments on commit 9c4e759

Please sign in to comment.