Update ina219.py added try for input in python

beta-v1.3.1
Alan Johnston 2 years ago committed by GitHub
parent abe4d9a917
commit 49d98a0d05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -346,8 +346,11 @@ if __name__ == "__main__":
print("Python Error Recovered!")
if not single:
inp = input()
# print(inp)
try:
inp = input()
# print(inp)
except:
print("Python error getting input!")
else:
break

Loading…
Cancel
Save

Powered by TurnKey Linux.