Searched refs:fout (Results 1 – 3 of 3) sorted by relevance
/lvgl-latest/docs/ |
D | example_list.py | 112 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/ |
D | spectrum.py | 15 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/ |
D | lv_conf_internal_gen.py | 20 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()
|