From 8e78f1b631b36525380ce1c643e263fe1bb461f8 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Tue, 18 Feb 2025 13:07:57 +0100 Subject: [PATCH] fix: add timer data writing to FRAM in DynamicLampComponent --- esphome/components/dynamic_lamp/dynamic_lamp.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/esphome/components/dynamic_lamp/dynamic_lamp.cpp b/esphome/components/dynamic_lamp/dynamic_lamp.cpp index 6a36310f86..2f2c83cef9 100644 --- a/esphome/components/dynamic_lamp/dynamic_lamp.cpp +++ b/esphome/components/dynamic_lamp/dynamic_lamp.cpp @@ -250,9 +250,11 @@ bool DynamicLampComponent::add_timer(std::string lamp_name, bool timer_active, u new_timer.begin_date = begin_date; new_timer.end_date = end_date; ESP_LOGV(TAG, "Added new timer for lamp %s, active %d, mode %d, hour %d, minute %d, monday %d, tuesday %d, wednesday %d, thursday %d, friday %d, saturday %d, sunday %d", - lamp_name, new_timer.active, new_timer.mode, new_timer.hour, new_timer.minute, new_timer.monday, new_timer.tuesday, new_timer.wednesday, + lamp_name.c_str(), new_timer.active, new_timer.mode, new_timer.hour, new_timer.minute, new_timer.monday, new_timer.tuesday, new_timer.wednesday, new_timer.thursday, new_timer.friday, new_timer.saturday, new_timer.sunday); ESP_LOGV(TAG, "Size of struct is %" PRIu8 "", static_cast(sizeof(new_timer))); + this->fram_->write(2048, lamp_name_cstr, 32); + this->fram_->writeObject((2048 + 32), new_timer); return true; }