Added new createChar() method. Added new clear() method. Added new scrollDisplayLeft() method. Added new scrollDisplayRight() method. Added support for Arduino alike Custom Character, scroll and clear command interfaces.

Dependents:   mbed_lcd_custom MMA8451_ACELEROMETRO_copy

Fork of TextLCD by The Electronics Nuke

Revision:
33:ec30a01baf4a
Parent:
32:0a5271dd8a9c
--- a/TextLCD.h	Thu Jul 03 20:01:44 2014 +0000
+++ b/TextLCD.h	Thu Jul 03 21:04:33 2014 +0000
@@ -283,10 +283,18 @@
      * @param column  The horizontal position from the left, indexed from 0
      * @param row     The vertical position from the top, indexed from 0
      */
-    void setAddress(int column, int row);        
+    void setCursor(int column, int row);        
 
 
     void createChar(int addrx, char *ptrx);
+    
+    
+    void clear();
+    
+    
+    void scrollDisplayLeft();
+    
+    void scrollDisplayRight();
         
         /** Clear the screen and locate to 0,0 */
     void cls();