Skip to content

Commit

Permalink
Merge pull request #167 from Flint221/dev
Browse files Browse the repository at this point in the history
Update joystick deadband values
  • Loading branch information
thenetworkgrinch authored Feb 5, 2024
2 parents e338701 + 1943043 commit 87f9d53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ public static class OperatorConstants
{

// Joystick Deadband
public static final double LEFT_X_DEADBAND = 0.01;
public static final double LEFT_Y_DEADBAND = 0.01;
public static final double RIGHT_X_DEADBAND = 0.01;
public static final double LEFT_X_DEADBAND = 0.1;
public static final double LEFT_Y_DEADBAND = 0.1;
public static final double RIGHT_X_DEADBAND = 0.1;
public static final double TURN_CONSTANT = 6;
}
}

0 comments on commit 87f9d53

Please sign in to comment.