- 增加了 `ui.h` 中资源数组的大小以容纳新的 UI 元素。 - 更新了 `ui_font_chinese_16.c`,添加了更多中文字符以更好地支持本地化。 - 在 `vars.h` 中添加了用于管理火焰状态的新函数,增强了系统的监测能力。
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[2196];
|
|
|
|
void ui_init();
|
|
void ui_tick();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // EEZ_LVGL_UI_GUI_H
|