From 7f644652bbbf7520bfd2ec8bc8be06dd2ede8568 Mon Sep 17 00:00:00 2001 From: Mikkeli Matlock Date: Mon, 16 Feb 2026 21:31:43 +0900 Subject: [PATCH] minor visual change --- components/dashboard_ui/dashboard_ui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/dashboard_ui/dashboard_ui.c b/components/dashboard_ui/dashboard_ui.c index 368d196..fd15897 100644 --- a/components/dashboard_ui/dashboard_ui.c +++ b/components/dashboard_ui/dashboard_ui.c @@ -261,7 +261,7 @@ static void create_time_bar(lv_obj_t *parent) static void create_main_section(lv_obj_t *parent) { /* === Left column: Services + Pi Vitals === */ - create_label(parent, 4, MAIN_Y + 2, &InziuIosevka_Slab_CC_12px, "SERVICES"); + create_label(parent, 4, MAIN_Y + 1, &InziuIosevka_Slab_CC_12px, "SERVICES"); tbl_services = lv_table_create(parent); lv_obj_set_pos(tbl_services, 4, MAIN_Y + 16); @@ -281,8 +281,8 @@ static void create_main_section(lv_obj_t *parent) lv_table_set_cell_value(tbl_services, i, 1, "---"); } - /* Auto-scroll timer: 1 second period */ - s_scroll_timer = lv_timer_create(scroll_timer_cb, 1000, NULL); + /* Auto-scroll timer: 2 second period */ + s_scroll_timer = lv_timer_create(scroll_timer_cb, 2048, NULL); /* === Left column: Pi Vitals (below services) === */ int rx = 0; @@ -294,7 +294,7 @@ static void create_main_section(lv_obj_t *parent) int temp_x = rx + 155; /* TEMP column, right of value labels */ /* Pi Vitals header */ - create_label(parent, rx + 4, 177, &InziuIosevka_Slab_CC_12px, "PI VITALS"); + create_label(parent, rx + 4, 175, &InziuIosevka_Slab_CC_12px, "PI VITALS"); int ry = 192;