ILI9225 with an ESP8266 - circles have missing pixels. Weird right? #2436
Unanswered
klifn
asked this question in
Q&A - General
Replies: 1 comment 3 replies
-
It looks like the drawPixel function is not working. I have connected an ESP8266 to an ILI9225 SPI display and it works correctly. Latest library and board package used. Post more details of your hardware and software. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm encountering some odd rendering when using the 2.5.22 version of TFT_eSPI with an ILI9225 display and an ESP8266. I've included an example picture below. Text, vertical and horizontal lines all work fine. Non vertical lines seem to exhibit some of the same missing pixels. A line at 45 degrees isn't drawn at all. I have 2 identical displays and it does the same with both of them. I just finished a project about a week ago that uses an ILI9341 display and an ESP32 and that works perfectly (it's on version 2.5.0 of TFT_eSPI).
I tried reverting back to 2.5.0 for the ILI9225 project but it behaves the same.
I'm just using the regular circle drawing call, not the smooth version.
`
tft.drawCircle(50,50,50,TFT_WHITE);
tft.drawCircle(75,150,35,TFT_CYAN);
`
Anyone have any ideas as what might be going on here?
Thanks,
Klif
Beta Was this translation helpful? Give feedback.
All reactions