lcd16x2

Fork of TextLCD by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
caaruizze
Date:
Sat Dec 07 13:05:02 2013 +0000
Parent:
7:44f34c09bd37
Commit message:
Libreria lcd 16x2 para mostrar la posici?n en el eje X,Y,Z de la tarjeta

Changed in this revision

TextLCD.h Show annotated file Show diff for this revision Revisions of this file
diff -r 44f34c09bd37 -r e5aab3918869 TextLCD.h
--- a/TextLCD.h	Sat Dec 04 11:29:57 2010 +0000
+++ b/TextLCD.h	Sat Dec 07 13:05:02 2013 +0000
@@ -43,12 +43,14 @@
 class TextLCD : public Stream {
 public:
 
+void writeCommand(int command);
+
     /** LCD panel format */
     enum LCDType {
-        LCD16x2     /**< 16x2 LCD panel (default) */
-        , LCD16x2B  /**< 16x2 LCD panel alternate addressing */
-        , LCD20x2   /**< 20x2 LCD panel */
-        , LCD20x4   /**< 20x4 LCD panel */
+         LCD16x2,    /**< 16x2 LCD panel (default) */
+         LCD16x2B,  /**< 16x2 LCD panel alternate addressing */
+         LCD20x2,   /**< 20x2 LCD panel */
+         LCD20x4,   /**< 20x4 LCD panel */
     };
 
     /** Create a TextLCD interface
@@ -97,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);
+    //void writeCommand(int command);
     void writeData(int data);
 
     DigitalOut _rs, _e;