b0ba814625
- 在 CMakeLists.txt 中添加新的源文件和依赖项以支持 UI 组件 - 新增 ui.c、ui_helpers.c、ui_events.h、ui.h、screens/ui_Screen1.c 和相关头文件,构建用户界面 - 更新 main.c 以初始化 UI 组件并调整 LVGL 任务栈大小 - 引入新的屏幕和控件,提升用户交互体验 - 添加 project.info 文件以记录项目元数据
27 lines
520 B
C
27 lines
520 B
C
// This file was generated by SquareLine Studio
|
|
// SquareLine Studio version: SquareLine Studio 1.6.1
|
|
// LVGL version: 9.2.2
|
|
// Project name: HeavenlyHeroStar
|
|
|
|
#ifndef UI_SCREEN1_H
|
|
#define UI_SCREEN1_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// SCREEN: ui_Screen1
|
|
extern void ui_Screen1_screen_init(void);
|
|
extern void ui_Screen1_screen_destroy(void);
|
|
extern lv_obj_t * ui_Screen1;
|
|
extern lv_obj_t * ui_Calendar1;
|
|
// CUSTOM VARIABLES
|
|
extern lv_obj_t * uic_Calendar1;
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif
|
|
|