--- Adafruit_CharLCD.py.org     2012-11-07 15:14:45.000000000 +0100
+++ Adafruit_CharLCD.py 2012-11-09 14:16:01.724124462 +0100
@@ -200,6 +200,13 @@
        self.write4bits(self.LCD_ENTRYMODESET | self.displaymode)


+    def createChar(self, location, charmap):
+        location &= 0x7
+        self.write4bits(self.LCD_SETCGRAMADDR | (location << 3), False)
+        for i in range(8):
+            self.write4bits(charmap[i], True)
+
+
     def write4bits(self, bits, char_mode=False):
         """ Send command to LCD """

