From d844fba8528e6169e1de2048a8eaf9893291cb7e Mon Sep 17 00:00:00 2001 From: Rebbe Pod <66928914+RebbePod@users.noreply.github.com> Date: Tue, 27 Aug 2024 19:26:04 -0400 Subject: [PATCH] Update real_time_clock.h --- esphome/components/time/real_time_clock.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/esphome/components/time/real_time_clock.h b/esphome/components/time/real_time_clock.h index d842e0a8c4..41f4b05198 100644 --- a/esphome/components/time/real_time_clock.h +++ b/esphome/components/time/real_time_clock.h @@ -36,7 +36,8 @@ class RealTimeClock : public PollingComponent { time_t timestamp_now() { return ::time(nullptr); } void call_setup() override; - void apply_timezone_(); + + void apply_timezone() { return this->apply_timezone_(); } void add_on_time_sync_callback(std::function callback) { this->time_sync_callback_.add(std::move(callback)); @@ -47,6 +48,7 @@ class RealTimeClock : public PollingComponent { void synchronize_epoch_(uint32_t epoch); std::string timezone_{}; + void apply_timezone_(); CallbackManager time_sync_callback_; };