mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-11-04 21:19:40 +08:00
28 lines
412 B
C
28 lines
412 B
C
#ifndef LV_CUBIC_GUI_H
|
|
#define LV_CUBIC_GUI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lvgl.h"
|
|
|
|
//extern lv_img_dsc_t screen_buffer;
|
|
|
|
|
|
extern lv_obj_t* scr1;
|
|
extern lv_obj_t* scr2;
|
|
extern lv_obj_t* label1;
|
|
extern lv_obj_t* label2;
|
|
extern lv_obj_t* label3;
|
|
extern lv_obj_t* label4;
|
|
extern lv_obj_t* label5;
|
|
void lv_holo_cubic_gui(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif
|