Home
last modified time | relevance | path

Searched refs:py (Results 1 – 19 of 19) sorted by relevance

/lvgl-latest/examples/
Dtest_ex.sh2 cat ../../header.py $1 > test.py
3 chmod +x test.py
4 ./test.py
/lvgl-latest/tests/
DREADME.md16 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`
DCMakeLists.txt276 message(FATAL_ERROR "Must provide a known options value (check main.py?).")
/lvgl-latest/demos/music/
DREADME.md15 - `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/
Dtjpgd.c798 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/
Dpull_request_template.md7 - [ ] Run `code-format.py` from the `scripts` folder. [astyle](http://astyle.sourceforge.net/instal…
/lvgl-latest/src/extra/others/ime/
Dlv_ime_pinyin.h35 const char * const py; member
Dlv_ime_pinyin.c878 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/
Despressif.md41 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/
Drlottie.md51 `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
Dsjpg.md40 - `python3 jpg_to_sjpg.py image_to_convert.jpg`. It creates both a C files and an SJPG image.
/lvgl-latest/src/misc/
Dlv_area.c597 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/
Dlv_draw_mask.h332 void lv_draw_mask_line_angle_init(lv_draw_mask_line_param_t * param, lv_coord_t p1x, lv_coord_t py,…
Dlv_draw_mask.c388 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/
Dmicropython.md69py&script_startup=https://gist.githubusercontent.com/amirgon/7bf15a66ba6d959bbf90d10f3da571be/raw/…
/lvgl-latest/src/extra/libs/tiny_ttf/
Dstb_truetype_htcw.h5044 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/
Dfont.md157 … but in a different size and/or ranges, you can use the `built_in_font_gen.py` script in `lvgl/scr…
/lvgl-latest/docs/
DCHANGELOG.md1058 - 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/
DDoxyfile815 # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,