feat: 重构项目结构以支持新的用户界面和功能

- 更新 CMakeLists.txt,添加新的源文件和依赖项以支持应用程序结构
- 移除旧的 main.c 和 lvgl_demo_ui.c 文件,整合应用逻辑至 app_main.c
- 新增 app/ui_handlers.c 和 app/ui_handlers.h,准备处理 UI 事件
- 引入 bsp/display.c 和 bsp/touch.c,配置显示和触摸功能
- 添加 services/wifi_manager.c,管理 Wi-Fi 连接
- 组织 UI 组件和资源,提升代码可维护性与可读性
- 更新相关头文件和配置,确保项目兼容性与功能完整性
This commit is contained in:
2026-06-30 19:12:40 +08:00
parent b0ba814625
commit 7dc20b37a8
27 changed files with 567 additions and 646 deletions
+25
View File
@@ -0,0 +1,25 @@
// 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