Hello @fernandoginez,
The builtin fonts support only basic latin characters, so you need to load your own font.
Either you create C file from your font, or convert any TTF/WOFF/OTF font to binary font which can be loaded runtime:
https://docs.lvgl.io/latest/en/html/overview/font.html#load-font-in-run-time
Font convert tool: https://github.com/lvgl/lv_font_conv/
To convert any font:
- Install lv_font_conv:
npm i lv_font_conv -g
- Download any free font which you prefer (and has glyphs for your special characters).
- You can check the font (glyphs, supported characters) in online tool:
https://www.glyphrstudio.com/online/ - Run command to convert downloaded font:
lv_font_conv --font customfont.ttf --output customfont-20.bin --bpp 1 --size 20 --format bin --range 0x20-0x7F --no-compress
You should of course change the value of--font
,--output
,--size
and--range
arguments to your needs. It is recommended to create different sizes of same font to see runtime, which font size is better in your project. - Upload your converted
.bin
font to your device, and use it:
https://docs.lvgl.io/latest/en/html/overview/font.html#load-font-in-run-time
Download free fonts: