ECE 2035 final project

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Committer:
npatel387
Date:
Mon Apr 15 12:25:08 2019 +0000
Revision:
2:22d36e7740f1
Parent:
0:35660d7952f7
final;

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 */
npatel387 2:22d36e7740f1 7 void speech(const char* line1, const char* line2, const char* line3, const char* line4);
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