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

Files at this revision

API Documentation at this revision

Comitter:
medvdv
Date:
Sat Jan 14 14:52:41 2017 +0000
Parent:
6:5cd32671a837
Commit message:
New revision

Changed in this revision

lcd128lib.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/lcd128lib.cpp	Tue Oct 07 20:50:41 2014 +0000
+++ b/lcd128lib.cpp	Sat Jan 14 14:52:41 2017 +0000
@@ -34,9 +34,9 @@
 
     // Default font
     font.first_code = 32;
-    font.glyphs_total = sizeof(lcd_font8p_widths) / sizeof(unsigned char);
-    font.widths = lcd_font8p_widths;
-    font.glyphs = lcd_font8p;
+    font.glyphs_total = sizeof(font8widths) / sizeof(unsigned char);
+    font.widths = font8widths;
+    font.glyphs = font8chars;
 
     // Default drawing modes
     invert = false;