2021-02-08 09:53:03 +01:00
|
|
|
/**
|
2021-02-19 18:19:32 +01:00
|
|
|
* @file lv_examples.h
|
2021-02-08 09:53:03 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-02-19 18:19:32 +01:00
|
|
|
#ifndef LV_EXAMPLES_H
|
|
|
|
#define LV_EXAMPLES_H
|
2021-02-08 09:53:03 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
2021-04-08 13:07:48 +02:00
|
|
|
#include "../lvgl.h"
|
|
|
|
|
2022-07-18 21:29:04 +08:00
|
|
|
#include "anim/lv_example_anim.h"
|
|
|
|
#include "event/lv_example_event.h"
|
2021-02-19 18:19:32 +01:00
|
|
|
#include "get_started/lv_example_get_started.h"
|
|
|
|
#include "layouts/lv_example_layout.h"
|
2022-07-18 21:29:04 +08:00
|
|
|
#include "libs/lv_example_libs.h"
|
|
|
|
#include "others/lv_example_others.h"
|
2024-06-01 04:46:13 +02:00
|
|
|
#include "porting/osal/lv_example_osal.h"
|
2021-02-23 11:31:10 +01:00
|
|
|
#include "scroll/lv_example_scroll.h"
|
2021-05-27 11:50:04 +02:00
|
|
|
#include "styles/lv_example_style.h"
|
2022-07-18 21:29:04 +08:00
|
|
|
#include "widgets/lv_example_widgets.h"
|
2021-02-08 09:53:03 +01:00
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2021-03-15 02:03:27 +08:00
|
|
|
} /*extern "C"*/
|
2021-02-08 09:53:03 +01:00
|
|
|
#endif
|
|
|
|
|
2021-02-19 18:19:32 +01:00
|
|
|
#endif /*LV_EXAMPLES_H*/
|