control PID la libreria TextLCD se modifico en las lineas 45 y 101 de lo contrario compila con error

Dependents:   controlPID

Fork of TextLCD by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
tony63
Date:
Thu Oct 10 21:43:27 2013 +0000
Parent:
7:44f34c09bd37
Child:
9:31946c9940c3
Commit message:
se modifico para que pueda recibir comandos generales del modulo LCD; la funcion command quedo publica

Changed in this revision

TextLCD.h Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD.h	Sat Dec 04 11:29:57 2010 +0000
+++ b/TextLCD.h	Thu Oct 10 21:43:27 2013 +0000
@@ -42,7 +42,7 @@
  */
 class TextLCD : public Stream {
 public:
-
+void writeCommand(int command); //quedo publica ya la podemos usar en el codigo C
     /** LCD panel format */
     enum LCDType {
         LCD16x2     /**< 16x2 LCD panel (default) */
@@ -87,7 +87,8 @@
 
     int rows();
     int columns();
-
+    
+   
 protected:
 
     // Stream implementation functions
@@ -97,7 +98,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);  esta se documenta para poder poner comandos quedo publica
     void writeData(int data);
 
     DigitalOut _rs, _e;