28 lines
461 B
C
28 lines
461 B
C
|
|
#ifndef SETUP_UI_H
|
|
#define SETUP_UI_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lvgl.h"
|
|
#include "sdk.h"
|
|
#include "globalComponents.h"
|
|
|
|
extern lv_font_t const lv_font_SourceHanSansSC_Normal_24;
|
|
|
|
extern lv_font_t const lv_font_SourceHanSansSC_Normal_16;
|
|
|
|
|
|
lv_obj_t * setup_scr_scr_Main(void);
|
|
lv_obj_t * setup_scr_scr_Selete(void);
|
|
lv_obj_t * setup_scr_scr_Charge(void);
|
|
lv_obj_t * setup_scr_scr_Setting(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|