From e8dabfc0698a4785621bb051e8cf4e7f5ad4fc9d Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Mon, 2 Mar 2020 23:40:24 -0700 Subject: [PATCH] enable motors --- 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 e0a2fd1..daac263 100644 --- a/Software/python/hwtest.py +++ b/Software/python/hwtest.py @@ -124,8 +124,8 @@ def controller(): motor_speed += steering_sign * new_c # Update motors - # for ii in range(3): - # servos[ii].throttle = motor_speed[ii] + for ii in range(3): + servos[ii].throttle = motor_speed[ii] # Log data new_time_data = [[this_time, line_position, new_c]]