hello,
I have a new 1.3 "oled display but it does not show with the u8g lib the left edge of the picture. Where can I define this picture edge?
Are you sure that's a 1.3"?
Looks more like a 0.96" to me
Use this library instead -
You might need to replace any instance of
swap(x, y);
with
x = x ^ y;
y = x ^ y;
x = x ^ y;
wachhund:
look the picture
Still looks like a 0.96" to me.
spinal:
Use this library instead -
GitHub - wonho-maker/Adafruit_SH1106: Adafruit graphic library for SH1106 dirver lcds.You might need to replace any instance of
swap(x, y);
with
x = x ^ y;
y = x ^ y;
x = x ^ y;
in the file Adafruit_SH1106.cpp replace swap(x, y); by swap(x ^ y,x ^ y); it is right?