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.
17 lines
324 B
17 lines
324 B
#include "ui.h" |
|
#include "screens.h" |
|
#include "images.h" |
|
#include "flow_def.h" |
|
|
|
ActionExecFunc actions[] = { |
|
}; |
|
|
|
|
|
void ui_init() { |
|
eez_flow_init(assets, sizeof(assets), (lv_obj_t **)&objects, sizeof(objects), images, sizeof(images), actions); |
|
} |
|
|
|
void ui_tick() { |
|
eez_flow_tick(); |
|
tick_screen(g_currentScreen); |
|
}
|
|
|