LE YOU / func

Dependents:   mas

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Display.h Source File

Display.h

00001 #include "mbed.h"
00002 #include "TextLCD.h"
00003 
00004 #ifndef __DISPLAY_H__
00005 #define __DISPLAY_H__
00006 
00007 class Display
00008 {
00009 private:
00010     TextLCD *__lcd;
00011 public:
00012     Display();
00013     void show(char *buffer0, char *buffer1=NULL);    // Display string in 2 rows.
00014 };
00015 
00016 #endif  // __DISPLAY_H__