Initial commit of working config write code

This commit is contained in:
2022-08-06 00:49:01 +01:00
commit 816824a0c7
7 changed files with 81 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from config_writer import ConfigWriter
cw = ConfigWriter()
lis = cw.inactive_headphones
if cw.active_headphone is not None:
lis.append(cw.active_headphone)
#cw.write_specs(lis, None)
cw.write_specs(cw.active_headphone, cw.inactive_headphones[0])