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
During power-up my code calls smartdisplay_init() to set-up the display.,
At that moment in time the display buffer contains random pixels...and the display is set to 50% intensity.
smartdisplay_lcd_set_backlight(0.5f);
This causes at startup a visible flicker of the display.
My preference would be:
smartdisplay_init() sets the lcd-backlight to 0.0 , so off
after the first call to lv_timer_handler() the display-buffer contains valid information
I then set (once) the lcd-backlight to 1.0 i.e. 100%
This gives a visually better start-up of my system.
regards, Jos
The text was updated successfully, but these errors were encountered:
During power-up my code calls smartdisplay_init() to set-up the display.,
At that moment in time the display buffer contains random pixels...and the display is set to 50% intensity.
smartdisplay_lcd_set_backlight(0.5f);
This causes at startup a visible flicker of the display.
My preference would be:
This gives a visually better start-up of my system.
regards, Jos
The text was updated successfully, but these errors were encountered: