Skip to content

Commit

Permalink
fix PID
Browse files Browse the repository at this point in the history
  • Loading branch information
DriverStationComputer committed Oct 8, 2023
1 parent 0a19851 commit 90e880e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public static final class Arm {
// PID
// Arm, Wrist
public static double[] kP = {4.2736, 4.8804}; // 4.2736 for arm from sysid was tested and it worked fine (V / rad)
public static double[] kI = {0, 0}; // (V / (rad * s) )
public static double[] kI = {0.1, 0}; // (V / (rad * s) )
public static double[] kD = {0.1, 0.90262}; // 0 for arm from sysid was tested and it worked fine (V / (rad / s) )

// Arm, Wrist
Expand Down

0 comments on commit 90e880e

Please sign in to comment.