Skip to content

Commit

Permalink
Merge pull request #51 from LakeEffectRobotics/wrist-kP
Browse files Browse the repository at this point in the history
changes kP on wrist from 0.25 to 0.4
  • Loading branch information
gregk27 authored Nov 4, 2023
2 parents a8cf9ae + b962740 commit d8b7b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/Wrist.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Wrist extends SubsystemBase {
private Arm arm;

private static final double kF = 0;
private static final double kP = 0.25;
private static final double kP = 0.4;
private static final double kI = 0;

private static final double kD = 0.5;
Expand Down

0 comments on commit d8b7b66

Please sign in to comment.