AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

board/LCD.h

Committer:
sillevl
Date:
2014-12-13
Revision:
4:2c91c9eccf3a
Child:
5:be598835bab0

File content as of revision 4:2c91c9eccf3a:

#ifndef LCD_H
#define LCD_H

#include "TextLCD.h"

struct LcdPins{
    PinName rs;
    PinName e;
    PinName p4;
    PinName p5;
    PinName p6;
    PinName p7;    
};

class LCD : public TextLCD{
    
    public:
    LCD(PinName rs, PinName e, PinName d4, PinName d5, PinName d6, PinName d7, LCDType type = LCD16x2);
    
};


#endif