Is there a way to build micropython 1.20 with lvgl 8.3?
1 Like
I have the same question, workin with messed lvgl is really hard because thereβs a lot of name and api changing bettwen 8.3 and 9.0, how can I fix only stable releases?
In my case, I just changed a few things to use mp1.20 with lvgl.
below is in my notes,
lv.img.CF.TRUE_COLOR_ALPHA β lv.COLOR_FORMAT.NATIVE_ALPHA
lv.img.CF.TRUE_COLOR β lv.COLOR_FORMAT.NATIVE
lv.RADIUS.CIRCLE β lv.RADIUS_CIRCLE
add_event_cb β add_event(EVENT,None)
set_style_size β set_style_size(w,h)
e.get_target() β e.get_target_obj()
lv.event_send(self.cont, lv.EVENT.SCROLL, None) β self.cont.send_event(lv.EVENT.SCROLL, None)
c0.full(0) β c0.set_int(0)