From 30b57b5128a38fefa5065f9af60d80a2c03d9752 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Mon, 2 Mar 2020 21:27:59 -0700 Subject: [PATCH] slower decay IIR --- 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 9d4a444..f4b151a 100644 --- a/Software/python/hwtest.py +++ b/Software/python/hwtest.py @@ -118,7 +118,7 @@ def control_thread(): sample_interval = 0.01 base_speed = 0.1 fir_taps = [1, 1, 0] - iir_taps = [0.1, 0] + iir_taps = [0.99, 0] time_data = np.zeros((max(len(fir_taps), len(iir_taps)), time_data.shape[1])) while True: