ESPHome
2025.2.0
|
#include <voice_assistant.h>
Public Member Functions | |
VoiceAssistant () | |
void | loop () override |
float | get_setup_priority () const override |
void | start_streaming () |
void | start_streaming (struct sockaddr_storage *addr, uint16_t port) |
void | failed_to_start () |
void | set_microphone (microphone::Microphone *mic) |
void | set_speaker (speaker::Speaker *speaker) |
void | set_media_player (media_player::MediaPlayer *media_player) |
uint32_t | get_legacy_version () const |
uint32_t | get_feature_flags () const |
void | request_start (bool continuous, bool silence_detection) |
void | request_stop () |
void | on_event (const api::VoiceAssistantEventResponse &msg) |
void | on_audio (const api::VoiceAssistantAudio &msg) |
void | on_timer_event (const api::VoiceAssistantTimerEventResponse &msg) |
void | on_announce (const api::VoiceAssistantAnnounceRequest &msg) |
void | on_set_configuration (const std::vector< std::string > &active_wake_words) |
const Configuration & | get_configuration () |
bool | is_running () const |
void | set_continuous (bool continuous) |
bool | is_continuous () const |
void | set_use_wake_word (bool use_wake_word) |
void | set_vad_threshold (uint8_t vad_threshold) |
void | set_noise_suppression_level (uint8_t noise_suppression_level) |
void | set_auto_gain (uint8_t auto_gain) |
void | set_volume_multiplier (float volume_multiplier) |
void | set_conversation_timeout (uint32_t conversation_timeout) |
void | reset_conversation_id () |
Trigger * | get_intent_end_trigger () const |
Trigger * | get_intent_start_trigger () const |
Trigger * | get_listening_trigger () const |
Trigger * | get_end_trigger () const |
Trigger * | get_start_trigger () const |
Trigger * | get_stt_vad_end_trigger () const |
Trigger * | get_stt_vad_start_trigger () const |
Trigger * | get_tts_stream_start_trigger () const |
Trigger * | get_tts_stream_end_trigger () const |
Trigger * | get_wake_word_detected_trigger () const |
Trigger< std::string > * | get_stt_end_trigger () const |
Trigger< std::string > * | get_tts_end_trigger () const |
Trigger< std::string > * | get_tts_start_trigger () const |
Trigger< std::string, std::string > * | get_error_trigger () const |
Trigger * | get_idle_trigger () const |
Trigger * | get_client_connected_trigger () const |
Trigger * | get_client_disconnected_trigger () const |
void | client_subscription (api::APIConnection *client, bool subscribe) |
api::APIConnection * | get_api_connection () const |
void | set_wake_word (const std::string &wake_word) |
Trigger< Timer > * | get_timer_started_trigger () const |
Trigger< Timer > * | get_timer_updated_trigger () const |
Trigger< Timer > * | get_timer_cancelled_trigger () const |
Trigger< Timer > * | get_timer_finished_trigger () const |
Trigger< std::vector< Timer > > * | get_timer_tick_trigger () const |
void | set_has_timers (bool has_timers) |
const std::unordered_map< std::string, Timer > & | get_timers () const |
![]() | |
virtual void | setup () |
Where the component's initialization should happen. More... | |
virtual void | dump_config () |
float | get_actual_setup_priority () const |
void | set_setup_priority (float priority) |
virtual float | get_loop_priority () const |
priority of loop(). More... | |
void | call () |
virtual void | on_shutdown () |
virtual void | on_safe_shutdown () |
uint32_t | get_component_state () const |
virtual void | mark_failed () |
Mark this component as failed. More... | |
bool | is_failed () const |
bool | is_ready () const |
virtual bool | can_proceed () |
bool | status_has_warning () const |
bool | status_has_error () const |
void | status_set_warning (const char *message="unspecified") |
void | status_set_error (const char *message="unspecified") |
void | status_clear_warning () |
void | status_clear_error () |
void | status_momentary_warning (const std::string &name, uint32_t length=5000) |
void | status_momentary_error (const std::string &name, uint32_t length=5000) |
bool | has_overridden_loop () const |
void | set_component_source (const char *source) |
Set where this component was loaded from for some debug messages. More... | |
const char * | get_component_source () const |
Get the integration where this component was declared as a string. More... | |
Protected Member Functions | |
bool | allocate_buffers_ () |
void | clear_buffers_ () |
void | deallocate_buffers_ () |
int | read_microphone_ () |
void | set_state_ (State state) |
void | set_state_ (State state, State desired_state) |
void | signal_stop_ () |
void | start_playback_timeout_ () |
void | timer_tick_ () |
void | write_speaker_ () |
bool | start_udp_socket_ () |
![]() | |
virtual void | call_loop () |
virtual void | call_setup () |
virtual void | call_dump_config () |
void | set_interval (const std::string &name, uint32_t interval, std::function< void()> &&f) |
Set an interval function with a unique name. More... | |
void | set_interval (uint32_t interval, std::function< void()> &&f) |
bool | cancel_interval (const std::string &name) |
Cancel an interval function. More... | |
void | set_retry (const std::string &name, uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f) |
Set an retry function with a unique name. More... | |
void | set_retry (uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f) |
bool | cancel_retry (const std::string &name) |
Cancel a retry function. More... | |
void | set_timeout (const std::string &name, uint32_t timeout, std::function< void()> &&f) |
Set a timeout function with a unique name. More... | |
void | set_timeout (uint32_t timeout, std::function< void()> &&f) |
bool | cancel_timeout (const std::string &name) |
Cancel a timeout function. More... | |
void | defer (const std::string &name, std::function< void()> &&f) |
Defer a callback to the next loop() call. More... | |
void | defer (std::function< void()> &&f) |
Defer a callback to the next loop() call. More... | |
bool | cancel_defer (const std::string &name) |
Cancel a defer callback using the specified name, name must not be empty. More... | |
Definition at line 93 of file voice_assistant.h.
esphome::voice_assistant::VoiceAssistant::VoiceAssistant | ( | ) |
Definition at line 27 of file voice_assistant.cpp.
|
protected |
Definition at line 74 of file voice_assistant.cpp.
|
protected |
Definition at line 117 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::client_subscription | ( | api::APIConnection * | client, |
bool | subscribe | ||
) |
Definition at line 447 of file voice_assistant.cpp.
|
protected |
Definition at line 141 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::failed_to_start | ( | ) |
Definition at line 515 of file voice_assistant.cpp.
|
inline |
Definition at line 198 of file voice_assistant.h.
|
inline |
Definition at line 194 of file voice_assistant.h.
|
inline |
Definition at line 195 of file voice_assistant.h.
|
inline |
Definition at line 157 of file voice_assistant.h.
|
inline |
Definition at line 179 of file voice_assistant.h.
|
inline |
Definition at line 191 of file voice_assistant.h.
|
inline |
Definition at line 126 of file voice_assistant.h.
|
inline |
Definition at line 192 of file voice_assistant.h.
|
inline |
Definition at line 176 of file voice_assistant.h.
|
inline |
Definition at line 177 of file voice_assistant.h.
|
inline |
Definition at line 117 of file voice_assistant.h.
|
inline |
Definition at line 178 of file voice_assistant.h.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 29 of file voice_assistant.cpp.
|
inline |
Definition at line 180 of file voice_assistant.h.
|
inline |
Definition at line 188 of file voice_assistant.h.
|
inline |
Definition at line 181 of file voice_assistant.h.
|
inline |
Definition at line 182 of file voice_assistant.h.
|
inline |
Definition at line 204 of file voice_assistant.h.
|
inline |
Definition at line 205 of file voice_assistant.h.
|
inline |
Definition at line 202 of file voice_assistant.h.
|
inline |
Definition at line 206 of file voice_assistant.h.
|
inline |
Definition at line 203 of file voice_assistant.h.
|
inline |
Definition at line 208 of file voice_assistant.h.
|
inline |
Definition at line 189 of file voice_assistant.h.
|
inline |
Definition at line 190 of file voice_assistant.h.
|
inline |
Definition at line 185 of file voice_assistant.h.
|
inline |
Definition at line 184 of file voice_assistant.h.
|
inline |
Definition at line 187 of file voice_assistant.h.
|
inline |
Definition at line 161 of file voice_assistant.h.
|
inline |
Definition at line 159 of file voice_assistant.h.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 192 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::on_announce | ( | const api::VoiceAssistantAnnounceRequest & | msg | ) |
Definition at line 887 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::on_audio | ( | const api::VoiceAssistantAudio & | msg | ) |
Definition at line 819 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::on_event | ( | const api::VoiceAssistantEventResponse & | msg | ) |
Definition at line 641 of file voice_assistant.cpp.
|
inline |
Definition at line 156 of file voice_assistant.h.
void esphome::voice_assistant::VoiceAssistant::on_timer_event | ( | const api::VoiceAssistantTimerEventResponse & | msg | ) |
Definition at line 835 of file voice_assistant.cpp.
|
protected |
Definition at line 176 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::request_start | ( | bool | continuous, |
bool | silence_detection | ||
) |
Definition at line 567 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::request_stop | ( | ) |
Definition at line 588 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::reset_conversation_id | ( | ) |
Definition at line 171 of file voice_assistant.cpp.
|
inline |
Definition at line 171 of file voice_assistant.h.
|
inline |
Definition at line 160 of file voice_assistant.h.
|
inline |
Definition at line 173 of file voice_assistant.h.
|
inline |
Definition at line 207 of file voice_assistant.h.
|
inline |
Definition at line 111 of file voice_assistant.h.
|
inline |
Definition at line 103 of file voice_assistant.h.
|
inline |
Definition at line 168 of file voice_assistant.h.
|
inline |
Definition at line 105 of file voice_assistant.h.
|
protected |
Definition at line 502 of file voice_assistant.cpp.
|
protected |
Definition at line 509 of file voice_assistant.cpp.
|
inline |
Definition at line 163 of file voice_assistant.h.
|
inline |
Definition at line 165 of file voice_assistant.h.
|
inline |
Definition at line 172 of file voice_assistant.h.
|
inline |
Definition at line 200 of file voice_assistant.h.
|
protected |
Definition at line 619 of file voice_assistant.cpp.
|
protected |
Definition at line 630 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::start_streaming | ( | ) |
Definition at line 521 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::start_streaming | ( | struct sockaddr_storage * | addr, |
uint16_t | port | ||
) |
Definition at line 537 of file voice_assistant.cpp.
|
protected |
Definition at line 31 of file voice_assistant.cpp.
|
protected |
Definition at line 874 of file voice_assistant.cpp.
|
protected |
Definition at line 429 of file voice_assistant.cpp.
|
protected |
Definition at line 245 of file voice_assistant.h.
|
protected |
Definition at line 302 of file voice_assistant.h.
|
protected |
Definition at line 289 of file voice_assistant.h.
|
protected |
Definition at line 242 of file voice_assistant.h.
|
protected |
Definition at line 243 of file voice_assistant.h.
|
protected |
Definition at line 306 of file voice_assistant.h.
|
protected |
Definition at line 296 of file voice_assistant.h.
|
protected |
Definition at line 274 of file voice_assistant.h.
|
protected |
Definition at line 291 of file voice_assistant.h.
|
protected |
Definition at line 300 of file voice_assistant.h.
|
protected |
Definition at line 222 of file voice_assistant.h.
Definition at line 227 of file voice_assistant.h.
|
protected |
Definition at line 239 of file voice_assistant.h.
|
protected |
Definition at line 254 of file voice_assistant.h.
|
protected |
Definition at line 278 of file voice_assistant.h.
Definition at line 240 of file voice_assistant.h.
|
protected |
Definition at line 294 of file voice_assistant.h.
Definition at line 224 of file voice_assistant.h.
|
protected |
Definition at line 225 of file voice_assistant.h.
Definition at line 226 of file voice_assistant.h.
|
protected |
Definition at line 272 of file voice_assistant.h.
|
protected |
Definition at line 269 of file voice_assistant.h.
|
protected |
Definition at line 257 of file voice_assistant.h.
|
protected |
Definition at line 288 of file voice_assistant.h.
|
protected |
Definition at line 285 of file voice_assistant.h.
|
protected |
Definition at line 293 of file voice_assistant.h.
|
protected |
Definition at line 297 of file voice_assistant.h.
|
protected |
Definition at line 221 of file voice_assistant.h.
|
protected |
Definition at line 260 of file voice_assistant.h.
|
protected |
Definition at line 261 of file voice_assistant.h.
|
protected |
Definition at line 262 of file voice_assistant.h.
|
protected |
Definition at line 263 of file voice_assistant.h.
|
protected |
Definition at line 264 of file voice_assistant.h.
Definition at line 228 of file voice_assistant.h.
|
protected |
Definition at line 299 of file voice_assistant.h.
|
protected |
Definition at line 266 of file voice_assistant.h.
|
protected |
Definition at line 236 of file voice_assistant.h.
Definition at line 230 of file voice_assistant.h.
|
protected |
Definition at line 229 of file voice_assistant.h.
|
protected |
Definition at line 252 of file voice_assistant.h.
|
protected |
Definition at line 250 of file voice_assistant.h.
|
protected |
Definition at line 249 of file voice_assistant.h.
|
protected |
Definition at line 255 of file voice_assistant.h.
|
protected |
Definition at line 253 of file voice_assistant.h.
|
protected |
Definition at line 251 of file voice_assistant.h.
|
protected |
Definition at line 247 of file voice_assistant.h.
|
protected |
Definition at line 237 of file voice_assistant.h.
|
protected |
Definition at line 238 of file voice_assistant.h.
|
protected |
Definition at line 233 of file voice_assistant.h.
|
protected |
Definition at line 232 of file voice_assistant.h.
|
protected |
Definition at line 303 of file voice_assistant.h.
|
protected |
Definition at line 287 of file voice_assistant.h.
|
protected |
Definition at line 283 of file voice_assistant.h.
|
protected |
Definition at line 281 of file voice_assistant.h.
|
protected |
Definition at line 282 of file voice_assistant.h.
|
protected |
Definition at line 290 of file voice_assistant.h.
|
protected |
Definition at line 265 of file voice_assistant.h.
|
protected |
Definition at line 276 of file voice_assistant.h.
|
protected |
Definition at line 235 of file voice_assistant.h.