A driver code library for Text LCD panels using the 4-bit HD44780 lcd display driver.

Dependents:   pid-TAREA3

Fork of TextLCD by David Godfrey

Files at this revision

API Documentation at this revision

Comitter:
Wilmar87
Date:
Fri Dec 13 03:52:52 2013 +0000
Parent:
8:122fc41ed965
Commit message:
yes;

Changed in this revision

TextLCD.h Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD.h	Sun Dec 09 09:43:55 2012 +0000
+++ b/TextLCD.h	Fri Dec 13 03:52:52 2013 +0000
@@ -42,6 +42,7 @@
  */
 class TextLCD : public Stream {
 public:
+void writeCommand(int command); //CAMBIO EN LA LIBRERIA PARA USARSE EN CÓDIGO C
 
     /** LCD panel format */
     enum LCDType {
@@ -98,7 +99,7 @@
     int address(int column, int row);
     void character(int column, int row, int c);
     void writeByte(int value);
-    void writeCommand(int command);
+    //id writeCommand(int command);
     void writeData(int data);
 
     DigitalOut _rs, _e;