Add wake word phrase to voice assistant start command (#6290)

This commit is contained in:
Jesse Hills
2024-03-06 07:41:18 +13:00
parent b0a25401f7
commit f39dc49f49
7 changed files with 30 additions and 2 deletions
@@ -134,7 +134,7 @@ void MicroWakeWord::loop() {
this->set_state_(State::IDLE);
if (this->detected_) {
this->detected_ = false;
this->wake_word_detected_trigger_->trigger("");
this->wake_word_detected_trigger_->trigger(this->wake_word_);
}
}
break;