From 3d3c81070ff5773c2c0cb3c0278c4fa0a6c102cb Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Sun, 20 Dec 2020 17:32:54 -0500 Subject: [PATCH] added error ignore --- PIcontroller.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)