Based on Simon TextLCD with few modifications

Fork of TextLCD by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
mmdonatti
Date:
Thu May 03 19:59:11 2018 +0000
Parent:
8:308d188a2d3a
Commit message:
minor modifications

Changed in this revision

TextLCD.h Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD.h	Thu Jan 02 21:07:01 2014 +0000
+++ b/TextLCD.h	Thu May 03 19:59:11 2018 +0000
@@ -87,6 +87,8 @@
 
     int rows();
     int columns();
+    
+    void character(int column, int row, int c);
 
 protected:
 
@@ -95,7 +97,7 @@
     virtual int _getc();
 
     int address(int column, int row);
-    void character(int column, int row, int c);
+    
     void writeByte(int value);
     void writeCommand(int command);
     void writeData(int data);