Demonstration of MSGEQ7 library interfacing with MSGEQ7 7-band Graphic Equalizer Chip made by Mixed Signal Integration.

Dependencies:   MSGEQ7 mbed

Revision:
0:96716743b93d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Oct 16 06:45:05 2013 +0000
@@ -0,0 +1,23 @@
+// MSGEQ7_Hello_World
+// Created by Chris Wilson
+// 10/16/2013
+
+
+#include "mbed.h"
+#include "MSGEQ7.h"
+
+#define MAX 500
+
+MSGEQ7 eq(p13, p14, p15); //reset, strobe, analog
+
+int main() {
+    while(1) {
+        eq.readInt(MAX); //Read in integer frequency data with max value set to 'MAX'
+        
+        //Print out frequency data
+        for(int i = 0; i < 7; i++){
+            printf("%d\t", eq.freqDataInt[i]);
+        }
+        printf("\n");
+    }
+}