Lines Matching +full:lvgl +full:- +full:codes
2 # SPDX-License-Identifier: Apache-2.0
5 LVGL keypad indev pseudo-device
8 lv_indev_data_t to the underlying keypad lv_indev_t managed by LVGL.
10 The property input-codes can be used to setup a mapping of input codes
11 to the lvgl keys. There are lvgl keys that have a special function:
12 https://docs.lvgl.io/master/overview/indev.html#keys.
17 #include <zephyr/dt-bindings/lvgl/lvgl.h>
20 compatible = "zephyr,lvgl-keypad-input";
22 input-codes = <INPUT_KEY_1 INPUT_KEY_2>;
23 lvgl-codes = <LV_KEY_NEXT LV_KEY_PREV>;
26 compatible: "zephyr,lvgl-keypad-input"
28 include: zephyr,lvgl-common-input.yaml
31 input-codes:
35 Array of input event key codes (INPUT_KEY_* or INPUT_BTN_*).
37 lvgl-codes:
41 Array of mapped lvgl keys.