From 51927d38b9ad4ce7c3b5f597f3d502eef95ad720 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Mon, 2 Mar 2020 19:47:38 -0700 Subject: [PATCH] remove name conflict --- Software/python/hwtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Software/python/hwtest.py b/Software/python/hwtest.py index 82ff7bb..91b5a97 100644 --- a/Software/python/hwtest.py +++ b/Software/python/hwtest.py @@ -125,8 +125,8 @@ def control_thread(): print() -t = threading.Thread(target=control_thread) -t.start() +control_thread = threading.Thread(target=control_thread) +control_thread.start() # servos = ServoKit(channels=16).continuous_servo