lv_examples.h 924 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. * @file lv_examples.h
  3. *
  4. */
  5. #ifndef LV_EXAMPLES_H
  6. #define LV_EXAMPLES_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. /*********************
  11. * INCLUDES
  12. *********************/
  13. #include "../lvgl.h"
  14. #include "styles/lv_example_style.h"
  15. #include "get_started/lv_example_get_started.h"
  16. #include "widgets/lv_example_widgets.h"
  17. #include "layouts/lv_example_layout.h"
  18. #include "scroll/lv_example_scroll.h"
  19. #include "anim/lv_example_anim.h"
  20. #include "event/lv_example_event.h"
  21. #include "styles/lv_example_style.h"
  22. #include "others/lv_example_others.h"
  23. #include "libs/lv_example_libs.h"
  24. /*********************
  25. * DEFINES
  26. *********************/
  27. /**********************
  28. * TYPEDEFS
  29. **********************/
  30. /**********************
  31. * GLOBAL PROTOTYPES
  32. **********************/
  33. /**********************
  34. * MACROS
  35. **********************/
  36. #ifdef __cplusplus
  37. } /*extern "C"*/
  38. #endif
  39. #endif /*LV_EXAMPLES_H*/