support for ILI9485 needed.. #2336
Unanswered
yo2ldk
asked this question in
New processor/display support or capability request
Replies: 1 comment 1 reply
-
That display has an RGB interface which requires a full frame buffer to be continuously sent to the display. That interface type is not supported by the library and support is unlikely to be added in the near future. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Bodmer,
I use with success your excellent library, with different TFT display's
Now I have a new one, and I need to use it in my radio project, it help me because is a bit larger, 4.3"
so, please if you can add drivers on library for this or is one equivalent ( I try it some but not work ) :
HMI 8M PSRAM 16M Smart Display Screen ,
ILI9485 driver, it have on it ESP32 S3,
It have driver just on Arduino GFX and thi si for him:
` #include <Arduino_GFX_Library.h>
#define LCD_PWR_PIN 2
or
#define TFT_BL 2
#define GFX_BL DF_GFX_BL
#if defined(DISPLAY_DEV_KIT)
Arduino_GFX *gfx = create_default_Arduino_GFX();
#else
Arduino_ESP32RGBPanel bus = new Arduino_ESP32RGBPanel(
GFX_NOT_DEFINED / CS /, GFX_NOT_DEFINED / SCK /, GFX_NOT_DEFINED / SDA /,
40 / DE /, 41 / VSYNC /, 39 / HSYNC /, 42 / PCLK /,
45 / R0 /, 48 / R1 /, 47 / R2 /, 21 / R3 /, 14 / R4 /,
5 / G0 /, 6 / G1 /, 7 / G2 /, 15 / G3 /, 16 / G4 /, 4 / G5 /,
8 / B0 /, 3 / B1 /, 46 / B2 /, 9 / B3 /, 1 / B4 */
);
Arduino_RPi_DPI_RGBPanel gfx = new Arduino_RPi_DPI_RGBPanel(
bus,
800 / width /, 0 / hsync_polarity /, 8 / hsync_front_porch /, 4 / hsync_pulse_width /, 8 / hsync_back_porch /,
480 / height /, 0 / vsync_polarity /, 8 / vsync_front_porch /, 4 / vsync_pulse_width /, 8 / vsync_back_porch /,
1 / pclk_active_neg /, 16000000 / prefer_speed /, true / auto_flush /);
#endif / !defined(DISPLAY_DEV_KIT) /
/******************************************************************************
******************************************************************************/
ESP32-8048S043 Specifications-EN.pdf
Thank you in advance !!
Beta Was this translation helpful? Give feedback.
All reactions