You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
281 B
14 lines
281 B
2 years ago
|
#include "ui.h"
|
||
|
#include "screens.h"
|
||
|
#include "images.h"
|
||
|
#include "flow_def.h"
|
||
|
|
||
|
void ui_init() {
|
||
|
eez_flow_init(assets, sizeof(assets), (lv_obj_t **)&objects, sizeof(objects), images, sizeof(images));
|
||
|
}
|
||
|
|
||
|
void ui_tick() {
|
||
|
eez_flow_tick();
|
||
|
tick_screen(g_currentScreen);
|
||
|
}
|