From fbe4932bc22fa2bc2b05019e7a417c3635754b20 Mon Sep 17 00:00:00 2001 From: Adi Prajapati <95832264+adipraj17@users.noreply.github.com> Date: Tue, 2 Apr 2024 10:13:27 -0400 Subject: [PATCH] Update LedSystem.java changed color from hot pink to deep pink --- src/main/java/frc/robot/subsystems/led/LedSystem.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/frc/robot/subsystems/led/LedSystem.java b/src/main/java/frc/robot/subsystems/led/LedSystem.java index c9e2429a..8a994e0d 100644 --- a/src/main/java/frc/robot/subsystems/led/LedSystem.java +++ b/src/main/java/frc/robot/subsystems/led/LedSystem.java @@ -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)));