Lines Matching full:with
6 - Encoders with left/right turn and push options
73 Objects you want to control with a keypad or encoder need to be added to a *Group*.
78 You need to associate an input device with a group. An input device can send key events to only one…
82 To associate a group with an input device use `lv_indev_set_group(indev, g)`, where `indev` is the …
100 …our keys to these special keys to support navigation in a group and interact with selected objects.
102 …it's enough to use only `LV_KEY_LEFT/RIGHT` because most objects can be fully controlled with them.
104 With an encoder you should use only `LV_KEY_LEFT`, `LV_KEY_RIGHT`, and `LV_KEY_ENTER`.
108 …sing the default options. *Navigate* and *Edit* modes are used to avoid this problem with encoders.
115 …Slider](/widgets/core/slider)) leaves *Edit* mode upon a short click. But with objects where a sho…
119 Just create a group with `lv_group_t * g = lv_group_create();` and set the default group with `lv_g…
121 Don't forget to assign one or more input devices to the default group with ` lv_indev_set_group(my_…