From bceb322d87a2256a5d98e2c16850d5d7013fd50c Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 19 Aug 2012 23:50:19 +0200 Subject: [PATCH] equalizer.py: Raise MIN_FREQ from 20 to 50; that's where range of most microphones starts --- host_python/equalizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host_python/equalizer.py b/host_python/equalizer.py index 0117a69..f227a1e 100755 --- a/host_python/equalizer.py +++ b/host_python/equalizer.py @@ -21,7 +21,7 @@ PIXELS = 20 SLOW = 0 HISTORY_SIZE = 4 -MIN_FREQ = 20 +MIN_FREQ = 50 MAX_FREQ = 12000