From 73dbeb4b9ada21f63f372fc0e5e437484375e00d Mon Sep 17 00:00:00 2001 From: Terrence Date: Fri, 5 Sep 2025 11:57:46 +0800 Subject: [PATCH] update surfer-c3-1.14tft font size --- main/boards/surfer-c3-1.14tft/surfer-c3-1.14tft.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/boards/surfer-c3-1.14tft/surfer-c3-1.14tft.cc b/main/boards/surfer-c3-1.14tft/surfer-c3-1.14tft.cc index 1e810a72..f79f61de 100644 --- a/main/boards/surfer-c3-1.14tft/surfer-c3-1.14tft.cc +++ b/main/boards/surfer-c3-1.14tft/surfer-c3-1.14tft.cc @@ -21,8 +21,8 @@ #define TAG "SURFERC3114TFT" -LV_FONT_DECLARE(font_puhui_16_4); -LV_FONT_DECLARE(font_awesome_16_4); +LV_FONT_DECLARE(font_puhui_20_4); +LV_FONT_DECLARE(font_awesome_20_4); class SurferC3114TFT : public WifiBoard { private: @@ -148,8 +148,8 @@ private: display_ = new SpiLcdDisplay(panel_io_, panel_, DISPLAY_WIDTH, DISPLAY_HEIGHT, DISPLAY_OFFSET_X, DISPLAY_OFFSET_Y, DISPLAY_MIRROR_X, DISPLAY_MIRROR_Y, DISPLAY_SWAP_XY, { - .text_font = &font_puhui_16_4, - .icon_font = &font_awesome_16_4, + .text_font = &font_puhui_20_4, + .icon_font = &font_awesome_20_4, .emoji_font = font_emoji_32_init(), }); }