4#ifdef USE_VOICE_ASSISTANT
13namespace voice_assistant {
15static const char *
const TAG =
"voice_assistant";
21static const size_t SAMPLE_RATE_HZ = 16000;
23static const size_t RING_BUFFER_SAMPLES = 512 * SAMPLE_RATE_HZ / 1000;
24static const size_t RING_BUFFER_SIZE = RING_BUFFER_SAMPLES *
sizeof(int16_t);
25static const size_t SEND_BUFFER_SAMPLES = 32 * SAMPLE_RATE_HZ / 1000;
26static const size_t SEND_BUFFER_SIZE = SEND_BUFFER_SAMPLES *
sizeof(int16_t);
27static const size_t RECEIVE_SIZE = 1024;
28static const size_t SPEAKER_BUFFER_SIZE = 16 * RECEIVE_SIZE;
34 std::shared_ptr<RingBuffer> temp_ring_buffer = this->
ring_buffer_;
36 temp_ring_buffer->write((
void *) data.data(), data.size());
40#ifdef USE_MEDIA_PLAYER
67 ESP_LOGE(TAG,
"Could not create socket");
72 int err = this->
socket_->setsockopt(SOL_SOCKET, SO_REUSEADDR, &enable,
sizeof(
int));
74 ESP_LOGW(TAG,
"Socket unable to set reuseaddr: errno %d", err);
77 err = this->
socket_->setblocking(
false);
79 ESP_LOGE(TAG,
"Socket unable to set nonblocking mode: errno %d", err);
90 ESP_LOGE(TAG,
"Socket unable to set sockaddr: errno %d", errno);
97 ESP_LOGE(TAG,
"Socket unable to bind: errno %d", errno);
113 ESP_LOGW(TAG,
"Could not allocate speaker buffer");
122 ESP_LOGE(TAG,
"Could not allocate ring buffer");
131 ESP_LOGW(TAG,
"Could not allocate send buffer");
181 ESP_LOGD(TAG,
"reset conversation ID");
208 ESP_LOGD(TAG,
"Starting Microphone");
229 ESP_LOGD(TAG,
"Requesting start");
248#ifdef USE_MEDIA_PLAYER
256 ESP_LOGW(TAG,
"Could not request start");
272 while (available >= SEND_BUFFER_SIZE) {
287 sizeof(this->dest_addr_));
313 bool playing =
false;
320 if (received_len > 0) {
326 ESP_LOGD(TAG,
"Receive buffer full");
336 ESP_LOGD(TAG,
"End of audio stream received");
345#ifdef USE_MEDIA_PLAYER
352 ESP_LOGD(TAG,
"Announcement finished playing");
377 ESP_LOGD(TAG,
"Speaker has finished outputting all audio");
414 ESP_LOGV(TAG,
"Speaker buffer full, trying again next loop");
424 ESP_LOGE(TAG,
"Client attempting to unsubscribe that is not the current API Client");
433 char current_peername[socket::SOCKADDR_STR_LEN];
434 char new_peername[socket::SOCKADDR_STR_LEN];
436 "Multiple API Clients attempting to connect to Voice Assistant\n"
437 "Current client: %s (%s)\n"
438 "New client: %s (%s)",
448static const LogString *voice_assistant_state_to_string(
State state) {
451 return LOG_STR(
"IDLE");
453 return LOG_STR(
"START_MICROPHONE");
455 return LOG_STR(
"STARTING_MICROPHONE");
457 return LOG_STR(
"WAIT_FOR_VAD");
459 return LOG_STR(
"WAITING_FOR_VAD");
461 return LOG_STR(
"START_PIPELINE");
463 return LOG_STR(
"STARTING_PIPELINE");
465 return LOG_STR(
"STREAMING_MICROPHONE");
467 return LOG_STR(
"STOP_MICROPHONE");
469 return LOG_STR(
"STOPPING_MICROPHONE");
471 return LOG_STR(
"AWAITING_RESPONSE");
473 return LOG_STR(
"STREAMING_RESPONSE");
475 return LOG_STR(
"RESPONSE_FINISHED");
477 return LOG_STR(
"UNKNOWN");
484 ESP_LOGD(TAG,
"State changed from %s to %s", LOG_STR_ARG(voice_assistant_state_to_string(old_state)),
485 LOG_STR_ARG(voice_assistant_state_to_string(
state)));
491 ESP_LOGD(TAG,
"Desired state set to %s", LOG_STR_ARG(voice_assistant_state_to_string(desired_state)));
495 ESP_LOGE(TAG,
"Failed to start server. See Home Assistant logs for more details.");
496 this->
error_trigger_.
trigger(
"failed-to-start",
"Failed to start server. See Home Assistant logs for more details.");
506 ESP_LOGD(TAG,
"Client started, streaming microphone");
522 ESP_LOGD(TAG,
"Client started, streaming microphone");
548 ESP_LOGE(TAG,
"No API client connected");
588#ifdef USE_MEDIA_PLAYER
612 ESP_LOGD(TAG,
"Signaling stop");
630 ESP_LOGD(TAG,
"Event Type: %" PRId32, msg.
event_type);
633 ESP_LOGD(TAG,
"Assist Pipeline running");
634#ifdef USE_MEDIA_PLAYER
636 for (
const auto &arg : msg.
data) {
637 if (arg.name ==
"url") {
647 ESP_LOGD(TAG,
"Wake word detected");
652 ESP_LOGD(TAG,
"STT started");
657 for (
const auto &arg : msg.
data) {
658 if (arg.name ==
"text") {
663 ESP_LOGW(TAG,
"No text in STT_END event");
665 }
else if (text.length() > 500) {
669 ESP_LOGD(TAG,
"Speech recognised as: \"%s\"", text.c_str());
674 ESP_LOGD(TAG,
"Intent started");
678 ESP_LOGD(TAG,
"Intent progress");
679 std::string tts_url_for_trigger =
"";
680#ifdef USE_MEDIA_PLAYER
682 for (
const auto &arg : msg.
data) {
683 if ((arg.name ==
"tts_start_streaming") && (arg.value ==
"1") && !this->tts_response_url_.empty()) {
702 for (
const auto &arg : msg.
data) {
703 if (arg.name ==
"conversation_id") {
705 }
else if (arg.name ==
"continue_conversation") {
714 for (
const auto &arg : msg.
data) {
715 if (arg.name ==
"text") {
720 ESP_LOGW(TAG,
"No text in TTS_START event");
723 if (text.length() > 500) {
727 ESP_LOGD(TAG,
"Response: \"%s\"", text.c_str());
728 this->
defer([
this, text]() {
740 for (
const auto &arg : msg.
data) {
741 if (arg.name ==
"url") {
746 ESP_LOGW(TAG,
"No url in TTS_END event");
749 ESP_LOGD(TAG,
"Response URL: \"%s\"", url.c_str());
750 this->
defer([
this, url]() {
751#ifdef USE_MEDIA_PLAYER
764 if (new_state != this->
state_) {
772 ESP_LOGD(TAG,
"Assist Pipeline ended");
785 std::string code =
"";
787 for (
const auto &arg : msg.
data) {
788 if (arg.name ==
"code") {
790 }
else if (arg.name ==
"message") {
794 if (code ==
"wake-word-timeout" || code ==
"wake_word_detection_aborted" || code ==
"no_wake_word") {
797 }
else if (code ==
"wake-provider-missing" || code ==
"wake-engine-missing") {
805 ESP_LOGE(TAG,
"Error: %s - %s", code.c_str(),
message.c_str());
817 ESP_LOGD(TAG,
"TTS stream start");
827 ESP_LOGD(TAG,
"TTS stream end");
833 ESP_LOGD(TAG,
"Starting STT by VAD");
837 ESP_LOGD(TAG,
"STT by VAD end");
842 ESP_LOGD(TAG,
"Unhandled event type: %" PRId32, msg.
event_type);
855 ESP_LOGV(TAG,
"Received audio: %u bytes from API", msg.
data_len);
857 ESP_LOGE(TAG,
"Cannot receive audio, buffer is full");
865 auto it = this->
timers_.begin();
866 for (; it != this->
timers_.end(); ++it) {
870 if (it == this->
timers_.end()) {
883 " Type: %" PRId32
"\n"
914 for (
auto &timer : this->
timers_) {
915 if (timer.is_active && timer.seconds_left > 0) {
916 timer.seconds_left--;
923#ifdef USE_MEDIA_PLAYER
955#ifdef USE_MICRO_WAKE_WORD
963 for (
const auto &ww_id : active_wake_words) {
965 if (model->get_id() == ww_id) {
967 ESP_LOGD(TAG,
"Enabled wake word: %s (id=%s)", model->get_wake_word().c_str(), model->get_id().c_str());
979#ifdef USE_MICRO_WAKE_WORD
984 if (model->is_enabled()) {
989 wake_word.
id = model->get_id();
990 wake_word.
wake_word = model->get_wake_word();
991 for (
const auto &lang : model->get_trained_languages()) {
1000#ifdef USE_MICRO_WAKE_WORD
virtual void mark_failed()
Mark this component as failed.
ESPDEPRECATED("Use const char* overload instead. Removed in 2026.7.0", "2026.1.0") void defer(const std voi defer)(const char *name, std::function< void()> &&f)
Defer a callback to the next loop() call.
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") void set_timeout(const std voi set_timeout)(const char *name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a unique name.
void status_clear_error()
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") void set_interval(const std voi set_interval)(const char *name, uint32_t interval, std::function< void()> &&f)
Set an interval function with a unique name.
bool status_has_error() const
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") bool cancel_timeout(const std boo cancel_timeout)(const char *name)
Cancel a timeout function.
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") bool cancel_interval(const std boo cancel_interval)(const char *name)
Cancel an interval function.
An STL allocator that uses SPI or internal RAM.
void deallocate(T *p, size_t n)
static std::unique_ptr< RingBuffer > create(size_t len)
StringRef is a reference to a string owned by something else.
constexpr bool empty() const
void trigger(const Ts &...x)
Inform the parent automation that the event has triggered.
const char * get_peername_to(std::span< char, socket::SOCKADDR_STR_LEN > buf) const
Get peer name (IP address) into caller-provided buffer, returns buf for convenience.
const char * get_name() const
bool send_message(const ProtoMessage &msg, uint8_t message_type)
static constexpr uint8_t MESSAGE_TYPE
StringRef preannounce_media_id
static constexpr uint8_t MESSAGE_TYPE
uint32_t noise_suppression_level
enums::VoiceAssistantEvent event_type
std::vector< VoiceAssistantEventData > data
StringRef conversation_id
StringRef wake_word_phrase
static constexpr uint8_t MESSAGE_TYPE
VoiceAssistantAudioSettings audio_settings
enums::VoiceAssistantTimerEvent event_type
std::vector< WakeWordModel * > get_wake_words()
void add_data_callback(std::function< void(const std::vector< uint8_t > &)> &&data_callback)
virtual size_t play(const uint8_t *data, size_t length)=0
Plays the provided audio data.
virtual bool has_buffered_data() const =0
Trigger intent_end_trigger_
std::unique_ptr< socket::Socket > socket_
const Configuration & get_configuration()
size_t speaker_buffer_size_
bool started_streaming_tts_
std::string tts_response_url_
bool wait_for_stream_end_
size_t speaker_buffer_index_
Trigger intent_start_trigger_
void on_timer_event(const api::VoiceAssistantTimerEventResponse &msg)
Trigger tts_stream_start_trigger_
Trigger client_connected_trigger_
Trigger< Timer > timer_cancelled_trigger_
std::vector< Timer > timers_
void on_audio(const api::VoiceAssistantAudio &msg)
media_player::MediaPlayer * media_player_
float get_setup_priority() const override
Trigger wake_word_detected_trigger_
void set_state_(State state)
uint8_t * speaker_buffer_
Trigger stt_vad_end_trigger_
void client_subscription(api::APIConnection *client, bool subscribe)
Trigger< Timer > timer_started_trigger_
MediaPlayerResponseState media_player_response_state_
void deallocate_buffers_()
Trigger listening_trigger_
std::shared_ptr< RingBuffer > ring_buffer_
uint8_t noise_suppression_level_
void on_event(const api::VoiceAssistantEventResponse &msg)
Trigger< std::string, std::string > error_trigger_
Trigger< std::string > stt_end_trigger_
uint32_t conversation_timeout_
Trigger< const std::vector< Timer > & > timer_tick_trigger_
Trigger< std::string > intent_progress_trigger_
void on_announce(const api::VoiceAssistantAnnounceRequest &msg)
void request_start(bool continuous, bool silence_detection)
Trigger< std::string > tts_start_trigger_
api::APIConnection * api_client_
Trigger< std::string > tts_end_trigger_
struct sockaddr_storage dest_addr_
speaker::Speaker * speaker_
Trigger< Timer > timer_updated_trigger_
Trigger tts_stream_end_trigger_
Trigger stt_vad_start_trigger_
void start_playback_timeout_()
void reset_conversation_id()
std::string conversation_id_
microphone::MicrophoneSource * mic_source_
micro_wake_word::MicroWakeWord * micro_wake_word_
size_t speaker_bytes_received_
bool continue_conversation_
void on_set_configuration(const std::vector< std::string > &active_wake_words)
Trigger< Timer > timer_finished_trigger_
Trigger client_disconnected_trigger_
@ VOICE_ASSISTANT_REQUEST_USE_WAKE_WORD
@ VOICE_ASSISTANT_REQUEST_USE_VAD
@ VOICE_ASSISTANT_TIMER_UPDATED
@ VOICE_ASSISTANT_TIMER_STARTED
@ VOICE_ASSISTANT_TIMER_FINISHED
@ VOICE_ASSISTANT_TIMER_CANCELLED
@ VOICE_ASSISTANT_INTENT_END
@ VOICE_ASSISTANT_RUN_START
@ VOICE_ASSISTANT_TTS_END
@ VOICE_ASSISTANT_RUN_END
@ VOICE_ASSISTANT_WAKE_WORD_START
@ VOICE_ASSISTANT_TTS_STREAM_END
@ VOICE_ASSISTANT_STT_END
@ VOICE_ASSISTANT_STT_VAD_START
@ VOICE_ASSISTANT_INTENT_PROGRESS
@ VOICE_ASSISTANT_TTS_START
@ VOICE_ASSISTANT_STT_START
@ VOICE_ASSISTANT_INTENT_START
@ VOICE_ASSISTANT_TTS_STREAM_START
@ VOICE_ASSISTANT_STT_VAD_END
@ VOICE_ASSISTANT_WAKE_WORD_END
const float AFTER_CONNECTION
For components that should be initialized after a data connection (API/MQTT) is connected.
std::unique_ptr< Socket > socket(int domain, int type, int protocol)
Create a socket of the given domain, type and protocol.
socklen_t set_sockaddr_any(struct sockaddr *addr, socklen_t addrlen, uint16_t port)
Set a sockaddr to the any address and specified port for the IP version used by socket_ip().
VoiceAssistant * global_voice_assistant
Providing packet encoding functions for exchanging data with a remote host.
std::vector< WakeWord > available_wake_words
std::vector< std::string > active_wake_words
uint32_t max_active_wake_words
static constexpr size_t TO_STR_BUFFER_SIZE
Buffer size for to_str() - sufficient for typical timer names.
std::vector< std::string > trained_languages