1 2 /** 3 * @file lv_port_indev_templ.h 4 * 5 */ 6 7 /*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/ 8 #if 1 9 10 #ifndef LV_PORT_INDEV_TEMPL_H 11 #define LV_PORT_INDEV_TEMPL_H 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 void lv_port_indev_init(int rot); 18 lv_group_t *lv_port_indev_group_create(void); 19 void lv_port_indev_group_destroy(lv_group_t *group); 20 21 #ifdef __cplusplus 22 } /*extern "C"*/ 23 #endif 24 25 #endif /*LV_PORT_INDEV_TEMPL_H*/ 26 27 #endif /*Disable/Enable content*/ 28