ECE 2035 final project

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Committer:
rconnorlawson
Date:
Fri Mar 30 17:07:25 2018 +0000
Revision:
0:35660d7952f7
Child:
2:22d36e7740f1
Hollowed out shell code.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rconnorlawson 0:35660d7952f7 1 #ifndef SPEECH_H
rconnorlawson 0:35660d7952f7 2 #define SPEECH_H
rconnorlawson 0:35660d7952f7 3
rconnorlawson 0:35660d7952f7 4 /**
rconnorlawson 0:35660d7952f7 5 * Display a speech bubble.
rconnorlawson 0:35660d7952f7 6 */
rconnorlawson 0:35660d7952f7 7 void speech(const char* line1, const char* line2);
rconnorlawson 0:35660d7952f7 8
rconnorlawson 0:35660d7952f7 9 /**
rconnorlawson 0:35660d7952f7 10 * Display a long speech bubble (more than 2 lines).
rconnorlawson 0:35660d7952f7 11 *
rconnorlawson 0:35660d7952f7 12 * @param lines The actual lines of text to display
rconnorlawson 0:35660d7952f7 13 * @param n The number of lines to display.
rconnorlawson 0:35660d7952f7 14 */
rconnorlawson 0:35660d7952f7 15 void long_speech(const char* lines[], int n);
rconnorlawson 0:35660d7952f7 16
rconnorlawson 0:35660d7952f7 17 #endif // SPEECH_H