Replies: 2 comments 1 reply
-
Simplifying it even further - I commented out all the graphics commands except for two lines:
...And I got a mostly black screen with shimmering white vertical lines. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Thanks - I tried that, no joy.
Interestingly, I got a second board from the same Amazon vendor - that
one works for video but the touch screen constantly reports being
touched - even though I am not touching it.
I suspect that this particular vendor just has a pile of QC rejects. A
third board should
be coming in today. Bet it also has some problem.
Will have to take advantage of Amazon's return policy.
- ***@***.***
…On 2021-12-02 21:55, moononournation wrote:
I think it may not ST7796, same form factor red board can be ILI9488.
Try using ILI9488_18bit to check is it work.
--
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub [1], or unsubscribe
[2].
Triage notifications on the go with GitHub Mobile for iOS [3] or
Android [4].
Links:
------
[1]
#97 (reply in thread)
[2]
https://github.com/notifications/unsubscribe-auth/AJLGUGXU74X6JJSLAFBNAATUPBLT5ANCNFSM5I5Q32TQ
[3]
https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675
[4]
https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I am trying to port a project from a 2.8 inch display to a 4-incher. The processor card is a Teensy 4.1. My interface card connects
SDO - aka "MISO" to the pin named D12 on the Teensy. "MOSI" is connected to D11. SCK is connected to pin D13.
Here's the Amazon link to the display: https://www.amazon.com/gp/product/B09BZZXYJD
As a first step, I am trying the "hello world" example program. It DOES work on the 2.8 inch display with the following declarations:
Arduino_DataBus bus = new Arduino_HWSPI(9 / DC /, 10 / CS */);
Arduino_GFX gfx = new Arduino_ILI9341(bus, TFT_RST, 0 / rotation /, false / IPS */);
However, it does NOT work on the four incher:
Arduino_DataBus bus = new Arduino_HWSPI(9 / DC /, 10 / CS */);
Arduino_GFX gfx = new Arduino_ST7796(bus, -1 / RST /, 0 / rotation */);
The display does light up, and there are random shimmering lines. Blocks of lines are coming and going more or less when the hello world is trying to display its blocks of text.
The display RST is not controlled by the CPU - there are a couple of caps to give it a "reset pulse" on power up.
Can anybody supply a clue?
Beta Was this translation helpful? Give feedback.
All reactions