diff --git a/firmware/esp32-s3-dashboard/dashboard_config.h b/firmware/esp32-s3-dashboard/dashboard_config.h index b060c5c..6bd0ccc 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.69-coolant-needle-cap"; +static const char *DASHBOARD_VERSION = "0.1.70-larger-coolant-center-cap"; // 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 399f99d..a0cf56a 100644 --- a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino +++ b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino @@ -1283,7 +1283,7 @@ static void create_overland_overview_screen() lv_meter_set_indicator_value(vehicle_coolant_meter, vehicle_coolant_needle, 188); lv_obj_t *vehicle_coolant_center_cap = lv_obj_create(vehicle_coolant_meter); - lv_obj_set_size(vehicle_coolant_center_cap, 42, 42); + lv_obj_set_size(vehicle_coolant_center_cap, 54, 54); lv_obj_center(vehicle_coolant_center_cap); lv_obj_set_style_radius(vehicle_coolant_center_cap, LV_RADIUS_CIRCLE, 0); lv_obj_set_style_bg_color(vehicle_coolant_center_cap, lv_color_hex(0x1F2933), 0);