drift fix (not tuned)

This commit is contained in:
66945
2023-03-15 09:57:01 -06:00
parent 8d5e11b267
commit 8240f8f3c4
2 changed files with 7 additions and 6 deletions
+4 -3
View File
@@ -24,9 +24,10 @@ import frc4388.utility.LEDPatterns;
public final class Constants {
public static final class SwerveDriveConstants {
public static final double MAX_ROT_SPEED = 1.5;
public static final double MIN_ROT_SPEED = 0.8;
public static double ROTATION_SPEED = MAX_ROT_SPEED;
public static final double MAX_ROT_SPEED = 1.5;
public static final double MIN_ROT_SPEED = 0.8;
public static double ROTATION_SPEED = MAX_ROT_SPEED;
public static double ROT_CORRECTION_SPEED = MIN_ROT_SPEED;
public static final class IDs {
public static final int LEFT_FRONT_WHEEL_ID = 2;