Searched refs:functions (Results 1 – 25 of 70) sorted by relevance
123
/lvgl-latest/docs/ |
D | doc_builder.py | 224 functions = {} variable 346 functions=set(), 362 elif type_ in functions: 363 self._deps['functions'].add(functions[type_]) 542 self.__dict__.update(functions[name].__dict__) 544 functions[name] = self 562 if name in functions: 563 self.__dict__.update(functions[name].__dict__) 565 functions[name] = self 703 functions=set(), [all …]
|
D | CODING_STYLE.rst | 26 - followed by the action (for functions): *set*, *get*, etc. 65 - Write functions that use the single-responsibility principle. 66 - Make functions ``static`` when not part of that object's public API (where possible). 74 - Variables in a file (outside functions) are always *static*. 75 - Do not use global variables (use functions to set/get static variables). 307 { /* Main brackets of functions in new line */
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | ili9341.rst | 15 …he display flush callback. The user needs to implement only two platform-specific functions to send 16 … Typically these are implemented by calling the appropriate SDK library functions on the given pla… 35 You need to implement two platform-dependent functions:
|
D | st7735.rst | 17 …he display flush callback. The user needs to implement only two platform-specific functions to send 18 … Typically these are implemented by calling the appropriate SDK library functions on the given pla… 37 You need to implement two platform-dependent functions:
|
D | st7789.rst | 16 …he display flush callback. The user needs to implement only two platform-specific functions to send 17 … Typically these are implemented by calling the appropriate SDK library functions on the given pla… 36 You need to implement two platform-dependent functions:
|
D | st7796.rst | 17 …he display flush callback. The user needs to implement only two platform-specific functions to send 18 … Typically these are implemented by calling the appropriate SDK library functions on the given pla… 37 You need to implement two platform-dependent functions:
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | threading.rst | 71 Assuming the above is the case, it is safe to call LVGL functions in 83 inconsistent state. A high percentage LVGL functions (functions that start with 86 multi-step sequences), but return them to a consistent state before those functions 94 These two LVGL functions may be called from any thread: 103 LVGL functions, set a flag or other atomic value that your LVGL-calling thread 160 by another task or in an interrupt), the thread calling LVGL functions can read that 168 data to the thread calling LVGL functions is to pass a private copy of that data to 234 /* You must always hold (lock) the MUTEX while calling LVGL functions. */
|
D | connecting_lvgl.rst | 38 functions. 61 elapsed since system start up. Many platforms have built-in functions that can 77 .. note:: :cpp:func:`lv_tick_inc` is only one of two LVGL functions that may be
|
/lvgl-latest/docs/details/other-components/ |
D | obj_id.rst | 24 - these two API functions become available: 29 - several more Widget-ID-related API functions become available if 47 Because of this timing, custom versions of these functions can be used according to 108 functions. You do this by first setting :c:macro:`LV_USE_OBJ_ID_BUILTIN` to `0` in 111 You will then need to provide implementations for the following functions (and link 136 Examples of implementations of these functions exist in ``lv_obj_id_builtin.c``, but
|
D | obj_property.rst | 90 The 3 functions that then become available are: 133 That array is attached to the Widget's class, enabling "getter" and "setter" functions 237 following functions to look up property IDs by passing property name (a string): 250 The latter two functions are useful when you already know ``name`` is among the
|
D | file_explorer.rst | 30 event callback functions. What happens next is up to the application designer. 113 This list of functions provides access to the parts shown in diagram above: 209 through functions such as :cpp:func:`strcpy` and :cpp:func:`strcat` for later use.
|
D | observer.rst | 96 The following functions can be used to set a subject's value: 106 The following functions can be used to get a subject's value: 118 The following functions can be used to get a subject's previous value:
|
/lvgl-latest/docs/details/main-components/ |
D | fs.rst | 54 then the path strings you pass to ``lv_fs_...()`` functions would look like this:: 59 | +-- This part gets passed to the OS-level file-system functions. 62 driver (i.e. set of functions) that apply to that file system. 199 portion of of the path strings provided to ``lv_fs_...()`` functions when files and 202 path strings provided to ``lv_fs_...()`` functions. 221 Then in both cases, path strings passed to ``lv_fs_...()`` functions in the 318 The implementation is documented below. Note that the FS functions make calls 319 to other driver FS functions when the cache is enabled. i.e., ``lv_fs_read`` may call the driver's …
|
D | color.rst | 7 The color module handles all color-related functions like changing color 103 The following functions can modify a color:
|
D | animation.rst | 18 "variable"), which is available in the callback functions that are called as the 32 This prototype makes it easy to use most of the LVGL *set* functions directly or via a trivial wrap… 35 …- functions that set :ref:`local style properties <style_local>`) directly on objects (needs a wra… 49 components. But you can provide your own "set" functions, and so the application of 71 ``lv_anim_set_...()`` functions. 230 /* ...and other set-up functions above. */
|
/lvgl-latest/docs/details/widgets/ |
D | canvas.rst | 77 To draw something to the Canvas use LVGL's draw functions directly. See the examples for more detai… 79 The draw functions can draw to any color format to which LVGL can render. Typically this means
|
D | arc.rst | 46 To set the start and end angle of the background Arc use any of these functions: 95 It is possible to set indicator angle directly with any of these functions: 141 A typical use case is to call these functions in the ``VALUE_CHANGED``
|
D | animimg.rst | 41 use the :ref:`Animation <animation>` functions, for example, to
|
D | win.rst | 62 You can add Button and Label Widgets to the Header using these two functions. They 64 functions can be called in any order, any number of times.
|
D | list.rst | 51 with one of the ``lv_label_set_text...()`` functions.
|
D | spangroup.rst | 49 After a Span is created, use the following functions to set its text 66 normal functions for getting children won't work.
|
/lvgl-latest/docs/details/debugging/ |
D | profiler.rst | 19 The trace system has a configurable record buffer that stores the names of event functions and thei… 165 Use the mouse to move the focus and click on functions on the timeline to observe their execution t… 170 Users can add their own measured functions: 241 2. Optimize the execution time of log printing functions, such as increasing the serial port baud r…
|
D | log.rst | 63 functions. Here:
|
/lvgl-latest/examples/arduino/LVGL_Arduino/ |
D | LVGL_Arduino.ino | 41 /*For example ("my_..." functions needs to be implemented by you) 56 /*For example ("my_..." functions needs to be implemented by you)
|
/lvgl-latest/docs/details/base-widget/layouts/ |
D | flex.rst | 47 Use the following functions to set and control the Flex layout on any parent Widget. 52 The functions below cause the parent Widget to become a Flex container if it is 166 following functions can be used to set the flex container padding style:
|
123