Skip to content

Commit

Permalink
retune shooter gains for black mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
mpatankar6 committed Apr 2, 2024
1 parent 49464df commit 0c27aa7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/java/frc/robot/shooter/Shooter.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ public class Shooter extends SubsystemBase {
private final double kReadyToShootToleranceRps = 3.0;

// Denominator for gains here are in rotations
public static final double topRollerkS = 0.081727;
public static final double topRollerkV = 0.11753;
public static final double topRollerkA = 0.015313;
public static final double bottomRollerkS = 0.11496;
public static final double bottomRollerkV = 0.11868;
public static final double bottomRollerkA = 0.0141;

public static final double topRollerkP = 0.17726;
public static final double bottomRollerkP = 0.17918;
public static final double topRollerkS = 0.15945;
public static final double topRollerkV = 0.11596;
public static final double topRollerkA = 0.013645;
public static final double bottomRollerkS = 0.11589;
public static final double bottomRollerkV = 0.11618;
public static final double bottomRollerkA = 0.015157;

public static final double topRollerkP = 0.176;
public static final double bottomRollerkP = 0.176;

private final SysIdRoutine m_sysIdRoutine;
private final ShooterIO m_io;
Expand Down

0 comments on commit 0c27aa7

Please sign in to comment.