diff --git a/firmware/esp32-s3-dashboard/dashboard_config.h b/firmware/esp32-s3-dashboard/dashboard_config.h index b6c783d..a214b83 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.66-clean-vehicle-gauges"; +static const char *DASHBOARD_VERSION = "0.1.67-remove-fuel-ticks"; // 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 9401329..039e98d 100644 --- a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino +++ b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino @@ -1313,15 +1313,6 @@ static void create_overland_overview_screen() lv_obj_set_style_border_color(vehicle_fuel_bar, lv_color_hex(0xDDE3EA), 0); lv_obj_set_style_border_width(vehicle_fuel_bar, 2, 0); - for (int i = 1; i <= 3; i++) { - lv_obj_t *tick = lv_obj_create(vehicle_card); - lv_obj_set_size(tick, 2, 28); - lv_obj_set_style_bg_color(tick, lv_color_hex(0x7D8996), 0); - lv_obj_set_style_border_width(tick, 0, 0); - lv_obj_set_style_radius(tick, 0, 0); - lv_obj_align(tick, LV_ALIGN_BOTTOM_LEFT, 74 + (i * 50), -26); - } - vehicle_fuel_value_label = lv_label_create(vehicle_card); lv_label_set_text(vehicle_fuel_value_label, ""); lv_obj_add_flag(vehicle_fuel_value_label, LV_OBJ_FLAG_HIDDEN);