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

Dependents:   Tarea2

Fork of TextLCD by David Godfrey

Files at this revision

API Documentation at this revision

Comitter:
salondonog
Date:
Wed Oct 16 06:39:30 2013 +0000
Parent:
8:122fc41ed965
Commit message:
incremento exponencial de una variable controlado por un boton y tiempo

Changed in this revision

TextLCD.h Show annotated file Show diff for this revision Revisions of this file
diff -r 122fc41ed965 -r e6111e52dd59 TextLCD.h
--- a/TextLCD.h	Sun Dec 09 09:43:55 2012 +0000
+++ b/TextLCD.h	Wed Oct 16 06:39:30 2013 +0000
@@ -66,6 +66,7 @@
      *
      * @param c The character to write to the display
      */
+    
     int putc(int c);
 
     /** Write a formated string to the LCD
@@ -81,6 +82,8 @@
      * @param column  The horizontal position from the left, indexed from 0
      * @param row     The vertical position from the top, indexed from 0
      */
+    void writeCommand(int command);
+    
     void locate(int column, int row);
 
     /** Clear the screen and locate to 0,0 */
@@ -98,7 +101,7 @@
     int address(int column, int row);
     void character(int column, int row, int c);
     void writeByte(int value);
-    void writeCommand(int command);
+    //void writeCommand(int command);
     void writeData(int data);
 
     DigitalOut _rs, _e;