Lightweight proportional text library for C12832 LCD. Easy to modify, fast, robust and compact. Nice font, good for text driven menus, messages, etc. Fell free to use and modify in any projects.

Dependents:   app-board-lcd128

Documentation will be here later.

Usage sample:

Import programapp-board-lcd128

Sample usage of lightweight C12832 LCD library

Revision:
3:c0e409cda493
Parent:
2:fdea8ffb3c4f
Child:
4:1bd241d1fad0
--- a/lcd128lib.cpp	Wed Feb 05 00:10:23 2014 +0000
+++ b/lcd128lib.cpp	Wed Feb 05 00:59:14 2014 +0000
@@ -256,6 +256,13 @@
     String(str);
 }
 
+void lcd128::RowCenter(int Y, char* str)
+{
+    Clear(Y);
+    XY((LCD_X/2)-StringWidth(str)/2,Y);
+    String(str);
+}   
+
 void lcd128::Bar(int width, float fill)
 {
     if (width < 2) return;