A program to automatically tune a guitar. Written by Justin Reidhead and Steven Swenson

Dependencies:   FFT FrequencyFinder Motor NewTextLCD PinDetect mbed strings

Revision:
4:e370f322a697
Parent:
3:c672e782f19b
Child:
5:c0fd99f07536
diff -r c672e782f19b -r e370f322a697 strings/strings.h
--- a/strings/strings.h	Mon Apr 16 22:29:41 2012 +0000
+++ b/strings/strings.h	Mon Apr 16 23:17:49 2012 +0000
@@ -9,7 +9,7 @@
     ~strings(void);
 
     void inc_index();
-    std::string get_note();
+    char* get_note();
     float get_freq();
     
     protected:
@@ -17,6 +17,6 @@
 
 private:
     float frequencies[9];
-    std::string notes [9];
+    char *notes [9];
     int index;
 };