Liam Howatt

Results 240 comments of Liam Howatt

Fair enough! In fact, `get_x_aligned` doesn't do what that docstring says. @kisvegabor should this be fixed? If so, should it call `get_x` internally and then calculate the offset based on...

Ah you're right, it's always correct for pixel values. @leidto you can do this ```py print('btn x value:', lv.pct_to_px( btn.get_x_aligned(), # value btn.get_parent().get_width() # base )) ``` ``` btn x...

Hey, thanks. Indeed the v9 tool doesn't work. The [docs](https://docs.lvgl.io/master/libs/gif.html) still link to the v8 converter but the output is not compatible with v9 LVGL. We'll keep this issue open...

I was able to load a 480x360 gif from a C file and from the FS as a `.gif`. I don't know if 128kb is enough to load your gif...

I tested just now, I got the same behavior on both. But there could be something that changed which affects your platform :slightly_smiling_face: I think you're almost out of memory...

256 kB sounds like enough! Since it's fixed, it's a less critical issue. If you're using Arduino IDE 2, I believe there's interactive debugging. You're welcome to try to pinpoint...

Is this with the online converter or LVGLImage.py? For your size-zero loading issue, which FS abstraction are you using? Also, in that output, it looks like it works a few...

Hey. I think I spotted the problem. Your display's physical framebuffer base address is `0xC0000000`. The issue is that you're also using that address for the draw buffer. You should...

Are you calling `lv_tick_inc(10)` in a timer interrupt? Make sure you're incrementing the tick accurately. If you can't use a timer interrupt, then run this: `lv_tick_inc(HAL_GetTick() - lv_tick_get())` in your...

You might be interested in joining the discussion here: #5913