Driver for the Seeedstudio RGB OLED module for the xadow M0

Files at this revision

API Documentation at this revision

Comitter:
messi1
Date:
Wed Nov 18 23:32:15 2015 +0000
Parent:
11:162aa3e801df
Child:
13:8dd215952d76
Commit message:
Bugfixing and improveing of the template based SGL class

Changed in this revision

src/SGL.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/src/SGL.cpp	Wed Nov 18 09:28:05 2015 +0000
+++ b/src/SGL.cpp	Wed Nov 18 23:32:15 2015 +0000
@@ -277,7 +277,7 @@
         
     while(*string)
     {
-        drawChar(*string, x, y, zoom, color);
+        drawChar(*string, x, y, color, zoom);
         *string++;
         x += fontSpace*zoom;
         if(x >= _width-1)