Home
last modified time | relevance | path

Searched refs:array (Results 1 – 25 of 25) sorted by relevance

/lvgl-3.7.0/docs/libs/
Dgif.md10 ## Convert GIF files to C array
11 …file to byte values array use [LVGL's online converter](https://lvgl.io/tools/imageconverter). Sel…
Dsjpg.md12 - File read from file and c-array are implemented.
30 ### Converting JPG to C array
54 walpaper.c (c array)
Dbmp.md16 - Only BMP files are supported and BMP images as C array (`lv_img_dsc_t`) are not. It's because the…
17 …file. If you want to store them in flash it's better to convert them to C array with [LVGL's image…
Dtiny_ttf.md12 By default, the TTF or OTF file must be embedded as an array, either in
Drlottie.md47 …an example animation in raw format. Instead storing the JSON string a hex array is stored for the …
51 `lvgl/scripts/filetohex.py` can be used to convert a Lottie file a hex array. E.g.:
/lvgl-3.7.0/docs/widgets/extra/
Dchart.md38 …an `lv_chart_series_t` structure which contains the chosen `color` and an array for the data point…
48 `lv_chart_set_ext_y_array(chart, ser, value_array)` makes the chart use an external array for the g…
49 `value_array` should look like this: `lv_coord_t * value_array[num_points]`. The array size needs t…
50 The array's pointer will be saved in the chart so it needs to be global, static or dynamically allo…
53 The value array of a series can be obtained with `lv_chart_get_y_array(chart, ser)`, which can be u…
59 1. Set the values manually in the array like `ser1->points[3] = 7` and refresh the chart with `lv_c…
78 …external buffer is assigned to a series, so you need to be sure the external array is large enough.
Dcalendar.md41 The list of highlighted dates should be stored in a `lv_calendar_date_t` array loaded by `lv_calend…
42 Only the array's pointer will be saved so the array should be a static or global variable.
Danimimg.md5 …ject. The only difference is that instead of one source image, you set an array of multiple source…
Dmsgbox.md25 `btn_txts[]` is an array with the buttons' text. E.g. `const char * btn_txts[] = {"Ok", "Cancel", N…
/lvgl-3.7.0/src/extra/widgets/chart/
Dlv_chart.h413 void lv_chart_set_ext_y_array(lv_obj_t * obj, lv_chart_series_t * ser, lv_coord_t array[]);
422 void lv_chart_set_ext_x_array(lv_obj_t * obj, lv_chart_series_t * ser, lv_coord_t array[]);
Dlv_chart.c594 void lv_chart_set_ext_y_array(lv_obj_t * obj, lv_chart_series_t * ser, lv_coord_t array[]) in lv_chart_set_ext_y_array() argument
601 ser->y_points = array; in lv_chart_set_ext_y_array()
605 void lv_chart_set_ext_x_array(lv_obj_t * obj, lv_chart_series_t * ser, lv_coord_t array[]) in lv_chart_set_ext_x_array() argument
612 ser->x_points = array; in lv_chart_set_ext_x_array()
/lvgl-3.7.0/docs/widgets/core/
Dline.md12 The points have to be stored in an `lv_point_t` array and passed to the object by the `lv_line_set_…
Dimg.md18 - a variable in code (a C array with the pixels).
24 To generate a pixel array from a PNG, JPG or BMP image, use the [Online image converter tool](https…
87 In other words transformations work only on true color images stored as C array, or if a custom [Im…
Dcanvas.md42 An array of pixels can be copied to the canvas with `lv_canvas_copy_buf(canvas, buffer_to_copy, x, …
Dbtnmatrix.md16 There is a text on each button. To specify them a descriptor string array, called *map*, needs to b…
Dlabel.md22 This means that the array can't be a local variable which goes out of scope when the function exits.
/lvgl-3.7.0/demos/music/
DREADME.md15 - `assets/spectrum.py` creates an array of spectrum values from a music. 4 band are created with 33…
/lvgl-3.7.0/docs/overview/
Dimage.md18 - **data** pointer to an array where the image itself is stored
173 * @param src can be file name or pointer to a C array
216 …* Required only if the "open" function can't open the whole decoded pixel array. (dsc->img_data ==…
Ddisplay.md33 You can create a larger virtual display from an array of smaller ones. You can create it as below:
Ddrawing.md69 - `LV_DRAW_MASK_TYPE_MAP` The mask is stored in a bitmap array and the necessary parts are applied
/lvgl-3.7.0/docs/intro/
Dindex.md131 LVGL needs just one simple driver function to copy an array of pixels into a given area of the disp…
/lvgl-3.7.0/docs/porting/
Ddisplay.md9 Draw buffer(s) are simple array(s) that LVGL uses to render the screen content.
/lvgl-3.7.0/
DKconfig81 hex "Address for the memory pool instead of allocating it as a normal array"
/lvgl-3.7.0/src/extra/libs/png/
Dlodepng.c1451 static size_t searchCodeIndex(const unsigned* array, size_t array_size, size_t value) { in searchCodeIndex() argument
1458 if(array[mid] >= value) right = mid - 1; in searchCodeIndex()
1461 if(left >= array_size || array[left] > value) left--; in searchCodeIndex()
/lvgl-3.7.0/docs/
DCHANGELOG.md138 - fix(btnmatrix): fix array out of bounds addressing with groups and no buttons [`edd5ad2`](https:/…
485 - fix(calendar): fix possible array access out of bounds [`3223`](https://github.com/lvgl/lvgl/pull…
1920 …`lv_chart_set_x_start_point()` function - Set the index of the x-axis start point in the data array
1921 - Add `lv_chart_set_ext_array()` function - Set an external array of data points to use for the cha…
1923 …t_get_x_start_point()` function - Get the current index of the x-axis start point in the data array