Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Remove limit
Browse files Browse the repository at this point in the history
Idk who added this
  • Loading branch information
spacey-sooty authored Aug 17, 2024
1 parent de2a847 commit 5c639bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ public Robot() {
() ->
m_drive
.withVelocityX(
Utils.deadzone(-m_driver.getLeftY() * Constants.DrivebaseMaxSpeed * 0.5))
Utils.deadzone(-m_driver.getLeftY() * Constants.DrivebaseMaxSpeed))
.withVelocityY(
Utils.deadzone(-m_driver.getLeftX() * Constants.DrivebaseMaxSpeed * 0.5))
Utils.deadzone(-m_driver.getLeftX() * Constants.DrivebaseMaxSpeed))
.withRotationalRate(
Utils.deadzone(
-m_driver.getRightX() * Constants.DrivebaseMaxAngularRate))));
Expand Down

0 comments on commit 5c639bc

Please sign in to comment.