2025-08-05 16:06:46 +08:00
|
|
|
// LVGL version: 9.2
|
|
|
|
|
// Project name: PowerPico
|
|
|
|
|
|
2025-10-18 19:23:22 +08:00
|
|
|
#include "BL24C02.h" // system settings
|
2025-09-22 21:45:02 +08:00
|
|
|
#include "./ui.h"
|
|
|
|
|
#include "./screens/ui_mainPage.h"
|
2025-10-07 10:29:31 +08:00
|
|
|
#include "./screens/ui_chartPage.h"
|
2025-10-09 19:54:56 +08:00
|
|
|
#include "./screens/ui_SetPage.h"
|
2025-08-05 16:06:46 +08:00
|
|
|
|
|
|
|
|
///////////////////// VARIABLES ////////////////////
|
|
|
|
|
|
2025-08-12 18:43:38 +08:00
|
|
|
// pages
|
2025-09-22 21:45:02 +08:00
|
|
|
Page_t pages[] = {
|
|
|
|
|
{
|
|
|
|
|
.init = ui_main_screen_init,
|
|
|
|
|
.deinit = ui_main_screen_destroy,
|
|
|
|
|
.page_obj = &ui_HomeScreen,
|
2025-09-27 10:51:54 +08:00
|
|
|
.key_event_handler = ui_main_page_key_handler,
|
2025-09-22 21:45:02 +08:00
|
|
|
.name = "Main Page"
|
|
|
|
|
},
|
2025-10-09 19:54:56 +08:00
|
|
|
// {
|
|
|
|
|
// .init = ui_main_screen_init,
|
|
|
|
|
// .deinit = ui_main_screen_destroy,
|
|
|
|
|
// .page_obj = &ui_HomeScreen,
|
|
|
|
|
// .key_event_handler = ui_main_page_key_handler,
|
|
|
|
|
// .name = "Chart Page"
|
|
|
|
|
// },
|
2025-10-07 10:29:31 +08:00
|
|
|
{
|
2025-10-09 19:54:56 +08:00
|
|
|
.init = ui_SetPage_screen_init,
|
|
|
|
|
.deinit = ui_SetPage_screen_destroy,
|
|
|
|
|
.page_obj = &ui_SetPage,
|
|
|
|
|
.key_event_handler = ui_set_page_key_handler,
|
|
|
|
|
.name = "Set Page"
|
2025-10-07 10:29:31 +08:00
|
|
|
},
|
2025-09-22 21:45:02 +08:00
|
|
|
// 可以在这里添加更多页面
|
|
|
|
|
};
|
2025-08-05 16:06:46 +08:00
|
|
|
|
|
|
|
|
///////////////////// TEST LVGL SETTINGS ////////////////////
|
|
|
|
|
#if LV_COLOR_DEPTH != 16
|
|
|
|
|
#error "LV_COLOR_DEPTH should be 16bit to match SquareLine Studio's settings"
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-10-19 11:59:09 +08:00
|
|
|
///////////////////// help funtions ////////////////////
|
|
|
|
|
|
|
|
|
|
void ui_full_screen_refresh(lv_obj_t * screen) {
|
|
|
|
|
// 标记整个屏幕为脏区域
|
|
|
|
|
lv_obj_invalidate(screen);
|
|
|
|
|
// 或者立即刷新整个屏幕
|
|
|
|
|
lv_refr_now(NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2025-08-05 16:06:46 +08:00
|
|
|
/////////////////////// Timer //////////////////////
|
|
|
|
|
/**
|
|
|
|
|
* Main timer for Refreshing the screens
|
|
|
|
|
*/
|
|
|
|
|
static void main_timer(lv_timer_t * timer)
|
|
|
|
|
{
|
2025-09-27 10:51:54 +08:00
|
|
|
// do nothing
|
2025-09-22 21:45:02 +08:00
|
|
|
// LV_LOG_WARN("Main timer");
|
2025-08-05 16:06:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////// ui_initialize //////////////////////
|
|
|
|
|
void ui_init(void)
|
|
|
|
|
{
|
|
|
|
|
lv_disp_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),
|
|
|
|
|
true, LV_FONT_DEFAULT);
|
|
|
|
|
lv_disp_set_theme(dispp, theme);
|
|
|
|
|
PageManager_init();
|
2025-09-22 21:45:02 +08:00
|
|
|
for(uint8_t i = 0; i < sizeof(pages)/sizeof(pages[0]); i++) {
|
|
|
|
|
PageManager_register(&pages[i]);
|
|
|
|
|
}
|
|
|
|
|
PageManager_load_init_screen();
|
2025-10-18 19:23:22 +08:00
|
|
|
lv_display_set_rotation(dispp, sys_settings.rotation / 90);
|
2025-08-12 18:43:38 +08:00
|
|
|
|
2025-08-05 16:06:46 +08:00
|
|
|
//timer
|
2025-10-07 10:29:31 +08:00
|
|
|
// lv_timer_t * ui_MainTimer = lv_timer_create(main_timer, 1000, NULL);
|
2025-08-05 16:06:46 +08:00
|
|
|
}
|