Files
Power-Pico/Power_Pico/User/GUI/ui.h

29 lines
357 B
C
Raw Normal View History

2025-09-22 21:45:02 +08:00
// LVGL VERSION: 9.2
2025-08-05 16:06:46 +08:00
#ifndef _UI_H
#define _UI_H
#ifdef __cplusplus
extern "C" {
#endif
#include "lvgl.h"
#include "stdio.h"
#include "./PageManager.h"
void ui_init(void);
2025-10-19 11:59:09 +08:00
void ui_full_screen_refresh(lv_obj_t * screen);
2025-08-05 16:06:46 +08:00
2025-09-22 21:45:02 +08:00
// FONTS
LV_FONT_DECLARE(ui_font_HeiTi32);
LV_FONT_DECLARE(ui_font_HeiTi48);
2025-08-05 16:06:46 +08:00
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif