Skip to content

Commit

Permalink
Remove wake word select (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam authored Sep 23, 2024
1 parent d54b97a commit dea3a2c
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions home-assistant-voice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1384,34 +1384,6 @@ micro_wake_word:
- voice_assistant.start:
wake_word: !lambda return wake_word;

select:
- platform: template
name: "Active wake word"
icon: "mdi:bullhorn"
entity_category: config
options:
- "OK Nabu"
- "Hey Jarvis"
- "Hey Mycroft"
optimistic: true
restore_value: true
on_value:
then:
- lambda: |-
if (x == "OK Nabu") {
id(okay_nabu).enable();
id(hey_mycroft).disable();
id(hey_jarvis).disable();
} else if (x == "Hey Mycroft") {
id(okay_nabu).disable();
id(hey_mycroft).enable();
id(hey_jarvis).disable();
} else if (x == "Hey Jarvis") {
id(okay_nabu).disable();
id(hey_mycroft).disable();
id(hey_jarvis).enable();
}
voice_assistant:
id: va
microphone: asr_mic
Expand Down

0 comments on commit dea3a2c

Please sign in to comment.