From 6bec9830b862d7fff6357b02beccf2d06ae120ef Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Mon, 2 Mar 2020 23:43:40 -0700 Subject: [PATCH] reverse motor direction --- Software/python/hwtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/python/hwtest.py b/Software/python/hwtest.py index c8a2a91..e407c4d 100644 --- a/Software/python/hwtest.py +++ b/Software/python/hwtest.py @@ -102,7 +102,7 @@ def controller(): fir_taps = [1, 0, 0] iir_taps = [0, 0] time_data = np.zeros((max(len(fir_taps), len(iir_taps)), time_data.shape[1])) - motor_directions = [-1, 1, 0] + motor_directions = [1, -1, 0] steering_sign = 1 print("INFO: Controller started")