Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit bce92a6

Browse files
committed
manualfeedforward gonna make me lose my mind
1 parent e441c8e commit bce92a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

TeamCode/src/main/java/org/firstinspires/ftc/teamcode/roadrunner/MecanumDrive.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static class Params {
7878
// feedforward parameters (in tick units)
7979
public double kS = 1.4023140718295783;
8080
public double kV = 0.12807128175751004;
81-
public double kA = 0.1;
81+
public double kA = 0.065;
8282

8383
// path profile parameters (in inches)
8484
public double maxWheelVel = 50;
@@ -90,9 +90,9 @@ public static class Params {
9090
public double maxAngAccel = Math.PI;
9191

9292
// path controller gains
93-
public double axialGain = 0.0;
94-
public double lateralGain = 0.0;
95-
public double headingGain = 0.0; // shared with turn
93+
public double axialGain = 1.0;
94+
public double lateralGain = 1.0;
95+
public double headingGain = 1.0; // shared with turn
9696

9797
public double axialVelGain = 0.0;
9898
public double lateralVelGain = 0.0;

0 commit comments

Comments
 (0)