greiman / SSD1306Ascii

Text only Arduino Library for SSD1306 OLED displays
MIT License
490 stars 120 forks source link

128x64 right side columns #79

Closed rulon closed 3 years ago

rulon commented 3 years ago

see screenshot https://www.screencast.com/t/qJIC8YBjZ8A

SSD1306AsciiAvrI2c oled;
void setup()
{

  //oled.begin(&Adafruit128x32, 0x3C);
  oled.begin(&Adafruit128x64, 0x3C);
  oled.clear();
  oled.setFont(myfont05);
  //oled.invertDisplay(1);
  oled.print("-12.345");

}

I have 2 identical displays (but different color). they show the same defect. can you help me in solving this problem?

thanks, sorry for my english.

rulon commented 3 years ago

I tried this line:

oled.begin(&SH1106_128x64, 0x3C);

it seems it helped