mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-12-26 10:57:55 -07:00
reverse motor direction
This commit is contained in:
parent
972c7e764b
commit
6bec9830b8
|
@ -102,7 +102,7 @@ def controller():
|
||||||
fir_taps = [1, 0, 0]
|
fir_taps = [1, 0, 0]
|
||||||
iir_taps = [0, 0]
|
iir_taps = [0, 0]
|
||||||
time_data = np.zeros((max(len(fir_taps), len(iir_taps)), time_data.shape[1]))
|
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
|
steering_sign = 1
|
||||||
|
|
||||||
print("INFO: Controller started")
|
print("INFO: Controller started")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user