mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-21 14:38:15 +01:00
next onewire setup test
This commit is contained in:
parent
f00a646a2a
commit
76ee4b74a7
1 changed files with 7 additions and 8 deletions
15
cbpi/cli.py
15
cbpi/cli.py
|
@ -42,16 +42,15 @@ class CraftBeerPiCli():
|
|||
lines=f.readlines()
|
||||
#f.write("dtoverlay=w1-gpio,gpiopin=4,pullup=on")
|
||||
lines.append("dtoverlay=w1-gpio,gpiopin=4,pullup=on")
|
||||
|
||||
for line in lines:
|
||||
print(line)
|
||||
|
||||
configtemppath=os.path.join(self.config.get_file_path(""),"config.txt")
|
||||
print(configtemppath)
|
||||
|
||||
with open(configtemppath, 'w') as f:
|
||||
|
||||
configtempfile=os.path.join(self.config.get_file_path(""),"config.txt")
|
||||
|
||||
with open(configtempfile, 'w') as f:
|
||||
for line in lines:
|
||||
f.write(line)
|
||||
destfile="/boot/config.txt"
|
||||
|
||||
shutil.os.system('sudo mv "{}" "{}"'.format(configtempfile,destfile))
|
||||
|
||||
print("/boot/config.txt created")
|
||||
|
||||
|
|
Loading…
Reference in a new issue