Volker Fitzek - 2024-11-09

I got some Errors with my OLED display here.
It seems the screen is rotated some pixels to the left. You will see a dirty line on the right side of the display and on the left there are some pixels missing.
You have a SH1106 OLED! They are working a little bit different.

In "displays.h" change
myoled.begin(&Adafruit128x64, I2C_ADDRESS);
to
myoled.begin(&SH1106_128x64, I2C_ADDRESS);
and it's solved!

Greetings, and thanks for this nice project!