mirror of
https://git.beihong.wang/wangbeihong/iot-bedroom-environment-controller.git
synced 2026-04-23 16:23:05 +08:00
21 lines
260 B
C
21 lines
260 B
C
#ifndef EEZ_LVGL_UI_GUI_H
|
|
#define EEZ_LVGL_UI_GUI_H
|
|
|
|
#include <lvgl.h>
|
|
|
|
#include "eez-flow.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const uint8_t assets[1108];
|
|
|
|
void ui_init();
|
|
void ui_tick();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // EEZ_LVGL_UI_GUI_H
|