mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Set FEATURE_API_AUDIO flag also if the speaker component is not used (#6712)
This commit is contained in:
parent
4ec2ef27a8
commit
694f75117e
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue