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_example_libs.h (825B)
1 /** 2 * @file lv_example_libs.h 3 * 4 */ 5 6 #ifndef LV_EXAMPLE_LIBS_H 7 #define LV_EXAMPLE_LIBS_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 #include "bmp/lv_example_bmp.h" 17 #include "gif/lv_example_gif.h" 18 #include "png/lv_example_png.h" 19 #include "sjpg/lv_example_sjpg.h" 20 #include "qrcode/lv_example_qrcode.h" 21 #include "freetype/lv_example_freetype.h" 22 #include "rlottie/lv_example_rlottie.h" 23 #include "ffmpeg/lv_example_ffmpeg.h" 24 25 /********************* 26 * DEFINES 27 *********************/ 28 29 /********************** 30 * TYPEDEFS 31 **********************/ 32 33 /********************** 34 * GLOBAL PROTOTYPES 35 **********************/ 36 37 /********************** 38 * MACROS 39 **********************/ 40 41 #ifdef __cplusplus 42 } /*extern "C"*/ 43 #endif 44 45 #endif /*LV_EXAMPLE_LIBS_H*/