Skip to content

Commit

Permalink
Increase MAXSwerve rotation motor current limit
Browse files Browse the repository at this point in the history
  • Loading branch information
viggy96 committed Nov 4, 2024
1 parent a3b022a commit 34ca2af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private GearRatio(double value) {

private final double EPSILON = 5e-3;
private final Measure<Current> DRIVE_MOTOR_CURRENT_LIMIT;
private final Measure<Current> ROTATE_MOTOR_CURRENT_LIMIT = Units.Amps.of(18.0);
private final Measure<Current> ROTATE_MOTOR_CURRENT_LIMIT = Units.Amps.of(20.0);
private final Rotation2d LOCK_POSITION = Rotation2d.fromRadians(Math.PI / 4);

private static final String IS_SLIPPING_LOG_ENTRY = "/IsSlipping";
Expand Down

0 comments on commit 34ca2af

Please sign in to comment.