From 8bb8f09f6420f9831562cb5b7f34a119460396e1 Mon Sep 17 00:00:00 2001 From: Joshua King Date: Sun, 1 Mar 2026 17:54:27 -0500 Subject: [PATCH] Refactor wake word detection: Set wake word to "Hey Jarvis" and adjust light behavior on error --- esphome/voice-assistant-1.yaml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/esphome/voice-assistant-1.yaml b/esphome/voice-assistant-1.yaml index 05fedb7..1f43d28 100644 --- a/esphome/voice-assistant-1.yaml +++ b/esphome/voice-assistant-1.yaml @@ -150,6 +150,7 @@ micro_wake_word: - model: hey_jarvis on_wake_word_detected: - voice_assistant.start: + wake_word: "Hey Jarvis" - light.turn_on: id: led_ww red: 100% @@ -162,6 +163,7 @@ voice_assistant: id: va microphone: va_mic speaker: va_speaker + use_wake_word: false noise_suppression_level: 2.0 auto_gain: 31dBFS volume_multiplier: 4.0 @@ -178,11 +180,23 @@ voice_assistant: then: - light.turn_off: led_ww on_error: - - micro_wake_word.start: + - light.turn_on: + id: led_ww + red: 100% + green: 0% + blue: 0% + brightness: 30% + effect: fast pulse + - delay: 1s + - light.turn_off: led_ww on_end: then: - light.turn_off: led_ww - wait_until: not: voice_assistant.is_running: - - micro_wake_word.start: \ No newline at end of file + - if: + condition: + switch.is_off: mute + then: + - micro_wake_word.start: