mirror of
https://github.com/m5stack/meshtastic-device-ui.git
synced 2026-05-20 11:51:03 -07:00
22 lines
307 B
C
22 lines
307 B
C
#ifndef EEZ_LVGL_UI_GUI_H
|
|
#define EEZ_LVGL_UI_GUI_H
|
|
|
|
#include "lvgl.h"
|
|
#include "fonts.h"
|
|
#include "screens.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ui_init_boot();
|
|
void ui_init();
|
|
void ui_tick();
|
|
|
|
void loadScreen(enum ScreensEnum screenId);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // EEZ_LVGL_UI_GUI_H
|