Lines Matching refs:input
8 The Linux event device (evdev) is a hardware-independent API that gives access to input events from…
14 Your system has an input device configured (usually under ``/dev/input/`` such as ``/dev/input/even…
28 To set up an event input, first create an input device with ``lv_edev_create`` setting it to the co…
33 lv_indev_t *touch = lv_evdev_create(LV_INDEV_TYPE_POINTER, "/dev/input/event0");
44 Locating your input device
47 If you can't determine your input device, first run
49 ```$cat /proc/bus/input/devices```
51 …show input devices and there will be entries with the word ``event`` which give a clue as to the d…
57 ``$evtest /dev/input/event1`` replacing ``eventX`` with your event device from above.
59 Automatic input device discovery
62 There is support for automatically finding and adding input devices in ``/dev/input/``. New devices…