Replies: 9 comments 15 replies
-
Please consider adding support for RM68120 display. Or is it the same as NT35510? I see a few very similar 800x480 displays with either controller. |
Beta Was this translation helpful? Give feedback.
-
Hi, i also got this display, working great.
|
Beta Was this translation helpful? Give feedback.
-
For those interested in this board you should be aware:
- great value for money and very good quality (makerfabs have a wiki)
- the native USB pins are not available without reworking the board.
- the touch panel interrupt pin is not connected as the 0ohm resistor shown
in the schematic connecting int>gpio18 is not fitted. A solder bridge will
do the job but board rework is then required as gpio18 is shared.
…On Sun, Nov 27, 2022 at 5:49 PM PowerTcX ***@***.***> wrote:
Hi, i also got this display, working great.
How to set display rotation for RGBP ?
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 */
);
// option 1:
// ST7262 IPS LCD 800x480
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 */, 14000000 /* prefer_speed */, true /* auto_flush */);
#endif /* !defined(DISPLAY_DEV_KIT) */
—
Reply to this email directly, view it on GitHub
<#225 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKUUVMNLW4XB3S356G5E2W3WKONMHANCNFSM6AAAAAASDS55W4>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
Compilation error: no matching function for call to 'Arduino_ESP32RGBPanel::Arduino_ESP32RGBPanel(int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)' since I updated the library. works fine with older version (E.g. 1.2.8) but not anymore with newer versions :-( |
Beta Was this translation helpful? Give feedback.
-
Hello! I am using the above configs (the updated version) and I get an out of memory error from calling esp_lcd_new_rgb_panel.. 800x480 pixels |
Beta Was this translation helpful? Give feedback.
-
I've tried PDQgrapicstest for this board which seems to be running. The serial output reports the timing for each test, but the screen does not actually display the tests. the screen just cycles through various solid colors. I also tried a very minimalist program that just picked random colors to fill the screen. again the serial monitor reports that code is functioning as expected but the screen just cycles though the same basic colors. any ideas on what might be wrong? |
Beta Was this translation helpful? Give feedback.
-
Recent purchase of "( From AliExprss: "ESP32-S3 HMI 8M PSRAM 16M Flash Arduino LVGL WIFI&Bluetooth 7" 800x480 Smart Display Screen 7.0 inch RGB LCD TFT module - Capacitive Touch" - which uses the JC8048B070N TFT LCD module.). At power up the module ran its installed demo application just fine - looked great. I followed the "Getting Started" instructions provided with the module: PROBLEM: I have not been able to run any Example or demo programs. Most fail compile with numerous errors. The "Clock" demo compiles but nothing is displayed. I'm most likely overlooking something obvious... Can you point me at a complete application/demo that is known to compile and run that was built using the Arduino IDE? Any help you can provide would be greatly appreciated. -George |
Beta Was this translation helpful? Give feedback.
-
@moononournation, thank you very much for this excellent and versatile library! I successfully tested with this display. Selected board ESP32S3 DevModule in Arduino IDE, with PSRAM: OPI PSRAM. I reported some results in https://forum.arduino.cc/t/lvgl-desperation/1187605/9. May I suggest to add board selection and specific board parameter(s) to the wiki Dev Device Declaration, as comment? |
Beta Was this translation helpful? Give feedback.
-
For all that uses this Display I have something for you :) I designed a wall mount case for 3D Printing. Not sure if here is a good place to put the link but anyway there you go: |
Beta Was this translation helpful? Give feedback.
-
https://www.aliexpress.com/item/1005004788147691.html
I just got this new board and combined with your terrific library it's awesome!
Beta Was this translation helpful? Give feedback.
All reactions