ECE 2035 final project

Dependencies:   mbed wave_player 4DGL-uLCD-SE MMA8452

speech.h

Committer:
rconnorlawson
Date:
2018-03-30
Revision:
0:35660d7952f7
Child:
2:22d36e7740f1

File content as of revision 0:35660d7952f7:

#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