feat(examples) add event examples

This commit is contained in:
Gabor Kiss-Vamosi
2021-05-26 22:04:10 +02:00
parent 71189b46e9
commit ec6c20b587
8 changed files with 195 additions and 19 deletions

View File

@@ -0,0 +1,40 @@
/**
* @file lv_example_event.h
*
*/
#ifndef LV_EXAMPLE_EVENT_H
#define LV_EXAMPLE_EVENT_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
void lv_example_event_1(void);
void lv_example_event_2(void);
void lv_example_event_3(void);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_EXAMPLE_EVENT_H*/