mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-12-25 18:38:09 -07:00
set controller to proportional
This commit is contained in:
parent
e8dabfc069
commit
dbd4da7a8f
|
@ -99,7 +99,7 @@ def controller():
|
|||
# TODO: make these parameters editable via network interface
|
||||
sample_interval = 0.01
|
||||
base_speed = 0.1
|
||||
fir_taps = [1, -1, 0]
|
||||
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]
|
||||
|
|
Loading…
Reference in New Issue
Block a user