project for 2035

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

Committer:
DCchico
Date:
Fri Oct 23 16:18:39 2020 -0400
Revision:
1:10330bce85cb
shell-code

Who changed what in which revision?

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