Waveshare ESP32-S3-Touch-LCD-4.3 #409
Replies: 5 comments 7 replies
-
Is it display ok for the above setting? If not, you may refer to the display datasheet values. |
Beta Was this translation helpful? Give feedback.
-
Hi Moononournation, I thing I might start a Github repository devoted to this particular board. Also, thanks for developing Arduino_gfx! |
Beta Was this translation helpful? Give feedback.
-
Hi Amish! I know tft_spi doesn't support 16 parallel display, otherwise I wouldn't have problems to port my code from the Lilygo t-Display on the waveshare board. What is it exactly to manage to run ? If, as said here in the README : This library start rewrite from Adafruit_GFX, LovyanGFX, TFT_eSPI, Ucglib, and more... Then that ' s all I am after ! the only thing is I don t want to use Panel and lvgl. So do you have code that draw and displays text on the screen ?! cheers, |
Beta Was this translation helpful? Give feedback.
-
Hi Amish!
Did you add it to a place I have access to ?
Ps: my daughter and ex-wife live in Edinburgh.
I lived there for 3 years but now I am in Switzerland
Le dim. 18 févr. 2024, 12:43, Hamish West ***@***.***> a
écrit :
… Hi Jean-Paul,
Ah, I understand now!
Yes, I added an Arduino_GFX "Hello World" example yesterday.
It includes touch and expander pins as well, if you want them.
Regards,
Hamish
(C'est un prénom écossais)
—
Reply to this email directly, view it on GitHub
<#409 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEOF6ZPPFHKZXQWZTV72T53YUHSMLAVCNFSM6AAAAABBESOS5SVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DKMBWG4YDG>
.
You are receiving this because you are subscribed to this thread.Message
ID: <moononournation/Arduino_GFX/repo-discussions/409/comments/8506703@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
Thanks mate, you made my day!
Le dim. 18 févr. 2024, 17:39, Hamish West ***@***.***> a
écrit :
… Arduino_gfx example
<https://github.com/Westcott1/Waveshare-ESP32-S3-Touch-LCD-4.3-and-Arduino/tree/main/Examples/Arduino_GFX>
Lovely city Edinburgh.
—
Reply to this email directly, view it on GitHub
<#409 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEOF6ZO2QPADKFX3EJOCRZDYUIVF7AVCNFSM6AAAAABBESOS5SVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DKMBYGI4DG>
.
You are receiving this because you are subscribed to this thread.Message
ID: <moononournation/Arduino_GFX/repo-discussions/409/comments/8508283@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
Hello,
I've managed to get one of these working.
Even the LvglWidgets example.
No idea what to set the xsync_xxxx values to!
Also no idea what the backlight pin and touch pins are.
https://www.waveshare.com/wiki/ESP32-S3-Touch-LCD-4.3
#define GFX_DEV_DEVICE WAVESHARE_ESP32_S3_TFT_4_3
//define GFX_BL 2
Arduino_ESP32RGBPanel rgbpanel = new Arduino_ESP32RGBPanel(
5 / DE /,
3 / VSYNC /,
46 / HSYNC /,
7 / PCLK /,
14 / B0 /,
38 / B1 /,
18 / B2 /,
17 / B3 /,
10 / B4 /,
39 / G0 /,
0 / G1 /,
45 / G2 /,
48 / G3 /,
47 / G4 /,
21 / G5 /,
1 / R0 /,
2 / R1 /,
42 / R2 /,
41 / R3 /,
40 / R4 /,
0 / hsync_polarity /, 40 / hsync_front_porch /, 48 / hsync_pulse_width /, 88 / hsync_back_porch /,
0 / vsync_polarity /, 13 / vsync_front_porch /, 3 / vsync_pulse_width /, 32 / vsync_back_porch /,
1 / pclk_active_neg /, 16000000 / prefer_speed */);
Arduino_RGB_Display gfx = new Arduino_RGB_Display(
800 / width /, 480 / height /, rgbpanel, 0 / rotation /, true / auto_flush */);
Beta Was this translation helpful? Give feedback.
All reactions