mirror of
https://github.com/esphome/esphome.git
synced 2025-02-11 23:48:17 +00:00
* Socket refactor and SSL * esp-idf temp * Fixes * Echo component and noise * Add noise API transport support * Updates * ESP-IDF * Complete * Fixes * Fixes * Versions update * New i2c APIs * Complete i2c refactor * SPI migration * Revert ESP Preferences migration, too complex for now * OTA support * Remove echo again * Remove ssl again * GPIOFlags updates * Rename esphal and ICACHE_RAM_ATTR * Make ESP32 arduino compilable again * Fix GPIO flags * Complete pin registry refactor and fixes * Fixes to make test1 compile * Remove sdkconfig file * Ignore sdkconfig file * Fixes in reviewing * Make test2 compile * Make test4 compile * Make test5 compile * Run clang-format * Fix lint errors * Use esp-idf APIs instead of btStart * Another round of fixes * Start implementing ESP8266 * Make test3 compile * Guard esp8266 code * Lint * Reformat * Fixes * Fixes v2 * more fixes * ESP-IDF tidy target * Convert ARDUINO_ARCH_ESPxx * Update WiFiSignalSensor * Update time ifdefs * OTA needs millis from hal * RestartSwitch needs delay from hal * ESP-IDF Uart * Fix OTA blank password * Allow setting sdkconfig * Fix idf partitions and allow setting sdkconfig from yaml * Re-add read/write compat APIs and fix esp8266 uart * Fix esp8266 store log strings in flash * Fix ESP32 arduino preferences not initialized * Update ifdefs * Change how sdkconfig change is detected * Add checks to ci-custom and fix them * Run clang-format * Add esp-idf clang-tidy target and fix errors * Fixes from clang-tidy idf round 2 * Fixes from compiling tests with esp-idf * Run clang-format * Switch test5.yaml to esp-idf * Implement ESP8266 Preferences * Lint * Re-do PIO package version selection a bit * Fix arduinoespressif32 package version * Fix unit tests * Lint * Lint fixes * Fix readv/writev not defined * Fix graphing component * Re-add all old options from core/config.py Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
88 lines
3.1 KiB
C++
88 lines
3.1 KiB
C++
#include "automation.h"
|
|
#include "esphome/core/log.h"
|
|
#include <cinttypes>
|
|
|
|
namespace esphome {
|
|
namespace time {
|
|
|
|
static const char *const TAG = "automation";
|
|
|
|
void CronTrigger::add_second(uint8_t second) { this->seconds_[second] = true; }
|
|
void CronTrigger::add_minute(uint8_t minute) { this->minutes_[minute] = true; }
|
|
void CronTrigger::add_hour(uint8_t hour) { this->hours_[hour] = true; }
|
|
void CronTrigger::add_day_of_month(uint8_t day_of_month) { this->days_of_month_[day_of_month] = true; }
|
|
void CronTrigger::add_month(uint8_t month) { this->months_[month] = true; }
|
|
void CronTrigger::add_day_of_week(uint8_t day_of_week) { this->days_of_week_[day_of_week] = true; }
|
|
bool CronTrigger::matches(const ESPTime &time) {
|
|
return time.is_valid() && this->seconds_[time.second] && this->minutes_[time.minute] && this->hours_[time.hour] &&
|
|
this->days_of_month_[time.day_of_month] && this->months_[time.month] && this->days_of_week_[time.day_of_week];
|
|
}
|
|
void CronTrigger::loop() {
|
|
ESPTime time = this->rtc_->now();
|
|
if (!time.is_valid())
|
|
return;
|
|
|
|
if (this->last_check_.has_value()) {
|
|
if (*this->last_check_ > time && this->last_check_->timestamp - time.timestamp > 900) {
|
|
// We went back in time (a lot), probably caused by time synchronization
|
|
ESP_LOGW(TAG, "Time has jumped back!");
|
|
} else if (*this->last_check_ >= time) {
|
|
// already handled this one
|
|
return;
|
|
}
|
|
|
|
while (true) {
|
|
this->last_check_->increment_second();
|
|
if (*this->last_check_ >= time)
|
|
break;
|
|
|
|
if (this->matches(*this->last_check_))
|
|
this->trigger();
|
|
}
|
|
}
|
|
|
|
this->last_check_ = time;
|
|
if (!time.fields_in_range()) {
|
|
ESP_LOGW(TAG, "Time is out of range!");
|
|
ESP_LOGD(TAG, "Second=%02u Minute=%02u Hour=%02u DayOfWeek=%u DayOfMonth=%u DayOfYear=%u Month=%u time=%" PRId64,
|
|
time.second, time.minute, time.hour, time.day_of_week, time.day_of_month, time.day_of_year, time.month,
|
|
(int64_t) time.timestamp);
|
|
}
|
|
|
|
if (this->matches(time))
|
|
this->trigger();
|
|
}
|
|
CronTrigger::CronTrigger(RealTimeClock *rtc) : rtc_(rtc) {}
|
|
void CronTrigger::add_seconds(const std::vector<uint8_t> &seconds) {
|
|
for (uint8_t it : seconds)
|
|
this->add_second(it);
|
|
}
|
|
void CronTrigger::add_minutes(const std::vector<uint8_t> &minutes) {
|
|
for (uint8_t it : minutes)
|
|
this->add_minute(it);
|
|
}
|
|
void CronTrigger::add_hours(const std::vector<uint8_t> &hours) {
|
|
for (uint8_t it : hours)
|
|
this->add_hour(it);
|
|
}
|
|
void CronTrigger::add_days_of_month(const std::vector<uint8_t> &days_of_month) {
|
|
for (uint8_t it : days_of_month)
|
|
this->add_day_of_month(it);
|
|
}
|
|
void CronTrigger::add_months(const std::vector<uint8_t> &months) {
|
|
for (uint8_t it : months)
|
|
this->add_month(it);
|
|
}
|
|
void CronTrigger::add_days_of_week(const std::vector<uint8_t> &days_of_week) {
|
|
for (uint8_t it : days_of_week)
|
|
this->add_day_of_week(it);
|
|
}
|
|
float CronTrigger::get_setup_priority() const { return setup_priority::HARDWARE; }
|
|
|
|
SyncTrigger::SyncTrigger(RealTimeClock *rtc) : rtc_(rtc) {
|
|
rtc->add_on_time_sync_callback([this]() { this->trigger(); });
|
|
}
|
|
|
|
} // namespace time
|
|
} // namespace esphome
|