1 /**
2  * @file lv_widgets.h
3  *
4  */
5 
6 #ifndef LV_WIDGETS_H
7 #define LV_WIDGETS_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "animimg/lv_animimg.h"
17 #include "calendar/lv_calendar.h"
18 #include "calendar/lv_calendar_header_arrow.h"
19 #include "calendar/lv_calendar_header_dropdown.h"
20 #include "chart/lv_chart.h"
21 #include "keyboard/lv_keyboard.h"
22 #include "list/lv_list.h"
23 #include "menu/lv_menu.h"
24 #include "msgbox/lv_msgbox.h"
25 #include "meter/lv_meter.h"
26 #include "spinbox/lv_spinbox.h"
27 #include "spinner/lv_spinner.h"
28 #include "tabview/lv_tabview.h"
29 #include "tileview/lv_tileview.h"
30 #include "win/lv_win.h"
31 #include "colorwheel/lv_colorwheel.h"
32 #include "led/lv_led.h"
33 #include "imgbtn/lv_imgbtn.h"
34 #include "span/lv_span.h"
35 
36 /*********************
37  *      DEFINES
38  *********************/
39 
40 /**********************
41  *      TYPEDEFS
42  **********************/
43 
44 /**********************
45  * GLOBAL PROTOTYPES
46  **********************/
47 
48 /**********************
49  *      MACROS
50  **********************/
51 
52 #ifdef __cplusplus
53 } /*extern "C"*/
54 #endif
55 
56 #endif /*LV_WIDGETS_H*/
57