Searched refs:main (Results 1 – 25 of 40) sorted by relevance
12
/lvgl-3.5.0/tests/ |
D | README.md | 16 1. Run all executable tests with `./tests/main.py test`. 17 2. Build all build-only tests with `./tests/main.py build`. 20 report `./tests/main.py --clean --report build test`. 22 For full information on running tests run: `./tests/main.py --help`. 34 - `report` - Coverage report. Generated if the `report` flag was passed to `./main.py`
|
D | CMakeLists.txt | 276 message(FATAL_ERROR "Must provide a known options value (check main.py?).")
|
/lvgl-3.5.0/docs/widgets/extra/ |
D | menu.md | 43 ### Set a menu page in the main area 44 …age has been created, you can set it to the main area with `lv_menu_set_page(menu, page)`. NULL to… 50 For instance, you have created a btn obj in the main page. When you click the btn obj, you want it … 63 …v_menu_get_cur_main_page(menu)` returns a pointer to menu page that is currently displayed in main. 65 - `LV_EVENT_CLICKED` Sent when a back btn in a header from either main or sidebar is clicked. `LV_O…
|
D | led.md | 8 The LEDs have only one main part, called `LV_LED_PART_MAIN` and it uses all the typical background … 24 …- `LV_LED_DRAW_PART_RECTANGLE` The main rectangle. `LV_OBJ_DRAW_PART_RECTANGLE` is not sent by the…
|
D | list.md | 9 - `LV_PART_MAIN` The main part of the list that uses all the typical background properties
|
D | keyboard.md | 11 - `LV_PART_MAIN` The main part. Uses all the typical background properties
|
/lvgl-3.5.0/tests/makefile/ |
D | test.c | 5 int main(void) { in main() function
|
/lvgl-3.5.0/docs/porting/ |
D | sleep.md | 3 The MCU can go to sleep when no user input happens. In this case, the main `while(1)` should look l…
|
D | timer-handler.md | 4 - *while(1)* of *main()* function
|
/lvgl-3.5.0/env_support/cmake/ |
D | esp.cmake | 14 main)
|
/lvgl-3.5.0/src/extra/widgets/menu/ |
D | lv_menu.h | 53 lv_obj_t * main; member
|
D | lv_menu.c | 217 lv_obj_set_parent(page, menu->main); in lv_menu_set_page() 503 menu->main = main_cont; in lv_menu_constructor()
|
/lvgl-3.5.0/docs/layouts/ |
D | flex.md | 16 - main direction: row or column, the direction in which the items are placed 17 - cross direction: perpendicular to the main direction 44 - `main_place` determines how to distribute the items in their track on the main axis. E.g. flush t…
|
/lvgl-3.5.0/demos/ |
D | README.md | 45 //! main.c 96 …n and coding style guidelines, please refer to the file docs/CONTRIBUTING.md in the main LVGL repo:
|
/lvgl-3.5.0/demos/music/ |
D | README.md | 19 - Add extra bars next to the "main bars" with a cosine shape. Add more bars for the lower bands.
|
/lvgl-3.5.0/docs/overview/ |
D | color.md | 40 …aterial-colors) of colors. In this system all named colors have a nominal main color as well as fo… 64 To get the main color use `lv_color_t c = lv_palette_main(LV_PALETTE_...)`.
|
D | event.md | 91 - `LV_EVENT_DRAW_MAIN_BEGIN` Starting the main drawing phase. 92 - `LV_EVENT_DRAW_MAIN` Perform the main drawing 93 - `LV_EVENT_DRAW_MAIN_END` Finishing the main drawing phase
|
D | object.md | 182 …a [Base object](/widgets/obj) uses the main and scrollbar parts but a [Slider](/widgets/core/slide… 196 The main purpose of parts is to allow styling the "components" of the widgets.
|
/lvgl-3.5.0/docs/widgets/core/ |
D | checkbox.md | 12 By default, its size is equal to the height of the main part's font. Padding properties make the ti…
|
D | slider.md | 38 - `LV_SLIDER_DRAW_PART_KNOB` The main (right) knob of the slider
|
/lvgl-3.5.0/docs/get-started/platforms/ |
D | espressif.md | 33 The above command will clone LVGL's main repository into the `components/lvgl` directory. LVGL incl…
|
D | cmake.md | 26 add_executable(MyFirmware src/main.c)
|
D | arduino.md | 61 as the examples and demos are now part of the main LVGL library.
|
/lvgl-3.5.0/examples/arduino/LVGL_Arduino/ |
D | LVGL_Arduino.ino | 10 as the examples and demos are now part of the main LVGL library. */
|
/lvgl-3.5.0/docs/others/ |
D | ime_pinyin.md | 5 …dgets/extra/keyboard) can run can also run `lv_ime_pinyin`. There are two main influencing factors…
|
12