diff --git a/firmware/esp32-s3-dashboard/dashboard_config.h b/firmware/esp32-s3-dashboard/dashboard_config.h index 4a151ca..453ce4a 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.45-vehicle-card-wider"; +static const char *DASHBOARD_VERSION = "0.1.46-vehicle-sample-card"; // 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 8061bb2..180b38f 100644 --- a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino +++ b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino @@ -1130,9 +1130,20 @@ static void create_overland_overview_screen() } lv_obj_t *vehicle_label = lv_label_create(vehicle_card); - lv_label_set_text(vehicle_label, "Vehicle\n\nOffline\n\nFuture:\nCoolant\nTrans Temp\n4WD\nTilt/Roll"); + lv_label_set_text(vehicle_label, + "Coolant 188° +" + "Trans -- +" + "Fuel --% +" + "4WD -- +" + "Tilt --°" + ); lv_obj_set_style_text_color(vehicle_label, lv_color_hex(0xDDE3EA), 0); - lv_obj_set_width(vehicle_label, 220); + lv_obj_set_style_text_font(vehicle_label, &lv_font_montserrat_30, 0); + lv_obj_set_width(vehicle_label, 260); lv_label_set_long_mode(vehicle_label, LV_LABEL_LONG_WRAP); lv_obj_align(vehicle_label, LV_ALIGN_CENTER, 0, 0);