acid-drop- Hacking the planet from a LilyGo T-Deck using custom firmware |
git clone git://git.acid.vegas/acid-drop.git |
Log | Files | Refs | Archive | README | LICENSE |
lv_extra.h (730B)
1 /** 2 * @file lv_extra.h 3 * 4 */ 5 6 #ifndef LV_EXTRA_H 7 #define LV_EXTRA_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 17 #include "layouts/lv_layouts.h" 18 #include "libs/lv_libs.h" 19 #include "others/lv_others.h" 20 #include "themes/lv_themes.h" 21 #include "widgets/lv_widgets.h" 22 23 /********************* 24 * DEFINES 25 *********************/ 26 27 /********************** 28 * TYPEDEFS 29 **********************/ 30 31 /********************** 32 * GLOBAL PROTOTYPES 33 **********************/ 34 35 /** 36 * Initialize the extra components 37 */ 38 void lv_extra_init(void); 39 40 /********************** 41 * MACROS 42 **********************/ 43 44 #ifdef __cplusplus 45 } /*extern "C"*/ 46 #endif 47 48 #endif /*LV_EXTRA_H*/