mbed TextOLED Library, for a 4-bit LCD based on Winstar WEH000000 series Originl: http://mbed.org/users/simon/libraries/TextLCD/latest 共立電子 デジット の OLEDモジュール 4bitモード用 adapted 12/3/2013 by CJS to make custom character defintions possible

Fork of TextOLED by Suga koubou

Revision:
3:f67d4fc4e388
Parent:
1:df8722660f48
--- a/TextOLED.h	Wed Nov 28 03:32:30 2012 +0000
+++ b/TextOLED.h	Tue Mar 12 15:34:51 2013 +0000
@@ -46,7 +46,9 @@
  */
 class TextOLED : public Stream {
 public:
-
+    void writeCommand(int command);
+    void writeData(int data);
+    void character(int column, int row, int c);
     /** LCD panel format */
     enum LCDType {
         LCD16x2     /**< 16x2 LCD panel (default) */
@@ -102,11 +104,11 @@
     virtual int _getc();
 
     int address(int column, int row);
-    void character(int column, int row, int c);
+    //void character(int column, int row, int c);
     void write4bit(int value);
     void writeByte(int value);
-    void writeCommand(int command);
-    void writeData(int data);
+    //void writeCommand(int command);
+    //void writeData(int data);
 
     DigitalOut _rs, _e;
     BusOut _d;