ESPHome 2026.10.0-dev
Loading...
Searching...
No Matches
micro_wake_word.h
Go to the documentation of this file.
1#pragma once
2
3#ifdef USE_ESP32
4
6#include "streaming_model.h"
7
10
15
16#ifdef USE_OTA_STATE_LISTENER
18#endif
19
20#include <freertos/event_groups.h>
21
22#include <frontend.h>
23#include <frontend_util.h>
24
26
33
34class MicroWakeWord final : public Component
35#ifdef USE_OTA_STATE_LISTENER
36 ,
38#endif
39{
40 public:
41 void setup() override;
42 void loop() override;
43 float get_setup_priority() const override;
44 void dump_config() override;
45
46#ifdef USE_OTA_STATE_LISTENER
47 void on_ota_global_state(ota::OTAState state, float progress, uint8_t error, ota::OTAComponent *comp) override;
48#endif
49
50 void start();
51 void stop();
52
53 bool is_running() const { return this->state_ != State::STOPPED; }
54
55 void set_features_step_size(uint8_t step_size) { this->features_step_size_ = step_size; }
56
58 this->microphone_source_ = microphone_source;
59 }
60
61 void set_stop_after_detection(bool stop_after_detection) { this->stop_after_detection_ = stop_after_detection; }
62
63 void set_task_stack_in_psram(bool task_stack_in_psram) { this->task_stack_in_psram_ = task_stack_in_psram; }
64
66
68
77 bool add_runtime_model(std::unique_ptr<WakeWordModel> model);
78
83 bool remove_runtime_model(const std::string &model_id);
84
87 WakeWordModel *get_model_by_id(const std::string &model_id);
88
90 std::vector<std::string> get_runtime_model_ids();
91
93 uint8_t get_features_step_size() const { return this->features_step_size_; }
94
95#ifdef USE_MICRO_WAKE_WORD_VAD
96 void add_vad_model(const uint8_t *model_start, uint8_t probability_cutoff, size_t sliding_window_size,
97 size_t tensor_arena_size);
98
99 // Intended for the voice assistant component to fetch VAD status
100 bool get_vad_state() { return this->vad_state_; }
101#endif
102
103 // Intended for the voice assistant component to access which wake words are available
104 // Since these are pointers to the WakeWordModel objects, the voice assistant component can enable or disable them
105 std::vector<WakeWordModel *> get_wake_words();
106
107 protected:
111
112 std::weak_ptr<ring_buffer::RingBuffer> ring_buffer_;
113 std::vector<WakeWordModel *> wake_word_models_;
114 std::vector<std::unique_ptr<WakeWordModel>> runtime_models_;
115
116#ifdef USE_MICRO_WAKE_WORD_VAD
117 std::unique_ptr<VADModel> vad_model_;
118 bool vad_state_{false};
119#endif
120
121 bool pending_start_{false};
122 bool pending_stop_{false};
123
125
127
129
130 // Audio frontend handles generating spectrogram features
131 struct FrontendConfig frontend_config_;
132 struct FrontendState frontend_state_;
133
134 // Handles managing the stop/state of the inference task
135 EventGroupHandle_t event_group_;
136
137 // Used to send messages about the models' states to the main loop
138 QueueHandle_t detection_queue_;
139
141
142 static void inference_task(void *params);
143
145 void suspend_task_();
147 void resume_task_();
148
152 bool try_lock_models_();
154 void unlock_models_();
155
156 void set_state_(State state);
157
166 bool generate_features_(const int16_t *audio_buffer, size_t samples_available,
167 int8_t features_buffer[PREPROCESSOR_FEATURE_SIZE], size_t *processed_samples);
168
172
174 void unload_models_();
175
179 bool update_model_probabilities_(const int8_t audio_features[PREPROCESSOR_FEATURE_SIZE]);
180};
181
182} // namespace esphome::micro_wake_word
183
184#endif // USE_ESP32
Helper for FreeRTOS static task management.
Definition static_task.h:16
void resume_task_()
Resumes the inference task.
microphone::MicrophoneSource * microphone_source_
void set_task_stack_in_psram(bool task_stack_in_psram)
void process_probabilities_()
Processes any new probabilities for each model.
bool remove_runtime_model(const std::string &model_id)
Removes a runtime-downloaded wake word model and frees its interpreter, arenas, and model buffer.
void set_stop_after_detection(bool stop_after_detection)
WakeWordModel * get_model_by_id(const std::string &model_id)
Returns the wake word model with the given id, or nullptr if none matches (compiled or runtime).
std::vector< WakeWordModel * > wake_word_models_
void suspend_task_()
Suspends the inference task.
uint8_t get_features_step_size() const
Returns the feature step size (ms) the frontend is configured for. Runtime models must match it.
std::vector< std::string > get_runtime_model_ids()
Returns the ids of all runtime-downloaded models. Must be called from the main loop.
Trigger< std::string > wake_word_detected_trigger_
void add_wake_word_model(WakeWordModel *model)
bool generate_features_(const int16_t *audio_buffer, size_t samples_available, int8_t features_buffer[PREPROCESSOR_FEATURE_SIZE], size_t *processed_samples)
Generates a spectrogram feature from an input buffer of audio samples.
bool try_lock_models_()
Parks the inference task at a safe point (or verifies it isn't running) so the model lists may be mut...
bool add_runtime_model(std::unique_ptr< WakeWordModel > model)
Adds a runtime-downloaded wake word model.
bool update_model_probabilities_(const int8_t audio_features[PREPROCESSOR_FEATURE_SIZE])
Runs an inference with each model using the new spectrogram features.
std::vector< std::unique_ptr< WakeWordModel > > runtime_models_
std::unique_ptr< VADModel > vad_model_
std::weak_ptr< ring_buffer::RingBuffer > ring_buffer_
void unlock_models_()
Releases the inference task parked by a successful try_lock_models_() call.
void add_vad_model(const uint8_t *model_start, uint8_t probability_cutoff, size_t sliding_window_size, size_t tensor_arena_size)
void set_features_step_size(uint8_t step_size)
void set_microphone_source(microphone::MicrophoneSource *microphone_source)
void unload_models_()
Deletes each model's TFLite interpreters and frees tensor arena memory.
std::vector< WakeWordModel * > get_wake_words()
void on_ota_global_state(ota::OTAState state, float progress, uint8_t error, ota::OTAComponent *comp) override
Trigger< std::string > * get_wake_word_detected_trigger()
Listener interface for global OTA state changes (includes OTA component pointer).
bool state
Definition fan.h:2