TextLCD for GDM2004D based on testbed version based on TextLCD. Changed to library

Dependents:   ZVV_Netz_Ticker

Files at this revision

API Documentation at this revision

Comitter:
18padx08
Date:
Sat Feb 22 22:19:31 2014 +0000
Parent:
0:1fedc42e71ef
Commit message:
changes in putc if screen is full:; clear screen and start writing on row 0 column 0

Changed in this revision

TextLCD.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD.cpp	Fri Nov 02 16:48:25 2012 +0000
+++ b/TextLCD.cpp	Sat Feb 22 22:19:31 2014 +0000
@@ -80,6 +80,7 @@
             _row++;
             if (_row >= rows()) {
                 _row = 0;
+                this->cls();
             }
         }
     }