Blurry/tall text using AliExpress 240x128 3.37" SSD1322 OLED #2308
-
Hey, I set up a few of the U8G2 examples using an 3.37" OLED using both the the Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 12 replies
-
Pictures are a tad poor. Let me know if I should take new ones. |
Beta Was this translation helpful? Give feedback.
-
Is the mentioned effect visible on your images? At least I don't see an issue. So yes, If you could mark the unwanted effect on some better picture, it would be more clear. |
Beta Was this translation helpful? Give feedback.
-
hmmm now I am even more interested to see the original display. I see the following root problems:
|
Beta Was this translation helpful? Give feedback.
-
Issue: #2310 |
Beta Was this translation helpful? Give feedback.
So, good news, I believe I've fixed my problem.
It appears to be a problem with the setup (init seq) after all, specifically an issue with the 0xA0 register (controls re-map and com line modes, evidently). I converted the existing line
U8X8_CAA(0xa0, 0x36, 0x11)
to binaryU8X8_CAA(0xa0, 0b000110110, 0b00010001)
, and tried flipping the bits (as detailed in the datasheet) one by one to observe the effects.The effects are roughly as follows:
My end result was
U8X8_CAA(0xa0, 0b000110110, 0b00000001)
, and it yields nice crisp text.…