Hi All,
I am running lv_micropython on Raspberry Pi 5 and am trying to load a custom font (not the default montserrat ones) with the following lines:
font_Number_extra = lv.binfont_create("./ui_font_Number_extra.bin")
print(font_Number_extra)
There was no error message and lvgl_simulator starts but the print always gives me “None”, meaning the font is not created I guess.
I have also tried the following three methods:
lv.binfont_create("A:ui_font_Font1.bin")
lv.binfont_create("./ui_font_Font1.bin")
lv.binfont_create("/home/absolute-path/..../ui_font_Font1.bin")
None of them is working… does anyone know what is going on?