A tiny template SDK for MicroPython + LVGL #17629
Carglglz
started this conversation in
Show and tell
Replies: 2 comments 4 replies
-
Thanks for sharing! I'm really keen to put together more examples and patterns for configuring projects with display drivers for lvgl so set up but just haven't made the time yet. Great to see a working minimal example! |
Beta Was this translation helpful? Give feedback.
1 reply
-
Thanks! After making a few modifications, running #include "py/obj.h"
#include <stdio.h>
void mp_lv_log_cb(lv_log_level_t level, const char * txt) {
// Example: print the log message to console
printf("[LVGL LOG %d]: %s\n", level, txt);
} I managed to build the firmware. Since we are using "partitions-4MiB_lvgl.csv", it is important to erase the flash before flashing the compiled firmware. MPY: soft reboot
MicroPython v1.26.0-preview.196.g5f058e986 on 2025-07-13; Generic ESP32 module with ESP32-LVGL-DEV
>>> import lvgl
>>> help(lvgl)
object <module 'lvgl'> is of type module
... |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've just put together mmds, an easy way to get started with GUI development using MicroPython + LVGL and minimal resource requirements.
Features:
Cheers 👍🏼
Beta Was this translation helpful? Give feedback.
All reactions