mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-21 14:38:15 +01:00
extend w1 test
This commit is contained in:
parent
8457e23eab
commit
5f4c957fc5
1 changed files with 8 additions and 1 deletions
|
@ -41,8 +41,15 @@ class CraftBeerPiCli():
|
|||
with open('/boot/config.txt', 'r') as f:
|
||||
lines=f.readlines()
|
||||
#f.write("dtoverlay=w1-gpio,gpiopin=4,pullup=on")
|
||||
active=False
|
||||
for line in lines:
|
||||
print(line)
|
||||
if line.find("dtoverlay=w1-gpio"):
|
||||
active=True
|
||||
if not active:
|
||||
lines.append("dtoverlay=w1-gpio,gpiopin=4,pullup=on")
|
||||
print("Added w1-gpio")
|
||||
|
||||
print(lines)
|
||||
print("/boot/config.txt created")
|
||||
|
||||
def list_one_wire(self):
|
||||
|
|
Loading…
Reference in a new issue