2021-12-16 20:49:41 +01:00
|
|
|
/**
|
|
|
|
* @file lv_demos.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LV_DEMOS_H
|
|
|
|
#define LV_DEMOS_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
|
|
|
#include "../lvgl.h"
|
|
|
|
|
2022-01-19 21:31:02 +00:00
|
|
|
#if LV_USE_DEMO_BENCHMARK
|
2022-02-13 13:59:17 -05:00
|
|
|
#include "benchmark/lv_demo_benchmark.h"
|
2022-01-19 21:31:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LV_USE_DEMO_KEYPAD_AND_ENCODER
|
2022-02-13 13:59:17 -05:00
|
|
|
#include "keypad_encoder/lv_demo_keypad_encoder.h"
|
2022-01-19 21:31:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LV_USE_DEMO_MUSIC
|
2022-02-13 13:59:17 -05:00
|
|
|
#include "music/lv_demo_music.h"
|
2022-01-19 21:31:02 +00:00
|
|
|
#endif
|
2021-12-16 20:49:41 +01:00
|
|
|
|
2022-07-18 21:29:04 +08:00
|
|
|
#if LV_USE_DEMO_STRESS
|
|
|
|
#include "stress/lv_demo_stress.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LV_USE_DEMO_WIDGETS
|
|
|
|
#include "widgets/lv_demo_widgets.h"
|
|
|
|
#endif
|
|
|
|
|
2023-03-14 21:34:56 +08:00
|
|
|
#if LV_USE_DEMO_FLEX_LAYOUT
|
2022-12-15 20:34:13 +08:00
|
|
|
#include "flex_layout/lv_demo_flex_layout.h"
|
|
|
|
#endif
|
|
|
|
|
2021-12-16 20:49:41 +01:00
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*LV_DEMO_H*/
|