TextLCD library for controlling various LCD panels based on the HD44780 4-bit interface

Dependents:   LCD_tarea1

Fork of TextLCD by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
jomapi
Date:
Mon Nov 18 19:59:57 2013 +0000
Parent:
7:44f34c09bd37
Commit message:
tarea1

Changed in this revision

TextLCD.h Show annotated file Show diff for this revision Revisions of this file
diff -r 44f34c09bd37 -r 93f7542139b7 TextLCD.h
--- a/TextLCD.h	Sat Dec 04 11:29:57 2010 +0000
+++ b/TextLCD.h	Mon Nov 18 19:59:57 2013 +0000
@@ -42,7 +42,7 @@
  */
 class TextLCD : public Stream {
 public:
-
+    void writeCommand(int command);
     /** LCD panel format */
     enum LCDType {
         LCD16x2     /**< 16x2 LCD panel (default) */
@@ -97,7 +97,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;