diff --git a/PIcontroller.py b/PIcontroller.py index eae93f7..5ddd51d 100644 --- a/PIcontroller.py +++ b/PIcontroller.py @@ -46,7 +46,10 @@ def main(): if __name__ == "__main__": while True: - main() + try: + main() + except: + pass for i in range(1,10): print(i) sleep(1)