From c342efc08fea5404da1cfe6087abd3f5edaf61f6 Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Sat, 11 Jul 2026 22:47:32 +0200 Subject: [PATCH] Remove hidden-events footer from epaper frame --- esphome/epaperframe.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/esphome/epaperframe.yaml b/esphome/epaperframe.yaml index 55c58f0..40bea55 100644 --- a/esphome/epaperframe.yaml +++ b/esphome/epaperframe.yaml @@ -1149,7 +1149,7 @@ display: it.line(10, 55, 355, 55); it.line(365, 10, 365, 352); - DynamicJsonDocument calendar_doc(3072); + JsonDocument calendar_doc; const DeserializationError calendar_error = deserializeJson(calendar_doc, id(calendar_entries).state.c_str()); JsonArray calendar_days = calendar_doc.as(); int agenda_y = 72; @@ -1208,9 +1208,7 @@ display: if (!has_events && !calendar_error && !calendar_days.isNull() && calendar_days.size() > 0) { it.print(18, 72, id(sensor_unit), TextAlign::TOP_LEFT, "Keine Termine im sichtbaren Bereich."); } - if (has_hidden_events) { - it.print(72, 340, id(footer_font), TextAlign::TOP_LEFT, "Weitere Termine vorhanden ..."); - } + /* RIGHT TOP: month view, Monday-first with ISO week numbers */ char month_title[24];