Browse Source

scheduler: clang-tidy being clever

pull/2607/head
Maxim Prokhorov 1 month ago
parent
commit
8ff1cd9404
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      code/espurna/scheduler.cpp

+ 9
- 2
code/espurna/scheduler.cpp View File

@ -15,15 +15,22 @@ Copyright (C) 2019-2024 by Maxim Prokhorov <prokhorov dot max at outlook dot com
#include "api.h"
#include "datetime.h"
#include "light.h"
#include "mqtt.h"
#include "ntp.h"
#include "ntp_timelib.h"
#include "curtain_kingart.h"
#include "relay.h"
#include "scheduler.h"
#include "ws.h"
#if TERMINAL_SUPPORT == 0
#if LIGHT_PROVIDER != LIGHT_PROVIDER_NONE
#include "light.h"
#endif
#if RELAY_SUPPORT
#include "relay.h"
#endif
#endif
#include "libs/EphemeralPrint.h"
#include "libs/PrintString.h"


Loading…
Cancel
Save