From 5cdad73ed56719b819630fd4fb1b7f339c372a9d Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Mon, 23 Sep 2024 14:39:41 -0500 Subject: [PATCH] Make mute pure red --- home-assistant-voice.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-assistant-voice.yaml b/home-assistant-voice.yaml index afbecf5..e6546de 100644 --- a/home-assistant-voice.yaml +++ b/home-assistant-voice.yaml @@ -672,7 +672,7 @@ light: update_interval: 16ms lambda: |- static int8_t index = 0; - Color color(255, 165, 0); + Color color(255, 0, 0); for (int i = 0; i < 12; i++) { if (i == 3 && id(master_mute_switch).state ) { it[i] = color; @@ -691,7 +691,7 @@ light: auto light_color = id(led_ring).current_values; Color color(light_color.get_red() * 255, light_color.get_green() * 255, light_color.get_blue() * 255); - Color silenced_color(255, 165, 0); + Color silenced_color(255, 0, 0); auto nb_leds_on = 12.0f * id(nabu_media_player).volume; for (int i = 0; i < 12; i++) { if (i < nb_leds_on) {