1 /* 2 * Copyright 2023 Fabian Blatz <fabianblatz@gmail.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_MODULES_LVGL_INPUT_DEVICE_H_ 8 #define ZEPHYR_MODULES_LVGL_INPUT_DEVICE_H_ 9 10 #include <zephyr/device.h> 11 #include <lvgl.h> 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 lv_indev_t *lvgl_input_get_indev(const struct device *dev); 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 #endif /* ZEPHYR_MODULES_LVGL_INPUT_DEVICE_H_ */ 24