1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pkg_lvgl*: adapt to new behavior

This commit is contained in:
Alexandre Abadie 2021-05-20 13:06:49 +02:00
parent 41a185cb92
commit ef6d377197
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 3 additions and 3 deletions

View File

@ -121,10 +121,10 @@ int main(void)
/* Enable backlight */
disp_dev_backlight_on();
lvgl_start();
/* Create the system monitor widget */
sysmon_create();
lvgl_run();
return 0;
}

View File

@ -57,7 +57,7 @@ int main(void)
lv_obj_t * label = lv_label_create(btn, NULL);
lv_label_set_text(label, "Click me");
lvgl_start();
lvgl_run();
return 0;
}