i2c version has an offset due to wrong copy of temp buffer to display buffer, fixed in Adafruit_SSD1306.h

Dependents:   ezSBC_MPU9250 Test_OLED_Display untodoenuno OledI2CDisplay ... more

Fork of Adafruit_GFX by Neal Horman

Revision:
14:edb3c36aa1a7
Parent:
9:ddb97c9850a2
--- a/Adafruit_GFX.cpp	Tue Oct 21 02:30:58 2014 +0000
+++ b/Adafruit_GFX.cpp	Sat Oct 25 20:41:38 2014 +0000
@@ -349,7 +349,6 @@
         drawFastHLine(a, y, b-a+1, color);
     }
 }
-#endif
 
 void Adafruit_GFX::drawBitmap(int16_t x, int16_t y, const uint8_t *bitmap, int16_t w, int16_t h, uint16_t color)
 {
@@ -362,6 +361,7 @@
         }
     }
 }
+#endif
 
 size_t Adafruit_GFX::writeChar(uint8_t c)
 {