21 lines
268 B
C
21 lines
268 B
C
#ifndef EEZ_LVGL_UI_GUI_H
|
|
#define EEZ_LVGL_UI_GUI_H
|
|
|
|
#include <lvgl.h>
|
|
|
|
#include "screens.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ui_init();
|
|
void ui_tick();
|
|
|
|
void loadScreen(enum ScreensEnum screenId);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // EEZ_LVGL_UI_GUI_H
|