[event] Store event types in flash memory (#11767)

This commit is contained in:
J. Nick Koston
2025-11-07 15:46:16 -06:00
committed by GitHub
parent 79d1a558af
commit c77bb3b269
9 changed files with 67 additions and 26 deletions
+1 -1
View File
@@ -2053,7 +2053,7 @@ void ListEntitiesEventResponse::dump_to(std::string &out) const {
dump_field(out, "disabled_by_default", this->disabled_by_default);
dump_field(out, "entity_category", static_cast<enums::EntityCategory>(this->entity_category));
dump_field(out, "device_class", this->device_class_ref_);
for (const auto &it : this->event_types) {
for (const auto &it : *this->event_types) {
dump_field(out, "event_types", it, 4);
}
#ifdef USE_DEVICES