1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-05 19:33:47 +01:00
This commit is contained in:
J. Nick Koston
2025-06-14 22:36:29 -05:00
parent 8fb3856665
commit 7ddf51bb51
2 changed files with 7 additions and 2 deletions

View File

@@ -98,6 +98,11 @@ void Application::loop() {
this->feed_wdt(last_op_end_time);
for (Component *component : this->looping_components_) {
// Skip components that are done or failed
if (component->should_skip_loop()) {
continue;
}
// Update the cached time before each component runs
this->loop_component_start_time_ = last_op_end_time;