lv_demos.h 899 B

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