LCD display

Dependents:   LAB05_Oppgave4

Fork of LCDLib by Rune Langoy

Revision:
3:d2f70de20dbe
Parent:
2:f0a520c95838
Child:
4:264d9b06bf60
--- a/TextLCD.h	Sun Sep 20 10:42:51 2015 +0000
+++ b/TextLCD.h	Sun Sep 20 11:06:45 2015 +0000
@@ -11,7 +11,8 @@
 public:
 
  //Enables the LCD Module for use 2-Lines...
-     TextLCD();
+     TextLCD(PinName rs,PinName rw, PinName e, PinName d4, PinName d5,
+                 PinName d6, PinName d7) ;
     // EN = 1 for L-to-H /
     // EN = 0 for H-to-L
     // Causes the LCD-module to read the data on the data input pins
@@ -40,6 +41,11 @@
     // Stream implementation functions
     virtual int _putc(int value);
     virtual int _getc();
+    
+    DigitalOut LCD_RS,LCD_RW,LCD_EN;
+    DigitalOut LCD_D4,LCD_D5,LCD_D6,LCD_D7;
+
+    
 };
 
 #endif /* LCD_H_ */
\ No newline at end of file