-
Notifications
You must be signed in to change notification settings - Fork 48
My ESP32S3+ili9488 doesn't work and there is no error message #320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
change the following. _HOST = const(1) # SPI2 display.set_backlight(100) display = ili9488.ILI9488(
data_bus=display_bus,
display_width=_WIDTH,
display_height=_HEIGHT,
backlight_pin=_BL,
reset_pin=_RST,
color_space=lv.COLOR_FORMAT.RGB888,
color_byte_order=ili9488.BYTE_ORDER_RGB,
) |
You also don't have a touch driver installed so you will need to do that as well. |
This is the modified code, but the screen still shows no response. No matter what parameters I modify, it cannot be driven properly:
But I used firmware compiled by others, and this screen can be driven normally, so I can ensure that it is not a wiring issue. Although the firmware compiled by others can display normally, there are some other problems that have forced me to try compiling it myself. Here is the screen driver code for this firmware:
What is the name of this firmware:lv_micropython_esps3n16r8_color32.bin |
This is my compilation instruction, it runs normally without any error:
python3 make.py esp32 BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT DISPLAY=ili9488 INDEV=ft6x36
Here is my code:
It runs fine, but there is no display on the screen and no error message
This is the ESP32S3 development board I use:
The text was updated successfully, but these errors were encountered: