From ab5dd37cd6b3ae86a7d83d11f199cbf234742a27 Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 9 Jun 2026 21:54:46 -0600 Subject: [PATCH] dashboard: use available lvgl fonts --- firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino index 54ee61a..c34f00f 100644 --- a/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino +++ b/firmware/esp32-s3-dashboard/esp32-s3-dashboard.ino @@ -42,7 +42,7 @@ static void create_overland_boot_screen() lv_obj_t *subtitle = lv_label_create(screen); lv_label_set_text(subtitle, "ESP32-S3 Dashboard Bring-Up"); lv_obj_set_style_text_color(subtitle, lv_color_hex(0xB8C0C8), 0); - lv_obj_set_style_text_font(subtitle, &lv_font_montserrat_20, 0); + lv_obj_set_style_text_font(subtitle, &lv_font_montserrat_30, 0); lv_obj_align_to(subtitle, title, LV_ALIGN_OUT_BOTTOM_MID, 0, 12); lv_obj_t *card = lv_obj_create(screen); @@ -65,7 +65,7 @@ static void create_overland_boot_screen() "Mode: Local dashboard bring-up" ); lv_obj_set_style_text_color(status, lv_color_hex(0xFFFFFF), 0); - lv_obj_set_style_text_font(status, &lv_font_montserrat_20, 0); + lv_obj_set_style_text_font(status, &lv_font_montserrat_30, 0); lv_obj_set_style_text_line_space(status, 10, 0); lv_obj_align(status, LV_ALIGN_TOP_LEFT, 0, 0); @@ -76,19 +76,19 @@ static void create_overland_boot_screen() lv_obj_t *button_label = lv_label_create(button); lv_label_set_text(button_label, "Touch Test"); - lv_obj_set_style_text_font(button_label, &lv_font_montserrat_20, 0); + lv_obj_set_style_text_font(button_label, &lv_font_montserrat_30, 0); lv_obj_center(button_label); touch_count_label = lv_label_create(card); lv_label_set_text(touch_count_label, "Touch test count: 0"); lv_obj_set_style_text_color(touch_count_label, lv_color_hex(0xB8C0C8), 0); - lv_obj_set_style_text_font(touch_count_label, &lv_font_montserrat_20, 0); + lv_obj_set_style_text_font(touch_count_label, &lv_font_montserrat_30, 0); lv_obj_align(touch_count_label, LV_ALIGN_BOTTOM_LEFT, 300, -22); lv_obj_t *footer = lv_label_create(screen); lv_label_set_text(footer, "Next: WiFi client -> GET /api/v1/status from Cargo ESP"); lv_obj_set_style_text_color(footer, lv_color_hex(0x7D8996), 0); - lv_obj_set_style_text_font(footer, &lv_font_montserrat_16, 0); + lv_obj_set_style_text_font(footer, &lv_font_montserrat_30, 0); lv_obj_align(footer, LV_ALIGN_BOTTOM_MID, 0, -28); }