Skip to content

Commit

Permalink
stop LED state change spam
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxb0tbeep committed Sep 12, 2024
1 parent 33d3f87 commit 1533dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/lights/LEDSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void updateLights() {
*/
public void setLightState(LightState state, boolean overrideCurrentState) {
if (overrideCurrentState || (!overrideCurrentState && this.state.equals(LightState.OFF))) {
System.out.println("LED State changed: " + state);
// System.out.println("LED State changed: " + state);
this.state = state;
}
}
Expand Down

0 comments on commit 1533dce

Please sign in to comment.