mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-09-27 02:19:11 +08:00
25 lines
291 B
C
25 lines
291 B
C
#ifndef LV_CUBIC_GUI_H
|
|
#define LV_CUBIC_GUI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
//extern lv_img_dsc_t screen_buffer;
|
|
|
|
|
|
extern lv_obj_t* scr_1;
|
|
extern lv_obj_t* scr_2;
|
|
|
|
|
|
void lv_holo_cubic_gui(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif
|