Display text on LCD displays (even on multiple ones). Allow to create windows (frames) on display, and to combine them (split, add, duplicate, scroll). See http://mbed.org/users/hlipka/notebook/lcdwindow/ for more information.

Dependents:   Mbell

Files at this revision

API Documentation at this revision

Comitter:
hlipka
Date:
Tue Dec 21 21:38:18 2010 +0000
Parent:
4:aa08e82834dc
Child:
6:7ba288afed38
Commit message:
fixed a memory leak

Changed in this revision

TextLCD.lib Show diff for this revision Revisions of this file
subwindow.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD.lib	Thu Dec 16 21:25:56 2010 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/simon/code/TextLCD/#44f34c09bd37
--- a/subwindow.cpp	Thu Dec 16 21:25:56 2010 +0000
+++ b/subwindow.cpp	Tue Dec 21 21:38:18 2010 +0000
@@ -68,4 +68,5 @@
     for (int i=0;i<_rows;i++) {
         _lcd->writeText(_columnOffset,_rowOffset+i,spaces);
     }
+    delete spaces;
 }
\ No newline at end of file