Dependents:
ZVV_Netz_Ticker
Revision 1:b0b747a8cb5b, committed 2014-02-22
- 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
diff -r 1fedc42e71ef -r b0b747a8cb5b TextLCD.cpp
--- 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();
}
}
}