1 /**
2  * @file lv_demo_transform.h
3  *
4  */
5 
6 #ifndef LV_DEMO_TRANSFORM_H
7 #define LV_DEMO_TRANSFORM_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "../lv_demos.h"
17 
18 #if LV_USE_DEMO_TRANSFORM
19 
20 #if LV_FONT_MONTSERRAT_18 == 0
21 #error "LV_FONT_MONTSERRAT_18 is required for lv_demo_transform. Enable it in lv_conf.h."
22 #endif
23 
24 #if LV_USE_GRID == 0
25 #error "LV_USE_GRID needs to be enabled"
26 #endif
27 
28 /*********************
29  *      DEFINES
30  *********************/
31 
32 /**********************
33  *      TYPEDEFS
34  **********************/
35 
36 /**********************
37  * GLOBAL PROTOTYPES
38  **********************/
39 void lv_demo_transform(void);
40 
41 /**********************
42  *      MACROS
43  **********************/
44 
45 #endif /*LV_USE_DEMO_TRANSFORM*/
46 
47 #ifdef __cplusplus
48 } /* extern "C" */
49 #endif
50 
51 #endif /*LV_DEMO_TRANSFORM_H*/
52