mirror of
https://github.com/jetkvm/jetkvm-native.git
synced 2026-05-21 05:20:42 +00:00
13 lines
269 B
C
13 lines
269 B
C
#ifndef SCREEN_H
|
|
#define SCREEN_H
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
void init_lvgl();
|
|
void *run_lvgl_loop(void *arg);
|
|
void ui_set_text(const char *name, const char *text);
|
|
lv_obj_t *ui_get_obj(const char *name);
|
|
lv_img_dsc_t *ui_get_image(const char *name);
|
|
|
|
#endif // SCREEN_H
|