lexus2k / ssd1306

Driver for SSD1306, SSD1331, SSD1351, IL9163, ILI9341, ST7735, PCD8544, Nokia 5110 displays running on Arduino/ESP32/Linux (Rasperry) platforms
MIT License
660 stars 127 forks source link

ssd1306 driver has some issues with clearing display with standard Wire.h library. #1

Closed lexus2k closed 7 years ago

lexus2k commented 7 years ago

ssd1306 driver has some issues with clearing display with standard Wire.h library. Some garbage remains if to use standard Wire.h library. The issue is easy to fix, commit is being prepared.

lexus2k commented 7 years ago

The fix is committed

lexus2k commented 6 years ago

The issue relates to internal buffer used by Wire library. The actual transmission is done on endTransmission () call. And since buffer is limited in size, you cannot pass more than 128 bytes in one session.