ESPHome
2024.10.2
|
#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 |
Public Member Functions inherited from esphome::Component | |
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 | timer_tick_ () |
void | write_speaker_ () |
bool | start_udp_socket_ () |
Protected Member Functions inherited from esphome::Component | |
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 92 of file voice_assistant.h.
esphome::voice_assistant::VoiceAssistant::VoiceAssistant | ( | ) |
Definition at line 26 of file voice_assistant.cpp.
|
protected |
Definition at line 73 of file voice_assistant.cpp.
|
protected |
Definition at line 116 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::client_subscription | ( | api::APIConnection * | client, |
bool | subscribe | ||
) |
Definition at line 453 of file voice_assistant.cpp.
|
protected |
Definition at line 140 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::failed_to_start | ( | ) |
Definition at line 521 of file voice_assistant.cpp.
|
inline |
Definition at line 191 of file voice_assistant.h.
|
inline |
Definition at line 187 of file voice_assistant.h.
|
inline |
Definition at line 188 of file voice_assistant.h.
|
inline |
Definition at line 150 of file voice_assistant.h.
|
inline |
Definition at line 172 of file voice_assistant.h.
|
inline |
Definition at line 184 of file voice_assistant.h.
|
inline |
Definition at line 125 of file voice_assistant.h.
|
inline |
Definition at line 185 of file voice_assistant.h.
|
inline |
Definition at line 169 of file voice_assistant.h.
|
inline |
Definition at line 170 of file voice_assistant.h.
|
inline |
Definition at line 116 of file voice_assistant.h.
|
inline |
Definition at line 171 of file voice_assistant.h.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 28 of file voice_assistant.cpp.
|
inline |
Definition at line 173 of file voice_assistant.h.
|
inline |
Definition at line 181 of file voice_assistant.h.
|
inline |
Definition at line 174 of file voice_assistant.h.
|
inline |
Definition at line 175 of file voice_assistant.h.
|
inline |
Definition at line 197 of file voice_assistant.h.
|
inline |
Definition at line 198 of file voice_assistant.h.
|
inline |
Definition at line 195 of file voice_assistant.h.
|
inline |
Definition at line 199 of file voice_assistant.h.
|
inline |
Definition at line 196 of file voice_assistant.h.
|
inline |
Definition at line 201 of file voice_assistant.h.
|
inline |
Definition at line 182 of file voice_assistant.h.
|
inline |
Definition at line 183 of file voice_assistant.h.
|
inline |
Definition at line 178 of file voice_assistant.h.
|
inline |
Definition at line 177 of file voice_assistant.h.
|
inline |
Definition at line 180 of file voice_assistant.h.
|
inline |
Definition at line 154 of file voice_assistant.h.
|
inline |
Definition at line 152 of file voice_assistant.h.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 191 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::on_announce | ( | const api::VoiceAssistantAnnounceRequest & | msg | ) |
Definition at line 877 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::on_audio | ( | const api::VoiceAssistantAudio & | msg | ) |
Definition at line 809 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::on_event | ( | const api::VoiceAssistantEventResponse & | msg | ) |
Definition at line 634 of file voice_assistant.cpp.
|
inline |
Definition at line 149 of file voice_assistant.h.
void esphome::voice_assistant::VoiceAssistant::on_timer_event | ( | const api::VoiceAssistantTimerEventResponse & | msg | ) |
Definition at line 825 of file voice_assistant.cpp.
|
protected |
Definition at line 175 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::request_start | ( | bool | continuous, |
bool | silence_detection | ||
) |
Definition at line 573 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::request_stop | ( | ) |
Definition at line 594 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::reset_conversation_id | ( | ) |
Definition at line 170 of file voice_assistant.cpp.
|
inline |
Definition at line 164 of file voice_assistant.h.
|
inline |
Definition at line 153 of file voice_assistant.h.
|
inline |
Definition at line 166 of file voice_assistant.h.
|
inline |
Definition at line 200 of file voice_assistant.h.
|
inline |
Definition at line 110 of file voice_assistant.h.
|
inline |
Definition at line 102 of file voice_assistant.h.
|
inline |
Definition at line 161 of file voice_assistant.h.
|
inline |
Definition at line 104 of file voice_assistant.h.
|
protected |
Definition at line 508 of file voice_assistant.cpp.
|
protected |
Definition at line 515 of file voice_assistant.cpp.
|
inline |
Definition at line 156 of file voice_assistant.h.
|
inline |
Definition at line 158 of file voice_assistant.h.
|
inline |
Definition at line 165 of file voice_assistant.h.
|
inline |
Definition at line 193 of file voice_assistant.h.
|
protected |
Definition at line 623 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::start_streaming | ( | ) |
Definition at line 527 of file voice_assistant.cpp.
void esphome::voice_assistant::VoiceAssistant::start_streaming | ( | struct sockaddr_storage * | addr, |
uint16_t | port | ||
) |
Definition at line 543 of file voice_assistant.cpp.
|
protected |
Definition at line 30 of file voice_assistant.cpp.
|
protected |
Definition at line 864 of file voice_assistant.cpp.
|
protected |
Definition at line 435 of file voice_assistant.cpp.
|
protected |
Definition at line 237 of file voice_assistant.h.
|
protected |
Definition at line 294 of file voice_assistant.h.
|
protected |
Definition at line 281 of file voice_assistant.h.
|
protected |
Definition at line 234 of file voice_assistant.h.
|
protected |
Definition at line 235 of file voice_assistant.h.
|
protected |
Definition at line 298 of file voice_assistant.h.
|
protected |
Definition at line 288 of file voice_assistant.h.
|
protected |
Definition at line 266 of file voice_assistant.h.
|
protected |
Definition at line 283 of file voice_assistant.h.
|
protected |
Definition at line 292 of file voice_assistant.h.
|
protected |
Definition at line 214 of file voice_assistant.h.
Definition at line 219 of file voice_assistant.h.
|
protected |
Definition at line 231 of file voice_assistant.h.
|
protected |
Definition at line 246 of file voice_assistant.h.
|
protected |
Definition at line 270 of file voice_assistant.h.
Definition at line 232 of file voice_assistant.h.
|
protected |
Definition at line 286 of file voice_assistant.h.
Definition at line 216 of file voice_assistant.h.
|
protected |
Definition at line 217 of file voice_assistant.h.
Definition at line 218 of file voice_assistant.h.
|
protected |
Definition at line 264 of file voice_assistant.h.
|
protected |
Definition at line 261 of file voice_assistant.h.
|
protected |
Definition at line 249 of file voice_assistant.h.
|
protected |
Definition at line 280 of file voice_assistant.h.
|
protected |
Definition at line 277 of file voice_assistant.h.
|
protected |
Definition at line 285 of file voice_assistant.h.
|
protected |
Definition at line 289 of file voice_assistant.h.
|
protected |
Definition at line 213 of file voice_assistant.h.
|
protected |
Definition at line 252 of file voice_assistant.h.
|
protected |
Definition at line 253 of file voice_assistant.h.
|
protected |
Definition at line 254 of file voice_assistant.h.
|
protected |
Definition at line 255 of file voice_assistant.h.
|
protected |
Definition at line 256 of file voice_assistant.h.
Definition at line 220 of file voice_assistant.h.
|
protected |
Definition at line 291 of file voice_assistant.h.
|
protected |
Definition at line 258 of file voice_assistant.h.
|
protected |
Definition at line 228 of file voice_assistant.h.
Definition at line 222 of file voice_assistant.h.
|
protected |
Definition at line 221 of file voice_assistant.h.
|
protected |
Definition at line 244 of file voice_assistant.h.
|
protected |
Definition at line 242 of file voice_assistant.h.
|
protected |
Definition at line 241 of file voice_assistant.h.
|
protected |
Definition at line 247 of file voice_assistant.h.
|
protected |
Definition at line 245 of file voice_assistant.h.
|
protected |
Definition at line 243 of file voice_assistant.h.
|
protected |
Definition at line 239 of file voice_assistant.h.
|
protected |
Definition at line 229 of file voice_assistant.h.
|
protected |
Definition at line 230 of file voice_assistant.h.
|
protected |
Definition at line 225 of file voice_assistant.h.
|
protected |
Definition at line 224 of file voice_assistant.h.
|
protected |
Definition at line 295 of file voice_assistant.h.
|
protected |
Definition at line 279 of file voice_assistant.h.
|
protected |
Definition at line 275 of file voice_assistant.h.
|
protected |
Definition at line 273 of file voice_assistant.h.
|
protected |
Definition at line 274 of file voice_assistant.h.
|
protected |
Definition at line 282 of file voice_assistant.h.
|
protected |
Definition at line 257 of file voice_assistant.h.
|
protected |
Definition at line 268 of file voice_assistant.h.
|
protected |
Definition at line 227 of file voice_assistant.h.