新增资源文件:添加了字体、图像和屏幕相关的头文件与源文件。 定义数据结构:创建了用于描述字体和图像的数据结构。 实现主屏逻辑:实现了主屏幕的创建函数以及周期性刷新(tick)函数。 集成 LVGL 管理:集成了 LVGL 主题初始化及屏幕管理功能。 添加 UI 初始化:新增 UI 初始化及刷新函数,用于管理界面更新。 重构主入口:重构主应用程序入口,以支持 UI 任务及 FreeRTOS 多任务调度。 更新构建配置:更新了 CMakeLists 及组件配置,以包含新的依赖项。
154 lines
3.7 KiB
C
154 lines
3.7 KiB
C
#include <string.h>
|
|
|
|
#include "screens.h"
|
|
#include "images.h"
|
|
#include "fonts.h"
|
|
#include "actions.h"
|
|
#include "vars.h"
|
|
#include "styles.h"
|
|
#include "ui.h"
|
|
|
|
#include <string.h>
|
|
|
|
objects_t objects;
|
|
|
|
static const char *screen_names[] = { "Main" };
|
|
static const char *object_names[] = { "main" };
|
|
|
|
//
|
|
// Event handlers
|
|
//
|
|
|
|
lv_obj_t *tick_value_change_obj;
|
|
|
|
//
|
|
// Screens
|
|
//
|
|
|
|
void create_screen_main() {
|
|
void *flowState = getFlowState(0, 0);
|
|
(void)flowState;
|
|
lv_obj_t *obj = lv_obj_create(0);
|
|
objects.main = obj;
|
|
lv_obj_set_pos(obj, 0, 0);
|
|
lv_obj_set_size(obj, 240, 240);
|
|
lv_obj_set_style_bg_color(obj, lv_color_hex(0xff075d00), LV_PART_MAIN | LV_STATE_DEFAULT);
|
|
{
|
|
lv_obj_t *parent_obj = obj;
|
|
{
|
|
lv_obj_t *obj = lv_label_create(parent_obj);
|
|
lv_obj_set_pos(obj, 75, 103);
|
|
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
|
lv_label_set_text(obj, "Hello, world!");
|
|
}
|
|
}
|
|
|
|
tick_screen_main();
|
|
}
|
|
|
|
void tick_screen_main() {
|
|
void *flowState = getFlowState(0, 0);
|
|
(void)flowState;
|
|
}
|
|
|
|
typedef void (*tick_screen_func_t)();
|
|
tick_screen_func_t tick_screen_funcs[] = {
|
|
tick_screen_main,
|
|
};
|
|
void tick_screen(int screen_index) {
|
|
tick_screen_funcs[screen_index]();
|
|
}
|
|
void tick_screen_by_id(enum ScreensEnum screenId) {
|
|
tick_screen_funcs[screenId - 1]();
|
|
}
|
|
|
|
//
|
|
// Fonts
|
|
//
|
|
|
|
ext_font_desc_t fonts[] = {
|
|
#if LV_FONT_MONTSERRAT_8
|
|
{ "MONTSERRAT_8", &lv_font_montserrat_8 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_10
|
|
{ "MONTSERRAT_10", &lv_font_montserrat_10 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_12
|
|
{ "MONTSERRAT_12", &lv_font_montserrat_12 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_14
|
|
{ "MONTSERRAT_14", &lv_font_montserrat_14 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_16
|
|
{ "MONTSERRAT_16", &lv_font_montserrat_16 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_18
|
|
{ "MONTSERRAT_18", &lv_font_montserrat_18 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_20
|
|
{ "MONTSERRAT_20", &lv_font_montserrat_20 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_22
|
|
{ "MONTSERRAT_22", &lv_font_montserrat_22 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_24
|
|
{ "MONTSERRAT_24", &lv_font_montserrat_24 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_26
|
|
{ "MONTSERRAT_26", &lv_font_montserrat_26 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_28
|
|
{ "MONTSERRAT_28", &lv_font_montserrat_28 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_30
|
|
{ "MONTSERRAT_30", &lv_font_montserrat_30 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_32
|
|
{ "MONTSERRAT_32", &lv_font_montserrat_32 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_34
|
|
{ "MONTSERRAT_34", &lv_font_montserrat_34 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_36
|
|
{ "MONTSERRAT_36", &lv_font_montserrat_36 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_38
|
|
{ "MONTSERRAT_38", &lv_font_montserrat_38 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_40
|
|
{ "MONTSERRAT_40", &lv_font_montserrat_40 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_42
|
|
{ "MONTSERRAT_42", &lv_font_montserrat_42 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_44
|
|
{ "MONTSERRAT_44", &lv_font_montserrat_44 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_46
|
|
{ "MONTSERRAT_46", &lv_font_montserrat_46 },
|
|
#endif
|
|
#if LV_FONT_MONTSERRAT_48
|
|
{ "MONTSERRAT_48", &lv_font_montserrat_48 },
|
|
#endif
|
|
};
|
|
|
|
//
|
|
//
|
|
//
|
|
|
|
void create_screens() {
|
|
|
|
eez_flow_init_fonts(fonts, sizeof(fonts) / sizeof(ext_font_desc_t));
|
|
|
|
// Set default LVGL theme
|
|
lv_display_t *dispp = lv_display_get_default();
|
|
lv_theme_t *theme = lv_theme_default_init(dispp, lv_palette_main(LV_PALETTE_BLUE), lv_palette_main(LV_PALETTE_RED), false, LV_FONT_DEFAULT);
|
|
lv_display_set_theme(dispp, theme);
|
|
|
|
// Initialize screens
|
|
eez_flow_init_screen_names(screen_names, sizeof(screen_names) / sizeof(const char *));
|
|
eez_flow_init_object_names(object_names, sizeof(object_names) / sizeof(const char *));
|
|
|
|
// Create screens
|
|
create_screen_main();
|
|
} |