Skip to content

Commit

Permalink
Reduce drive current limit to 75A
Browse files Browse the repository at this point in the history
  • Loading branch information
superpenguin612 committed Mar 26, 2024
1 parent 848dd4f commit f956895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private MusicTrack(String filename) {
// max velocity in 1/3 sec
SWERVE_CONSTANTS.MAX_STEER_ACCELERATION_RADIANS_PER_SECOND_SQUARED = 10 * 100 * 2 * Math.PI; // TODO

SWERVE_CONSTANTS.DRIVE_CURRENT_LIMIT = 100;
SWERVE_CONSTANTS.DRIVE_CURRENT_LIMIT = 75;
SWERVE_CONSTANTS.STEER_CURRENT_LIMIT = 30;
SWERVE_CONSTANTS.DRIVE_GEARBOX_REPR = DCMotor.getKrakenX60(1);
SWERVE_CONSTANTS.STEER_GEARBOX_REPR = DCMotor.getKrakenX60(1);
Expand Down

0 comments on commit f956895

Please sign in to comment.