2021-07-19 20:46:28 +08:00
|
|
|
/**
|
|
|
|
* @file lv_example_others.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LV_EXAMPLE_OTHERS_H
|
|
|
|
#define LV_EXAMPLE_OTHERS_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
2022-09-04 22:57:15 +08:00
|
|
|
#include "file_explorer/lv_example_file_explorer.h"
|
2024-10-16 00:34:45 +08:00
|
|
|
#include "font_manager/lv_example_font_manager.h"
|
2022-02-11 20:43:08 +09:00
|
|
|
#include "fragment/lv_example_fragment.h"
|
2022-07-18 21:29:04 +08:00
|
|
|
#include "gridnav/lv_example_gridnav.h"
|
|
|
|
#include "ime/lv_example_ime_pinyin.h"
|
2022-03-17 17:18:14 +08:00
|
|
|
#include "imgfont/lv_example_imgfont.h"
|
2022-07-18 21:29:04 +08:00
|
|
|
#include "monkey/lv_example_monkey.h"
|
2023-10-09 23:20:29 +02:00
|
|
|
#include "observer/lv_example_observer.h"
|
2022-07-18 21:29:04 +08:00
|
|
|
#include "snapshot/lv_example_snapshot.h"
|
2024-11-18 09:52:25 +01:00
|
|
|
#include "gestures/lv_example_gestures.h"
|
2024-11-22 10:46:13 +01:00
|
|
|
#include "xml/lv_example_xml.h"
|
2021-12-14 11:55:45 -08:00
|
|
|
|
2021-07-19 20:46:28 +08:00
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /*extern "C"*/
|
|
|
|
#endif
|
|
|
|
|
2022-02-11 20:43:08 +09:00
|
|
|
#endif /*LV_EXAMPLE_OTHERS_H*/
|