JC4827W543R OK in Arduino_GFX/QSPI, how to port to Lovyan? #604
Replies: 3 comments 5 replies
-
hi, LovyanGFX does not support QSPI for ESP32 yet, you can still try this PR if you feel experimental though :-) Using the QSPI implementation from that PR, your config file should look like this [edit1] updated the link to PR |
Beta Was this translation helpful? Give feedback.
-
your QSPI display is a NV3041A, not a SH8601Z. the reason what is needed now is the creation of a solving the E (11173) spi_master: spi_master_init_driver(236): invalid core id bus error (display task is running on the wrong core): either change the core affinity setting, or attach the display task to the other core, also make sure all tasks using SPI are on the same core. I have produced the skeleton of a #include <LovyanGFX.hpp>
#include <lgfx_user/LGFX_JC4827W543_4.3inch_ESP32S3.hpp>
LGFX tft;
void setup()
{
tft.init();
}
void loop()
{
tft.clear();
tft.println("Hello World!");
delay(1000);
} |
Beta Was this translation helpful? Give feedback.
-
Hello Friends |
Beta Was this translation helpful? Give feedback.
-
I've just got a JC4827W543C 4.3" 480x272 "cheap black display" (CBD).
https://github.com/profi-max/JC4827W543_4.3inch_ESP32S3_board
It's working OK with Arduino_GFX, config below.
Can this translate to LovyanGFX?
Beta Was this translation helpful? Give feedback.
All reactions