Closed ssuraci closed 3 years ago
Hi, Thanks for the detailed report, sorry for the inconveniences you're getting, I'm getting back to maintain this repo from a month being off. Is the display 480 * 320? I saw those values in the log you've send.
CONFIG_LV_HOR_RES_MAX=480
CONFIG_LV_VER_RES_MAX=320
I had the same issue. My confusion came from having already set the display size for the driver not realizing I needed to set it there too.
I had the same issue. My confusion came from having already set the display size for the driver not realizing I needed to set it there too.
OK it was that ! Now it works, thank you both @C47D and @jscott304
Thank you for being patient, I need to document the last repository changes.
What was the solution? Because i have a similar problem. I have already set them CONFIG_LV_HOR_RES_MAX=480 CONFIG_LV_VER_RES_MAX=320 in sdkconfig how i can set display size for the driver
What was the solution? Because i have a similar problem. I have already set them CONFIG_LV_HOR_RES_MAX=480 CONFIG_LV_VER_RES_MAX=320 in sdkconfig how i can set display size for the driver
Change CONFIG_LV_HOR_RES_MAX to:
CONFIG_LV_HOR_RES_MAX=240
How to reproduce:
I've cloned this repo and tried the default example (
Show demo widgets
) onESP32-WROVER-B
ILI9341
withXPT2046
touch (KMRTM28028
)ESP-IDF 4.2 SDK
Issues and I've experienced two issues: 1) build fails (with lots of
undefined symbols
) because of an ordering mismatch inLINK_LIBRARIES
; I've created a PR for that (#243) 2) After successful build, however screen shows mostly garbage as shown in this screenshotI've double checked pin connection (I'm working on a breadboard) and they seem ok. I've tried various configurations (eg: lowering SPI speed, add /remove
MISO
pin for display, etc without success)