2021-10-04 14:34:11 +02:00
|
|
|
/**
|
|
|
|
* @file lv_example_libs.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LV_EXAMPLE_LIBS_H
|
|
|
|
#define LV_EXAMPLE_LIBS_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
2022-12-11 18:48:03 +08:00
|
|
|
#include "barcode/lv_example_barcode.h"
|
2021-10-04 14:34:11 +02:00
|
|
|
#include "bmp/lv_example_bmp.h"
|
2022-07-18 21:29:04 +08:00
|
|
|
#include "ffmpeg/lv_example_ffmpeg.h"
|
|
|
|
#include "freetype/lv_example_freetype.h"
|
2021-10-04 14:34:11 +02:00
|
|
|
#include "gif/lv_example_gif.h"
|
2023-09-20 16:30:04 +08:00
|
|
|
#include "lodepng/lv_example_lodepng.h"
|
2023-09-25 16:28:35 +08:00
|
|
|
#include "libpng/lv_example_libpng.h"
|
2021-10-04 14:34:11 +02:00
|
|
|
#include "qrcode/lv_example_qrcode.h"
|
2021-10-22 15:44:43 +02:00
|
|
|
#include "rlottie/lv_example_rlottie.h"
|
2023-09-20 16:38:47 +08:00
|
|
|
#include "tjpgd/lv_example_tjpgd.h"
|
2023-09-22 16:43:59 +08:00
|
|
|
#include "libjpeg_turbo/lv_example_libjpeg_turbo.h"
|
2022-09-26 08:30:07 -07:00
|
|
|
#include "tiny_ttf/lv_example_tiny_ttf.h"
|
2021-10-04 14:34:11 +02:00
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /*extern "C"*/
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*LV_EXAMPLE_LIBS_H*/
|