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_demos.h (899B)

      1 /**
      2  * @file lv_demos.h
      3  *
      4  */
      5 
      6 #ifndef LV_DEMOS_H
      7 #define LV_DEMOS_H
      8 
      9 #ifdef __cplusplus
     10 extern "C" {
     11 #endif
     12 
     13 /*********************
     14  *      INCLUDES
     15  *********************/
     16 #include "../lvgl.h"
     17 
     18 #if LV_USE_DEMO_WIDGETS
     19 #include "widgets/lv_demo_widgets.h"
     20 #endif
     21 
     22 #if LV_USE_DEMO_BENCHMARK
     23 #include "benchmark/lv_demo_benchmark.h"
     24 #endif
     25 
     26 #if LV_USE_DEMO_STRESS
     27 #include "stress/lv_demo_stress.h"
     28 #endif
     29 
     30 #if LV_USE_DEMO_KEYPAD_AND_ENCODER
     31 #include "keypad_encoder/lv_demo_keypad_encoder.h"
     32 #endif
     33 
     34 #if LV_USE_DEMO_MUSIC
     35 #include "music/lv_demo_music.h"
     36 #endif
     37 
     38 /*********************
     39  *      DEFINES
     40  *********************/
     41 
     42 /**********************
     43  *      TYPEDEFS
     44  **********************/
     45 
     46 /**********************
     47  * GLOBAL PROTOTYPES
     48  **********************/
     49 
     50 
     51 /**********************
     52  *      MACROS
     53  **********************/
     54 
     55 #ifdef __cplusplus
     56 } /* extern "C" */
     57 #endif
     58 
     59 #endif /*LV_DEMO_H*/