commit f29a3fc8f3df601e6438f768b95fef05295c4319
parent a8af740f074a2b78e350b7254fceab8fb88427ac
Author: Manuel Geissbühler <manuel@debian>
Date: Fri, 27 Dec 2024 21:32:24 +0100
debugging
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/gui/screen.hpp b/src/gui/screen.hpp
@@ -40,6 +40,7 @@ class Screen {
Screen(uint16_t width, uint16_t height) : width(width), height(height)
{
screenPointer = lv_obj_create(NULL);
+ lv_obj_set_size(screenPointer, 800, 480);
//Set the Layout of the screen to Grid
lv_obj_set_grid_dsc_array(screenPointer, columnDesc, rowDesc);