From 062538b1e4a6c33009a9de472603012f03798e05 Mon Sep 17 00:00:00 2001 From: NoahChristian Date: Mon, 25 May 2026 13:41:59 -0700 Subject: [PATCH] Update content.md the arduino installation does not use lv_conf.h. Even if this is set to 1 (it is set to zero in both src and lvgl) these instructions do not work. This is the path in a PC with \ changed to / --- .../giga-display-shield/tutorials/03.lvgl-guide/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hardware/10.mega/shields/giga-display-shield/tutorials/03.lvgl-guide/content.md b/content/hardware/10.mega/shields/giga-display-shield/tutorials/03.lvgl-guide/content.md index 00bc5eb31a..901b224eeb 100644 --- a/content/hardware/10.mega/shields/giga-display-shield/tutorials/03.lvgl-guide/content.md +++ b/content/hardware/10.mega/shields/giga-display-shield/tutorials/03.lvgl-guide/content.md @@ -296,7 +296,7 @@ If you want to insert a variable that is not a string, use: lv_label_set_text_fmt(label, "%d", 13) ``` -To use bigger font sizes it has to be enabled in the `lv_conf.h` file. This file can be found in the **mbed_giga/libraries/Arduino_H7_Video/src** folder. Find the **FONT USAGE** section, here you can see all the font sizes. If you want to enable any size simply change the `0` next to any of the font sizes into a `1`. Like this: +To use bigger font sizes it has to be enabled in the `lv_conf_internal.h` file. This file can be found in the **arduino\libraries/lvgl/src/** folder. Find the **FONT USAGE** section, here you can see all the font sizes. If you want to enable any size simply change the `0` next to any of the font sizes into a `1`. Like this: ![lv_config font section](assets/lv_config.svg)