Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
fix(shooter): Improve shooter tune.
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenheroux committed Apr 11, 2024
1 parent cac5c85 commit df69d48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/RobotConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ public enum Subsystem {
EnumSet.of(
Subsystem.ARM, Subsystem.INTAKE, Subsystem.ODOMETRY, Subsystem.SHOOTER, Subsystem.SWERVE);

public static final Set<Subsystem> REAL_SUBSYSTEMS = EnumSet.of(Subsystem.ARM);
public static final Set<Subsystem> REAL_SUBSYSTEMS = EnumSet.of(Subsystem.SHOOTER);
}
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/shooter/ShooterConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static class FlywheelConstants {

static {
PIDF.kS = 0.14;
PIDF.kV = 0.1969;
PIDF.kV = 0.2;
}

/** Flywheel's controller constants. */
Expand Down

0 comments on commit df69d48

Please sign in to comment.