/lvgl-latest/examples/ |
D | test_ex.sh | 2 cat ../../header.py $1 > test.py 3 chmod +x test.py 4 ./test.py
|
/lvgl-latest/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-latest/demos/music/ |
D | README.md | 15 - `assets/spectrum.py` creates an array of spectrum values from a music. 4 band are created with 33… 24 ## Using spectrum.py 26 - run `python sectrum.py my_file.mp3`
|
/lvgl-latest/src/extra/libs/sjpg/ |
D | tjpgd.c | 798 jd_yuv_t *py, *pc; in mcu_output() local 820 pc = py = jd->mcubuf; in mcu_output() 823 if (iy >= 8) py += 64; in mcu_output() 827 py += iy * 8; in mcu_output() 832 if (ix == 8) py += 64 - 8; /* Jump to next block if double block heigt */ in mcu_output() 837 yy = *py++; /* Get Y component */ in mcu_output() 845 py = jd->mcubuf + iy * 8; in mcu_output() 847 if (iy >= 8) py += 64; in mcu_output() 851 if (ix == 8) py += 64 - 8; /* Jump to next block if double block height */ in mcu_output() 853 *pix++ = (uint8_t)*py++; /* Get and store a Y value as grayscale */ in mcu_output() [all …]
|
/lvgl-latest/.github/ |
D | pull_request_template.md | 7 - [ ] Run `code-format.py` from the `scripts` folder. [astyle](http://astyle.sourceforge.net/instal…
|
/lvgl-latest/src/extra/others/ime/ |
D | lv_ime_pinyin.h | 35 const char * const py; member
|
D | lv_ime_pinyin.c | 878 if((NULL == (dict[i].py)) || (NULL == (dict[i].py_mb))) { in init_pinyin_dict() 879 headletter = dict[i - 1].py[0]; in init_pinyin_dict() 885 if(headletter == (dict[i].py[0])) { in init_pinyin_dict() 889 headletter = dict[i].py[0]; in init_pinyin_dict() 921 if(*(py_str + index) != *((cpHZ->py) + index)) { in pinyin_search_matching() 1072 if(*(py_str + index) != *((cpHZ->py) + index)) { in pinyin_k9_is_valid_py()
|
/lvgl-latest/docs/get-started/platforms/ |
D | espressif.md | 41 idf.py add-dependency lvgl/lvgl>=8.* 48 When you are ready to configure LVGL, launch the configuration menu with `idf.py menuconfig` in you…
|
/lvgl-latest/docs/libs/ |
D | rlottie.md | 51 `lvgl/scripts/filetohex.py` can be used to convert a Lottie file a hex array. E.g.: 53 ./filetohex.py path/to/lottie.json > out.txt
|
D | sjpg.md | 40 - `python3 jpg_to_sjpg.py image_to_convert.jpg`. It creates both a C files and an SJPG image.
|
/lvgl-latest/src/misc/ |
D | lv_area.c | 597 lv_coord_t py = p->y - cy; in lv_point_within_circle() local 600 uint32_t dist = (px * px) + (py * py); in lv_point_within_circle()
|
/lvgl-latest/src/draw/ |
D | lv_draw_mask.h | 332 void lv_draw_mask_line_angle_init(lv_draw_mask_line_param_t * param, lv_coord_t p1x, lv_coord_t py,…
|
D | lv_draw_mask.c | 388 void lv_draw_mask_line_angle_init(lv_draw_mask_line_param_t * param, lv_coord_t p1x, lv_coord_t py,… in lv_draw_mask_line_angle_init() argument 401 p2y = (lv_trigo_sin(angle) >> 5) + py; in lv_draw_mask_line_angle_init() 403 lv_draw_mask_line_points_init(param, p1x, py, p2x, p2y, side); in lv_draw_mask_line_angle_init()
|
/lvgl-latest/docs/get-started/bindings/ |
D | micropython.md | 69 …py&script_startup=https://gist.githubusercontent.com/amirgon/7bf15a66ba6d959bbf90d10f3da571be/raw/…
|
/lvgl-latest/src/extra/libs/tiny_ttf/ |
D | stb_truetype_htcw.h | 5044 float px = x0 - sx, py = y0 - sy; local 5047 float t = -(px * dx + py * dy) / (dx * dx + dy * dy); 5066 float px, py, t, it, dist2; local 5102 py = it * it * y0 + 2 * t * it * y1 + t * t * y2; 5103 dist2 = (px - sx) * (px - sx) + (py - sy) * (py - sy); 5110 py = it * it * y0 + 2 * t * it * y1 + t * t * y2; 5111 dist2 = (px - sx) * (px - sx) + (py - sy) * (py - sy); 5118 py = it * it * y0 + 2 * t * it * y1 + t * t * y2; 5119 dist2 = (px - sx) * (px - sx) + (py - sy) * (py - sy);
|
/lvgl-latest/docs/overview/ |
D | font.md | 157 … but in a different size and/or ranges, you can use the `built_in_font_gen.py` script in `lvgl/scr…
|
/lvgl-latest/docs/ |
D | CHANGELOG.md | 1058 - fix( example) in lv_example_scroll_3.py float_btn should only be created once [`2602`](https://gi… 1061 - fix(lv_conf_internal_gen.py) formatting fixes on the generated file [`2542`](https://github.com/… 1288 - feat(example) add lv_example_chart_9.py [`2604`](https://github.com/lvgl/lvgl/pull/2604) 1289 - feat(example) add lv_example_chart_8.py [`2611`](https://github.com/lvgl/lvgl/pull/2611) 1295 - fix(example) minor fixes in lv_example_chart_2.py [`2601`](https://github.com/lvgl/lvgl/pull/2601) 1467 - added example lv_example_anim_timeline_1.py [`2387`](https://github.com/lvgl/lvgl/pull/2387) 1479 - refactor(examples) drop JS-specific code from header.py [`ef41450`](https://github.com/lvgl/lvgl/… 1482 - refactor(examples) drop usys import from header.py [`ad1f91a`](https://github.com/lvgl/lvgl/commi…
|
/lvgl-latest/scripts/ |
D | Doxyfile | 815 # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
|