add first widget impression

This commit is contained in:
sharandac
2020-07-22 17:01:25 +02:00
parent 3d85767af9
commit 2095e8a53b
13 changed files with 817 additions and 15 deletions

View File

@@ -8,6 +8,8 @@
#include "keyboard.h"
#include "mainbar/mainbar.h"
#include "widget/weather/weather.h"
#include "hardware/powermgm.h"
#include "hardware/display.h"
@@ -27,12 +29,14 @@ void gui_setup(void)
lv_obj_set_width( img_bin, hres );
lv_obj_set_height( img_bin, vres );
lv_obj_align(img_bin, NULL, LV_ALIGN_CENTER, 0, 0);
mainbar_setup();
statusbar_setup();
keyboard_setup();
lv_disp_trig_activity(NULL);
weather_widget_setup();
return;
}