From 63e1fda2acf969d2bf483b3ff975da0fa4019b80 Mon Sep 17 00:00:00 2001 From: Kevin Ahrendt Date: Thu, 8 Aug 2024 14:01:33 -0400 Subject: [PATCH] don't reset ring buffer at start of pipeline --- esphome/components/voice_assistant/voice_assistant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/voice_assistant/voice_assistant.cpp b/esphome/components/voice_assistant/voice_assistant.cpp index df3d53d..900c124 100644 --- a/esphome/components/voice_assistant/voice_assistant.cpp +++ b/esphome/components/voice_assistant/voice_assistant.cpp @@ -238,7 +238,7 @@ void VoiceAssistant::loop() { case State::STARTING_MICROPHONE: { if (this->mic_->is_running()) { this->set_state_(this->desired_state_); - this->mic_->reset(); + // this->mic_->reset(); } break; }