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:
2:fdea8ffb3c4f
Parent:
1:17443d6d2740
Child:
3:c0e409cda493
--- a/lcd128lib.cpp	Sat Feb 01 15:37:54 2014 +0000
+++ b/lcd128lib.cpp	Wed Feb 05 00:10:23 2014 +0000
@@ -93,12 +93,21 @@
 // LCD power off
 void lcd128::Power(bool power)
 {
-    // TBD
+    if (!power) {
+        write(0xae, true);
+        write(0xa5, true);        
+    } else {
+        write(0xaf, true);
+        write(0xa4, true);
+    }
 }
 
 void lcd128::InverseMode(bool invert)
 {
-    // TBD
+    if (!invert) 
+        write(0xa6, true);
+    else        
+        write(0xa7, true);
 }
 
 // Update buffer to LCD