C12832 LCD with generic interface

Dependents:   SongsAndLights I2CSong app-shield-all LCD_Games ... more

Fork of C12832_lcd_fork by Chris Styles

This is derived from the great work done Peter Dresche. I simply removed the MCU specific code, and added a pinmap at the top level, so that this component can we wired up any way.

Files at this revision

API Documentation at this revision

Comitter:
sam_grove
Date:
Sun Oct 27 23:16:07 2013 +0000
Parent:
9:e0e646b7fd20
Child:
12:4affce236743
Commit message:
Don't claim stdout by default. Make the user of the library do that.

Changed in this revision

C12832_lcd.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/C12832_lcd.cpp	Fri Oct 25 21:35:30 2013 +0000
+++ b/C12832_lcd.cpp	Sun Oct 27 23:16:07 2013 +0000
@@ -172,7 +172,8 @@
     memset(buffer,0x00,512);  // clear display buffer
     copy_to_lcd();
     auto_up = 1;              // switch on auto update
-    claim(stdout);           // redirekt printf to lcd
+    // dont do this by default. Make the user call
+    //claim(stdout);           // redirekt printf to lcd
     locate(0,0);
     set_font((unsigned char*)Small_7);  // standart font
 }