tiz
Display.h
- Committer:
- youle1119
- Date:
- 2016-09-14
- Revision:
- 0:d60c26d5fddc
File content as of revision 0:d60c26d5fddc:
#include "mbed.h"
#include "TextLCD.h"
#ifndef __DISPLAY_H__
#define __DISPLAY_H__
class Display
{
private:
TextLCD *__lcd;
public:
Display();
void show(char *buffer0, char *buffer1=NULL); // Display string in 2 rows.
};
#endif // __DISPLAY_H__