Modified library to add delay after releasing reset. This is needed because the reset signal is enabling an LDO to provide power to the display and it needs time to turn on.
Fork of Adafruit_GFX by
Diff: Adafruit_SSD1306.h
- Revision:
- 15:77feec1c0684
- Parent:
- 12:7964c2cfdebc
--- a/Adafruit_SSD1306.h Sat Oct 25 20:41:38 2014 +0000 +++ b/Adafruit_SSD1306.h Tue Nov 11 22:02:52 2014 +0000 @@ -208,7 +208,7 @@ // TODO - this will segfault if buffer.size() % 16 != 0 for(x=1; x<sizeof(buff); x++) - buff[x] = buffer[i+x]; + buff[x] = buffer[i+x-1]; mi2c.write(mi2cAddress, buff, sizeof(buff)); } };
