Skip to content

Commit

Permalink
Increase epsilon
Browse files Browse the repository at this point in the history
  • Loading branch information
viggy96 committed Dec 23, 2023
1 parent c772aa1 commit 8230127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/lasarobotics/drive/MAXSwerveModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private GearRatio(double value) {
}
}

private final double EPSILON = 2e-3;
private final double EPSILON = 5e-3;
private final int DRIVE_MOTOR_CURRENT_LIMIT = 50;
private final int ROTATE_MOTOR_CURRENT_LIMIT = 20;
private final Rotation2d LOCK_POSITION = Rotation2d.fromRadians(Math.PI / 4);
Expand Down

0 comments on commit 8230127

Please sign in to comment.