added try check

master
Ebbe Baß 2022-03-11 11:42:22 +01:00
parent fc31141394
commit ee2c0af90e
1 changed files with 5 additions and 2 deletions

View File

@ -93,8 +93,11 @@ if __name__ == '__main__':
GPIO.setup(19, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.add_event_detect(13, GPIO.RISING, callback=power_toggle, bouncetime=300)
GPIO.add_event_detect(19, GPIO.RISING, callback=change_idle_mode, bouncetime=300)
with open(current_path+'/settings.txt', 'r') as f:
idle_mode = int(f.readlines())
try:
with open(current_path+'/settings.txt', 'r') as f:
idle_mode = int(f.readlines())
except:
pass
try:
while True: