Skip to content

Commit

Permalink
Win or lose idk
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenTomato5 committed Oct 7, 2024
1 parent ab9a3b6 commit c42d0e2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 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 @@ -223,7 +223,7 @@ public static final class Drive {
public static final double FAST_TM = 2.0;

// Auto Config
public static final PIDConstants TRANSLATION_PID = new PIDConstants(7.0, 0.0, 0.25);
public static final PIDConstants TRANSLATION_PID = new PIDConstants(1.0, 0.0, 0.25);
public static final PIDConstants ROTATION_PID = new PIDConstants(4.0, 0.0, 0.4);
public static final double MAX_MODULE_SPEED = 6.0;

Expand Down
4 changes: 0 additions & 4 deletions src/main/java/frc/robot/commands/AutoCommands.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ public Command intaking() {
return new InstantCommand(() -> robot.managerSubsystem.setState(ManagerStates.INTAKING));
}

// public Command shooting() {
// return new InstantCommand(() -> robot.managerSubsystem.setState(ManagerStates.SHOOTING));
// }

public Command returnToIdle() {
return new InstantCommand(() -> robot.managerSubsystem.setState(ManagerStates.IDLE));
}
Expand Down

0 comments on commit c42d0e2

Please sign in to comment.