AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LCD.h Source File

LCD.h

00001 #ifndef LCD_H
00002 #define LCD_H
00003 
00004 #include "TextLCD.h"
00005 
00006 struct LcdPins{
00007     PinName rs;
00008     PinName e;
00009     PinName p4;
00010     PinName p5;
00011     PinName p6;
00012     PinName p7;    
00013 };
00014 
00015 class LCD : public TextLCD{
00016     
00017     public:
00018     LCD(PinName rs, PinName e, PinName d4, PinName d5, PinName d6, PinName d7, LCDType type = LCD16x2);
00019     void showLogo(const char** logo);
00020     
00021     private:
00022     void load_special_chars();
00023     
00024 };
00025 
00026 
00027 #endif