You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Sunton CYD (Cheap Yellow Display) PlatformIo Board.
The project is based on the rzeldent/platformio-espressif32-sunton.
I've enabled LV_THEME_DEFAULT_DARK flag in the lv_conf.h and added simple button to the default screen and the screen had strange flickering artifacts (see image below).
I've also tried LV_THEME_DEFAULT_DARK=0 and the flickering disappears.
However, when I set darker grey background with lv_obj_set_style_bg_color(lv_scr_act(), lv_palette_darken(LV_PALETTE_GREY, 3), 0), there is a visible stripe flickering at x=0. Moreover, every darken palette besides level 0 and 1 has stripe flickering.
How to reproduce?
lv_conf.h:
#defineLV_USE_THEME_DEFAULT 1
#ifLV_USE_THEME_DEFAULT/*0: Light mode; 1: Dark mode*/#defineLV_THEME_DEFAULT_DARK 1
/*1: Enable grow on press*/#defineLV_THEME_DEFAULT_GROW 0
/*Default transition time in [ms]*/#defineLV_THEME_DEFAULT_TRANSITION_TIME 80
#endif/*LV_USE_THEME_DEFAULT*/
LVGL version
v8.3
What happened?
I'm using Sunton CYD (Cheap Yellow Display) PlatformIo Board.
The project is based on the rzeldent/platformio-espressif32-sunton.
I've enabled
LV_THEME_DEFAULT_DARK
flag in thelv_conf.h
and added simple button to the default screen and the screen had strange flickering artifacts (see image below).I've also tried
LV_THEME_DEFAULT_DARK=0
and the flickering disappears.However, when I set darker grey background with
lv_obj_set_style_bg_color(lv_scr_act(), lv_palette_darken(LV_PALETTE_GREY, 3), 0)
, there is a visible stripe flickering at x=0. Moreover, every darken palette besides level 0 and 1 has stripe flickering.How to reproduce?
lv_conf.h:
main.cpp:
The text was updated successfully, but these errors were encountered: