sheldon holmes / Mbed 2 deprecated Lciis

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LCDs.h Source File

LCDs.h

00001 #ifndef LCDs_H
00002 #define LCDs_H
00003 #include "mbed.h"
00004 #include <string>
00005 
00006 class LCDs{
00007     public:
00008     LCDs();
00009     void lcdinit();
00010     void putString(string);
00011     void lcdReady();
00012     void putData(unsigned char);
00013     void lcdcmd(unsigned char);
00014 }; 
00015 #endif