remove ifdef USE_ARDUINO

This commit is contained in:
Alexander 'Leo' Bergolth 2024-11-14 17:57:46 +01:00
parent f81aad1197
commit c33e9e0352
2 changed files with 0 additions and 8 deletions

View file

@ -1,5 +1,3 @@
#ifdef USE_ARDUINO
#include "list_entities.h" #include "list_entities.h"
#include "esphome/core/application.h" #include "esphome/core/application.h"
@ -31,5 +29,3 @@ optional<std::string> StatesIterator::next() {
} // namespace web_server } // namespace web_server
} // namespace esphome } // namespace esphome
#endif // USE_ARDUINO

View file

@ -1,7 +1,5 @@
#pragma once #pragma once
#ifdef USE_ARDUINO
#include "list_entities.h" #include "list_entities.h"
#include "esphome/core/component.h" #include "esphome/core/component.h"
#include "esphome/core/component_iterator.h" #include "esphome/core/component_iterator.h"
@ -28,5 +26,3 @@ class StatesIterator : public ListEntitiesIterator {
} // namespace web_server } // namespace web_server
} // namespace esphome } // namespace esphome
#endif // USE_ARDUINO