Using lv_micropython with tileview status

Did align_to change in some way? I am coring on this line:

power_label.align_to(temp_label,lv.ALIGN.BOTTOM_MID, 0, 0)

I worked through the align_to coring by replacing with align.

But now, frustratingly so, the script loads completely without error… and then coredumps assumably as it’s updating the screen.

This script worked a day or two ago…

So, I compiled in debug… repartitioned…
I see these warnings from font loading.

Font file ‘S:/app/mct/fonts/conseil10.font’ exists.
2 [Warn] (0.000, +0) read_label: Error reading ‘head’ label. lv_binfont_loader.c:212

2 [Warn] (0.000, +0) lv_binfont_create: Error loading font file: S:/app/mct/fonts/conseil10.font lv_binfont_loader.c:93

I did change my make_fonts script based on what I saw in the python script… is there something missing?

npx lv_font_conv --font ../../../util/conseil.ttf -r 0x20-0x7f --font ../../../util/arial.ttf --symbols Ω°℉℃⚡️ --font ../../../util/FontAwesome5-Solid+Brands+Regular.woff -r '61441-63650' --size 10 --format lvgl --bpp 1 --no-kerning -o conseil10.font --force-fast-kern-format
npx lv_font_conv --font ../../../util/conseil.ttf -r 0x20-0x7f --font ../../../util/arial.ttf --symbols Ω°℉℃ --size 20 --format lvgl --bpp 1 --no-kerning -o conseil20.font --force-fast-kern-format
npx lv_font_conv --font ../../../util/conseil.ttf -r 0x20-0x7f --font ../../../util/arial.ttf --symbols Ω°℉℃ --size 30 --format lvgl --bpp 1 --no-kerning -o conseil30.font --force-fast-kern-format
npx lv_font_conv --font ../../../util/conseil.ttf -r 0x20-0x7f --font ../../../util/arial.ttf --symbols Ω°℉℃ --size 40 --format lvgl --bpp 1 --no-kerning -o conseil40.font --force-fast-kern-format%                               

Yeah, it was the font. It needed to output bin rather than lvgl

Hello!
lv_micropython master branch is now updated with latest LVGL v9 release version, so it aligns to the LVGL documentation.
From now on every LVGL bugfix and new feature will go to master branch.