Files
2024-01-07 22:23:12 -08:00

14 lines
221 B
C++

#include "boot_delay.h"
#include "esphome/core/hal.h"
namespace esphome {
namespace boot_delay {
bool BootDelay::can_proceed() {
return millis() >= this->delay_;
}
} // namespace boot_delay
} // namespace esphome