docs(examples): make example_list.py robust (#9317)
Arduino Lint / lint (push) Has been cancelled
Build Examples with C++ Compiler / build-examples (push) Has been cancelled
MicroPython CI / Build esp32 port (push) Has been cancelled
MicroPython CI / Build rp2 port (push) Has been cancelled
MicroPython CI / Build stm32 port (push) Has been cancelled
MicroPython CI / Build unix port (push) Has been cancelled
C/C++ CI / Build OPTIONS_16BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_24BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_FULL_32BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_NORMAL_8BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_SDL - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_16BIT - cl - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_16BIT - gcc - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_24BIT - cl - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_24BIT - gcc - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_FULL_32BIT - cl - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_FULL_32BIT - gcc - Windows (push) Has been cancelled
C/C++ CI / Build ESP IDF ESP32S3 (push) Has been cancelled
C/C++ CI / Run tests with 32bit build (push) Has been cancelled
C/C++ CI / Run tests with 64bit build (push) Has been cancelled
BOM Check / bom-check (push) Has been cancelled
Verify that lv_conf_internal.h matches repository state / verify-conf-internal (push) Has been cancelled
Verify the widget property name / verify-property-name (push) Has been cancelled
Verify code formatting / verify-formatting (push) Has been cancelled
Compare file templates with file names / template-check (push) Has been cancelled
Build docs / build-and-deploy (push) Has been cancelled
Test API JSON generator / Test API JSON (push) Has been cancelled
Install LVGL using CMake / build-examples (push) Has been cancelled
Check Makefile / Build using Makefile (push) Has been cancelled
Check Makefile for UEFI / Build using Makefile for UEFI (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/benchmark_results_comment/test.sh) (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/filter_docker_logs/test.sh) (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/serialize_results/test.sh) (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark 32b - lv_conf_perf32b (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark 64b - lv_conf_perf64b (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Save PR Number (push) Has been cancelled
Hardware Performance Test / Hardware Performance Benchmark (push) Has been cancelled
Hardware Performance Test / HW Benchmark - Save PR Number (push) Has been cancelled
Performance Tests CI / Perf Tests OPTIONS_TEST_PERF_32B - Ubuntu (push) Has been cancelled
Performance Tests CI / Perf Tests OPTIONS_TEST_PERF_64B - Ubuntu (push) Has been cancelled
Port repo release update / run-release-branch-updater (push) Has been cancelled
Verify Font License / verify-font-license (push) Has been cancelled
Verify Kconfig / verify-kconfig (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled

This commit is contained in:
Victor Wheeler
2025-12-02 11:50:52 -07:00
committed by GitHub
parent 8c854243a5
commit 9160f83e0e
77 changed files with 1009 additions and 447 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Create a Barcode
----------------
.. lv_example:: libs/barcode/lv_example_barcode_1
.. lv_example:: lv_example_barcode_1
:language: c
+5 -1
View File
@@ -1,6 +1,10 @@
BMP
***
Open a BMP image from file
--------------------------
.. lv_example:: libs/bmp/lv_example_bmp_1
.. lv_example:: lv_example_bmp_1
:language: c

Before

Width:  |  Height:  |  Size: 113 B

After

Width:  |  Height:  |  Size: 114 B

+6 -2
View File
@@ -1,12 +1,16 @@
FFmpeg
******
Decode image
------------
.. lv_example:: libs/ffmpeg/lv_example_ffmpeg_1
.. lv_example:: lv_example_ffmpeg_1
:language: c
Decode video
------------
.. lv_example:: libs/ffmpeg/lv_example_ffmpeg_2
.. lv_example:: lv_example_ffmpeg_2
:language: c
+7 -3
View File
@@ -1,17 +1,21 @@
FreeType
********
Create a font with FreeType
---------------------------
.. lv_example:: libs/freetype/lv_example_freetype_1
.. lv_example:: lv_example_freetype_1
:language: c
Use a bitmap font to draw Emojis using FreeType
-----------------------------------------------
.. lv_example:: libs/freetype/lv_example_freetype_2
.. lv_example:: lv_example_freetype_2
:language: c
Freetype font kerning
---------------------
.. lv_example:: libs/freetype/lv_example_freetype_3
.. lv_example:: lv_example_freetype_3
:language: c
+5 -1
View File
@@ -1,6 +1,10 @@
GIF
***
Open a GIF image from file and variable
---------------------------------------
.. lv_example:: libs/gif/lv_example_gif_1
.. lv_example:: lv_example_gif_1
:language: c
+6 -2
View File
@@ -1,14 +1,18 @@
glTF
****
Open a glTF from a file and make it spin forever like a platter
---------------------------------------------------------------
.. lv_example:: libs/gltf/lv_example_gltf_1
.. lv_example:: lv_example_gltf_1
:language: c
Open a glTF from a file and iterate through each camera
-------------------------------------------------------
.. lv_example:: libs/gltf/lv_example_gltf_2
.. lv_example:: lv_example_gltf_2
:language: c
Load multiple models in a single glTF object and modify their position, rotation and scale at runtime
+5 -1
View File
@@ -1,5 +1,9 @@
GStreamer
*********
Loads a video from the internet using the gstreamer widget
----------------------------------------------------------
.. lv_example:: libs/gstreamer/lv_example_gstreamer_1
.. lv_example:: lv_example_gstreamer_1
:language: c
+2
View File
@@ -0,0 +1,2 @@
3rd-Party Libraries
*******************
+5 -1
View File
@@ -1,6 +1,10 @@
libjpeg-turbo
*************
Load a JPG image
-----------------
.. lv_example:: libs/libjpeg_turbo/lv_example_libjpeg_turbo_1
.. lv_example:: lv_example_libjpeg_turbo_1
:language: c
+5 -1
View File
@@ -1,6 +1,10 @@
libpng
******
Open a PNG image from file and variable
---------------------------------------
.. lv_example:: libs/libpng/lv_example_libpng_1
.. lv_example:: lv_example_libpng_1
:language: c
+5 -1
View File
@@ -1,6 +1,10 @@
LibWebP
*******
Open a WEBP image from file and variable
----------------------------------------
.. lv_example:: libs/libwebp/lv_example_libwebp_1
.. lv_example:: lv_example_libwebp_1
:language: c
+5 -1
View File
@@ -1,6 +1,10 @@
LodePNG
*******
Open a PNG image from file and variable
---------------------------------------
.. lv_example:: libs/lodepng/lv_example_lodepng_1
.. lv_example:: lv_example_lodepng_1
:language: c
+5 -1
View File
@@ -1,6 +1,10 @@
QR-Code Generator
*****************
Create a QR Code
----------------
.. lv_example:: libs/qrcode/lv_example_qrcode_1
.. lv_example:: lv_example_qrcode_1
:language: c
+6 -2
View File
@@ -1,12 +1,16 @@
rlottie
*******
Load a Lottie animation from raw data
-------------------------------------
.. lv_example:: libs/rlottie/lv_example_rlottie_1
.. lv_example:: lv_example_rlottie_1
:language: c
Load a Lottie animation from a file
-----------------------------------
.. lv_example:: libs/rlottie/lv_example_rlottie_2
.. lv_example:: lv_example_rlottie_2
:language: c
+7 -3
View File
@@ -1,17 +1,21 @@
SVG
***
Load and render SVG data
------------------------
.. lv_example:: libs/svg/lv_example_svg_1
.. lv_example:: lv_example_svg_1
:language: c
Load and render SVG data from a file
------------------------------------
.. lv_example:: libs/svg/lv_example_svg_2
.. lv_example:: lv_example_svg_2
:language: c
Load and render SVG data in a draw event
----------------------------------------
.. lv_example:: libs/svg/lv_example_svg_3
.. lv_example:: lv_example_svg_3
:language: c
+7 -3
View File
@@ -1,18 +1,22 @@
Tiny TTF
********
Open a font with Tiny TTF from data array
------------------------------------------
.. lv_example:: libs/tiny_ttf/lv_example_tiny_ttf_1
.. lv_example:: lv_example_tiny_ttf_1
:language: c
Load a font with Tiny_TTF from file
-----------------------------------
.. lv_example:: libs/tiny_ttf/lv_example_tiny_ttf_2
.. lv_example:: lv_example_tiny_ttf_2
:language: c
Change font size with Tiny_TTF
------------------------------
.. lv_example:: libs/tiny_ttf/lv_example_tiny_ttf_3
.. lv_example:: lv_example_tiny_ttf_3
:language: c
+5 -1
View File
@@ -1,6 +1,10 @@
Tiny JPEG Decompressor (TJpgDec)
********************************
Load a JPG image
------------------
.. lv_example:: libs/tjpgd/lv_example_tjpgd_1
.. lv_example:: lv_example_tjpgd_1
:language: c