Searched full:py (Results 1 – 25 of 32) sorted by relevance
12
6 os.system("./built_in_font_gen.py --size 8 -o lv_font_montserrat_8.c --bpp 4")9 os.system("./built_in_font_gen.py --size 10 -o lv_font_montserrat_10.c --bpp 4")12 os.system("./built_in_font_gen.py --size 12 -o lv_font_montserrat_12.c --bpp 4")15 os.system("./built_in_font_gen.py --size 14 -o lv_font_montserrat_14.c --bpp 4")18 os.system("./built_in_font_gen.py --size 16 -o lv_font_montserrat_16.c --bpp 4")21 os.system("./built_in_font_gen.py --size 18 -o lv_font_montserrat_18.c --bpp 4")24 os.system("./built_in_font_gen.py --size 20 -o lv_font_montserrat_20.c --bpp 4")27 os.system("./built_in_font_gen.py --size 22 -o lv_font_montserrat_22.c --bpp 4")30 os.system("./built_in_font_gen.py --size 24 -o lv_font_montserrat_24.c --bpp 4")33 os.system("./built_in_font_gen.py --size 26 -o lv_font_montserrat_26.c --bpp 4")[all …]
9 Example: python built_in_font_gen.py --size 16 -o lv_font_roboto_16.c --bpp 4 -r 0x20-0x7F""", form…
25 if language == 'py':62 py_path = self.get_example_code_path(example_path, 'py')67 py_code = self.embed_code(py_path, example_path, 'py', buttons={68 '<i class="fa fa-github"></i> GitHub': self.github_path(example_path, 'py'),69 …ash}/examples/header.py&script=https://raw.githubusercontent.com/lvgl/lvgl/{env.config.repo_commit…82 if not 'py' in excluded_languages:
798 jd_yuv_t *py, *pc; in mcu_output() local820 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 …]
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`
2 cat ../../header.py $1 > test.py3 chmod +x test.py4 ./test.py
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()
... /lv_demo_widgets.h demos/widgets/lv_demo_widgets.py demos/widgets/screenshot1.png docs/ docs ...
5044 float px = x0 - sx, py = y0 - sy; local5045 …// minimize (px+t*dx)^2 + (py+t*dy)^2 = px*px + 2*px*dx*t + t^2*dx*dx + py*py + 2*py*dy*t + t^2*dy…5046 … // derivative: 2*px*dx + 2*py*dy + (2*dx*dx+2*dy*dy)*t, set to 0 and solve5047 float t = -(px * dx + py * dy) / (dx * dx + dy * dy);5066 float px, py, t, it, dist2; local5102 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;[all …]
15 - `assets/spectrum.py` creates an array of spectrum values from a music. 4 band are created with 33…24 ## Using spectrum.py26 - run `python sectrum.py my_file.mp3`
29 run: python tests/main.py --build-option=${{ matrix.build_option }} build45 run: python tests/main.py --report test109 env PATH="/usr/lib/ccache:$PATH" ASAN_OPTIONS=detect_leaks=0 python3 tests/main.py test
21 run: python lv_conf_internal_gen.py24 … 2>&1 || (echo "Please regenerate lv_conf_internal.h using scripts/lv_conf_internal_gen.py"; false)
29 run: python code-format.py36 echo "Please apply the preceding diff to your code or run scripts/code-format.py"
597 lv_coord_t py = p->y - cy; in lv_point_within_circle() local600 uint32_t dist = (px * px) + (py * py); in lv_point_within_circle()
382 * @param py X coordinate of a point of the line388 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() argument401 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()
326 * @param py X coordinate of a point of the line332 void lv_draw_mask_line_angle_init(lv_draw_mask_line_param_t * param, lv_coord_t p1x, lv_coord_t py,…
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…
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
40 - `python3 jpg_to_sjpg.py image_to_convert.jpg`. It creates both a C files and an SJPG image.
95 if path.exists("conf.py"):96 cmd("sed -i -r 's/v[0-9]+\.[0-9]+\.[0-9]+.*/" + ver_str + "/' conf.py")
16 # release.py <type>
5 # patch.py -c <commit-list> -b <branch-list> [-p] [-t]
69 …py&script_startup=https://gist.githubusercontent.com/amirgon/7bf15a66ba6d959bbf90d10f3da571be/raw/…
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…
7 - [ ] Run `code-format.py` from the `scripts` folder. [astyle](http://astyle.sourceforge.net/instal…