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.
Documentation will be here later.
Usage sample:
Import programapp-board-lcd128
Sample usage of lightweight C12832 LCD library
Revision 7:d73d65360196, committed 2017-01-14
- 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 |
diff -r 5cd32671a837 -r d73d65360196 lcd128lib.cpp --- 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;