Skip to content

Commit

Permalink
Update LedSystem.java changed color from hot pink to deep pink
Browse files Browse the repository at this point in the history
  • Loading branch information
adipraj17 authored Apr 2, 2024
1 parent 327846c commit fbe4932
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/frc/robot/subsystems/led/LedSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ public Command getNoteDetectionCommand() {
// Blink orange
for (int i = 0; i < 2; i++) {
commandGroup.addCommands(
new InstantCommand(() -> setColor(255, 105, 180)),
new InstantCommand(() -> setColor(231, 84, 128)),
new WaitCommand(0.2),
new InstantCommand(() -> setColor(255, 105, 180)),
new InstantCommand(() -> setColor(231, 84, 128)),
new WaitCommand(0.2));
}

new InstantCommand(() -> setColor(255, 105, 180));
new InstantCommand(() -> setColor(231, 84, 128));

// Turn LED White
commandGroup.addCommands(new InstantCommand(() -> setColor(255, 255, 255)));
Expand Down

0 comments on commit fbe4932

Please sign in to comment.