Home
last modified time | relevance | path

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

/lvgl-latest/docs/
Dexample_list.py112 def print_item(path, lvl, d, fout): argument
116 write_header(lvl, v, fout)
117 fout.write(f".. lv_example:: {k}\n")
118 fout.write("\n")
125 fout = open(output_path, "w")
146 fout.write('.. _examples:\n\n')
147 write_header(0, 'Examples', fout)
150 write_header(1, h1[h], fout)
154 write_header(2, widgets[w], fout)
155 print_item(h + "/" + w, 3, d_all, fout)
[all …]
/lvgl-latest/demos/music/assets/
Dspectrum.py15 fout = open("spectrum.h", "w") variable
20 fout.write("const uint16_t spectrum[][4] = {\n")
22 fout.write("{ ")
30 fout.write(str(int(v)) + ", ")
31 fout.write("},\n")
32 fout.write("};\n")
33 fout.close()
/lvgl-latest/scripts/
Dlv_conf_internal_gen.py20 fout = open(LV_CONF_INTERNAL, "w", newline='') variable
22 fout.write(
137 fout.write(
155 fout.write(
168 fout.write(f'{line}\n')
170 fout.write(
240 fout.close()