mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 11:47:30 +01:00
Set FEATURE_API_AUDIO flag also if the speaker component is not used (#6712)
This commit is contained in:
parent
a23d1631e1
commit
5ee4bf3802
@ -94,10 +94,10 @@ class VoiceAssistant : public Component {
|
||||
uint32_t get_feature_flags() const {
|
||||
uint32_t flags = 0;
|
||||
flags |= VoiceAssistantFeature::FEATURE_VOICE_ASSISTANT;
|
||||
flags |= VoiceAssistantFeature::FEATURE_API_AUDIO;
|
||||
#ifdef USE_SPEAKER
|
||||
if (this->speaker_ != nullptr) {
|
||||
flags |= VoiceAssistantFeature::FEATURE_SPEAKER;
|
||||
flags |= VoiceAssistantFeature::FEATURE_API_AUDIO;
|
||||
}
|
||||
#endif
|
||||
return flags;
|
||||
|
Loading…
Reference in New Issue
Block a user