From ee379b5ff7f01e7a801c60acc3c87ac053f05ab4 Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 10 Jun 2026 22:43:20 -0600 Subject: [PATCH] dashboard: nudge battery current upward --- firmware/esp32-s3-dashboard/dashboard_config.h | 2 +- firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/esp32-s3-dashboard/dashboard_config.h b/firmware/esp32-s3-dashboard/dashboard_config.h index 228e695..10f8c3f 100644 --- a/firmware/esp32-s3-dashboard/dashboard_config.h +++ b/firmware/esp32-s3-dashboard/dashboard_config.h @@ -1,6 +1,6 @@ #pragma once -static const char *DASHBOARD_VERSION = "0.1.34-reduce-status-redraws"; +static const char *DASHBOARD_VERSION = "0.1.35-current-nudge-up"; // Update these if your Cargo ESP AP credentials are different. static const char *CARGO_WIFI_SSID = "OverlandController"; diff --git a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino index e4b1586..ff5785a 100644 --- a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino +++ b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino @@ -836,7 +836,7 @@ static void create_overland_overview_screen() lv_obj_set_style_text_font(battery_current_label, &lv_font_montserrat_26, 0); lv_obj_set_width(battery_current_label, 260); lv_obj_set_style_text_align(battery_current_label, LV_TEXT_ALIGN_CENTER, 0); - lv_obj_align(battery_current_label, LV_ALIGN_TOP_MID, 0, 166); + lv_obj_align(battery_current_label, LV_ALIGN_TOP_MID, 0, 161); lv_obj_add_flag(battery_current_label, LV_OBJ_FLAG_HIDDEN); inside_temp_label = lv_label_create(temp_card);