Lines Matching full:or
18 - [Download](https://github.com/lvgl/lvgl/archive/master.zip) or clone the library from GitHub with…
22 - Call `lv_tick_inc(x)` every `x` milliseconds in a Timer or Task (`x` should be between 1 and 10).…
78 - Call `lv_timer_handler()` periodically every few milliseconds in the main `while(1)` loop or in a…
87 The graphical elements like Buttons, Labels, Sliders, Charts etc. are called objects or widgets. Go…
118 To see the full API visit the documentation of the widgets or the related header file (e.g. [lvgl/s…
124 You can assign one or more callbacks to an object which will be called if the object is clicked, re…
154 Widgets might be built from one or more *parts*. For example, a button has only one part called `LV…
164 - `LV_STATE_CHECKED` Toggled or checked state
165 - `LV_STATE_FOCUSED` Focused via keypad or encoder or clicked via touchpad/mouse
166 - `LV_STATE_FOCUS_KEY` Focused via keypad or encoder but not via touchpad/mouse
177 To manually add or remove states use:
186 …riables. Only their pointer is saved in the objects so they need to be defined as static or global.