Finished V1

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Revision:
0:35660d7952f7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/speech.h	Fri Mar 30 17:07:25 2018 +0000
@@ -0,0 +1,17 @@
+#ifndef SPEECH_H
+#define SPEECH_H
+
+/**
+ * Display a speech bubble.
+ */
+void speech(const char* line1, const char* line2);
+
+/**
+ * Display a long speech bubble (more than 2 lines).
+ * 
+ * @param lines The actual lines of text to display
+ * @param n The number of lines to display.
+ */
+void long_speech(const char* lines[], int n);
+
+#endif // SPEECH_H
\ No newline at end of file