/lvgl-latest/docs/details/widgets/ |
D | chart.rst | 58 at least this number of values. 60 - LINE- and BAR-charts require only one data-value array to supply Y-values for each data point. 62 - SCATTER charts have separate data-value arrays for both X-values and Y-values. 67 - When a data series is created, it comes with pre-allocated values array(s) 69 Y-values. SCATTER-type charts also use an array of X-values.). All Y-values so 71 - To get points to be drawn on the chart, you must set their Y-values to something 79 - The values in your array must remain available through the life of that data series. 152 ``height`` have non-zero values. 155 lines between the points if line-width style values for 158 SCATTER chart can be suppressed if their Y-values are set to :c:macro:`LV_CHART_POINT_NONE`.) [all …]
|
D | bar.rst | 14 Both the start and end values of the Bar can be set. Changing the start value to a 27 animation time if the values set with :cpp:enumerator:`LV_ANIM_ON`. 42 caused by ``width`` and ``height``. Valid values for ``orientation`` are: 54 interpreted in a range (minimum and maximum values) which can be
|
D | switch.rst | 33 side of the slider. The knob can be made larger with the ``padding`` values. 34 Padding values can be asymmetric as well. 61 :cpp:expr:`lv_switch_set_orientation(widget, orientation)`. Possible values for
|
D | led.rst | 46 You can set custom LED ON and OFF brightness values by defining macros 48 values are 80 and 255. These too must be in the range [0..255].
|
D | slider.rst | 32 made larger with the ``padding`` values. Padding values can be asymmetric as well. 52 To set different values use: 59 caused by ``width`` and ``height``. Valid values for ``orientation`` are:
|
D | arc.rst | 23 properties. Its padding values are interpreted relative to the 26 background properties and padding values. With zero padding the knob 40 value is interpreted in a range (minimum and maximum values) which can 53 degrees increasing in the clockwise direction. The angle values should be in
|
D | image.rst | 89 - **Alpha indexed**: The values stored at pixel positions are alpha (opacity) values. 127 set the horizontal and vertical scaling independently. They can be different values. 168 ``align`` can be any of these values: 187 To automatically scale or tile the image, pass one of these ``align`` values:
|
D | scale.rst | 44 be any of these values: 63 where ``min`` and ``max`` will become the numeric low and high values for the Scale, 97 By default, the labels shown are the numeric values of the scale at the major tick 179 where ``min`` and ``max`` are the Section's boundary values that should normally be 208 the PART values together to get the style to apply to more than one part. However,
|
/lvgl-latest/src/libs/barcode/ |
D | code128.c | 286 static signed char code128c_ascii_to_code(const char * values) in code128c_ascii_to_code() argument 288 if(values[0] == CODE128_FNC1) in code128c_ascii_to_code() 291 if(values[0] >= '0' && values[0] <= '9' && in code128c_ascii_to_code() 292 values[1] >= '0' && values[1] <= '9') { in code128c_ascii_to_code() 293 char code = 10 * (values[0] - '0') + (values[1] - '0'); in code128c_ascii_to_code()
|
/lvgl-latest/docs/details/other-components/ |
D | obj_property.rst | 78 other types of input, but their values are readable through this API. 96 - :cpp:type:`lv_result_t` :cpp:expr:`lv_obj_set_properties(widget, lv_property_t * values, count)` 102 The following is an example of an array that could be used as the ``values`` argument 107 lv_property_t values[] = { 142 - :c:macro:`LV_PROPERTY_ID` (for single values -- see :ref:`Single Values` below)`; 145 - :c:macro:`LV_PROPERTY_ID2` (for paired values -- see :ref:`Paired Values` below)`; 151 Note that :cpp:type:`lv_style_prop_t` (enumerator values beginning with ``LV_PROPERTY_STYLE_...``) 152 are also valid property IDs, and can be used to set or get a Widget's style values. 167 .. _single values: 207 .. _paired values: [all …]
|
D | monkey.rst | 25 type of :ref:`input device <indev>`, and set the ``min`` and ``max`` values for its 41 - :cpp:enumerator:`LV_INDEV_TYPE_ENCODER`: The minimum and maximum values of ``enc_diff``. 42 - :cpp:enumerator:`LV_INDEV_TYPE_BUTTON`: The minimum and maximum values of ``btn_id``.
|
/lvgl-latest/docs/details/base-widget/layouts/ |
D | flex.rst | 63 The possible values for ``flex_flow`` are: 74 These values cause the Widget's layout behavior to model `CSS Flexbox`_ behavior 99 The possible values are: 117 See justify-content_, align-items_ and align-content_ for illustrations of these values. 126 When more than one child Widget have non-zero grow values, all available space will 127 be distributed in proportion to their respective grow values. For example, if there 128 is 400 px space remaining and 3 child Widgets with non-zero grow values: 149 All Flex-related values are style properties under the hood so you
|
D | grid.rst | 33 other tracks that have non-zero FR-unit values. 70 values: 74 should be used by this track. Larger values means larger space. 88 in its cell. Possible values are: 155 All the Grid-related values are style properties under the hood so you
|
/lvgl-latest/src/misc/ |
D | lv_style.c | 313 lv_style_value_t * values = (lv_style_value_t *)style->values_and_props; in lv_style_set_prop() local 314 values[i] = value; in lv_style_set_prop() 339 lv_style_value_t * values = (lv_style_value_t *)values_and_props; in lv_style_set_prop() local 343 values[style->prop_cnt - 1] = value; in lv_style_set_prop()
|
D | lv_style.h | 518 lv_style_value_t * values = (lv_style_value_t *)style->values_and_props; in lv_style_get_prop_inlined() local 519 *value = values[i]; in lv_style_get_prop_inlined()
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style-properties.rst | 15 Sets width of Widget. Pixel, percentage and `LV_SIZE_CONTENT` values can be used. Percentage values… 29 Sets a minimal width. Pixel and percentage values can be used. Percentage values are relative to th… 43 Sets a maximal width. Pixel and percentage values can be used. Percentage values are relative to th… 57 Sets height of Widget. Pixel, percentage and `LV_SIZE_CONTENT` can be used. Percentage values are r… 71 Sets a minimal height. Pixel and percentage values can be used. Percentage values are relative to t… 85 Sets a maximal height. Pixel and percentage values can be used. Percentage values are relative to t… 113 …t considering the ``align`` setting. Pixel and percentage values can be used. Percentage values ar… 127 …t considering the ``align`` setting. Pixel and percentage values can be used. Percentage values ar… 141 …nt of the parent the X and Y coordinates should be interpreted. Possible values are: `LV_ALIGN_DEF… 155 … with this value. Pixel and percentage (with `lv_pct(x)`) values can be used. Percentage values ar… [all …]
|
/lvgl-latest/docs/details/libs/ |
D | freetype.rst | 97 software, and can be set by using following values where style values are required: 103 These values can be combined, e.g.
|
D | gif.rst | 21 To convert a GIF file to byte values array use `LVGL's online
|
/lvgl-latest/src/font/ |
D | lv_font_fmt_txt.h | 121 const int8_t * values; member
|
D | lv_binfont_loader.c | 128 lv_free((void *)kern_dsc->values); in lv_binfont_destroy() 600 int8_t * values = lv_malloc(glyph_entries); in load_kern() local 605 kern_pair->values = values; in load_kern() 611 if(lv_fs_read(fp, values, glyph_entries, NULL) != LV_FS_RES_OK) { in load_kern()
|
/lvgl-latest/src/drivers/glfw/ |
D | lv_opengles_driver.c | 55 …es_shader_set_uniformmatrix3fv(const char * name, int count, bool transpose, const float * values); 451 …les_shader_set_uniformmatrix3fv(const char * name, int count, bool transpose, const float * values) in lv_opengles_shader_set_uniformmatrix3fv() argument 453 …_CALL(glUniformMatrix3fv(lv_opengles_shader_get_uniform_location(name), count, transpose, values)); in lv_opengles_shader_set_uniformmatrix3fv()
|
/lvgl-latest/demos/ebike/generated/ |
D | font_ebike_130.c | 2732 .values = kern_pair_values,
|
D | font_ebike_56.c | 640 .values = kern_pair_values,
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | configuration.rst | 50 ``lv_conf.h`` together with Kconfig as well, but keep in mind that the values 51 from ``lv_conf.h`` or build settings (``-D...``) override the values
|
/lvgl-latest/docs/details/main-components/ |
D | color.rst | 24 Create colors from Red, Green and Blue channel values: 44 Create colors from Hue, Saturation and Value values:
|