Skip to content

Commit

Permalink
skib
Browse files Browse the repository at this point in the history
  • Loading branch information
Talon540-root committed Jan 27, 2025
1 parent 276e05c commit dff9279
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class Constants {
private static RobotType kRobotType = RobotType.ROBOT_2025_COMP;
// Allows tunable values to be changed when enabled. Also adds tunable selectors to AutoSelector
public static final boolean TUNING_MODE = false;
public static final boolean TUNING_MODE = true;
// Disable the AdvantageKit logger from running
public static final boolean ENABLE_LOGGING = true;

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/drive/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class Module {
drivekV.initDefault(0.12941);
drivekP.initDefault(0.005);
drivekD.initDefault(0.0);
turnkP.initDefault(4000.0);
turnkD.initDefault(50.0);
turnkP.initDefault(2.0);
turnkD.initDefault(0.05);
}
default -> {
drivekS.initDefault(0.11400);
Expand Down

0 comments on commit dff9279

Please sign in to comment.