* **dtmf.sh**: decodes DTMF signals in audio
* **histogram.pl**: shows goertzel output in ASCII graphs
* **histogram.sh**: example using histogram.pl to draw realtime equalizer
+ * **guitar-tuner.sh**: example using histogram.pl to tune guitar (currently only to low E)
* **sleepmon.sh**: Generates frequency on soundcard output and detects it on input
* Can be used to detect and log motion using soundcard and PIR sensor or NC switch
* **sleepplot.sh**: Generates gnuplot graph from sleeplog
* TODO
- * Guitar tuner
* Send me more...
--- /dev/null
+#!/bin/sh
+#Example of guitar tuner using goertzel:
+#165Hz = Low E
+#How to tune:
+#There are 3 frequencies, you have to make the middle one (target frequency) most loud
+#and the other two surrounding it shoud show approximately same intensity
+
+arecord -r 44100 | ./goertzel -r 44100 -f 150 -f 165 -f 180 | ./histogram.pl