Lines Matching refs:input
3 ## Types of input devices
5 …ster an input device an `lv_indev_drv_t` variable has to be initialized. **Be sure to register at …
8 /*Register at least one display before you register any input devices*/
15 /*Register the driver in LVGL and save the created input device object*/
25 … function pointer which will be called periodically to report the current state of an input device.
27 Visit [Input devices](/overview/indev) to learn more about input devices in general.
59 - The created group has to be assigned to an input device: `lv_indev_set_group(my_indev, g)` (`my_i…
83 In short, the Encoder input devices work like this:
176 - `read_timer` pointer to the `lv_timer` which reads the input device. Its parameters can be change…
181 `feedback_cb` is called when any type of event is sent by the input devices (independently of its t…
185 Every input device is associated with a display. By default, a new input device is added to the las…
191 …iver for your input device that buffers measured data. In `read_cb` you can report the buffered da…
197 - [INdev features](/overview/display) to learn more about higher level input device features.