AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
4:2c91c9eccf3a
Child:
5:be598835bab0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/board/LCD.h	Sat Dec 13 10:11:24 2014 +0000
@@ -0,0 +1,23 @@
+#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
\ No newline at end of file