Home
last modified time | relevance | path

Searched refs:fout (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.5.0/docs/
Dexample_list.py76 def print_item(path, lvl, d, fout): argument
80 fout.write("#"*lvl + " " + v + "\n")
81 fout.write('```eval_rst\n')
82 fout.write(f".. lv_example:: {k}\n")
83 fout.write('```\n')
84 fout.write("\n")
88 fout = open("examples.md", "w")
105 fout.write("```eval_rst\n")
106 fout.write(":github_url: |github_link_base|/examples.md\n")
107 fout.write("```\n")
[all …]
/lvgl-3.5.0/demos/music/assets/
Dspectrum.py13 fout = open("spectrum.h", "w") variable
18 fout.write("const uint16_t spectrum[][4] = {\n")
20 fout.write("{ ")
28 fout.write(str(int(v)) + ", ")
29 fout.write("},\n")
30 fout.write("};\n")
31 fout.close()
/lvgl-3.5.0/scripts/
Dlv_conf_internal_gen.py20 fout = open(LV_CONF_INTERNAL, "w") variable
22 fout.write(
113 fout.write(
131 fout.write(
144 fout.write(f'{line}\n')
146 fout.write(
184 fout.close()