RST pin define for ILI9341 display on ESP32 board with rdagger/micropython-ili9341 library #13565
Replies: 1 comment 1 reply
-
You can't without hardware modification, but you can either
The ILI will most likely work without the ability to (hard-)reset it from the program. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hello
I'm trying to get an ILI9341 display attached to an ESP32 board to work with rdagger's ILI9341 library: https://github.com/rdagger/micropython-ili9341
It is this one: https://github.com/witnessmenow/ESP32-Cheap-Yellow-Display/blob/main/OriginalDocumentation/2-Specification/ESP32-2432S028%20Specifications-EN.pdf
The reset pin of the TFT is attached to the EN pin of the ESP32:
Problem is since reset pin of TFT isn't connected to a GPIO I don't know what I have to put as rst pin define in the code:
It doesn't work with
rst=-1
orrst=None
or also not with different other things I tried like rst=Pin(EN) and so on.Can you help me and explain how to set it up right if TFT reset pin is not connected to a GPIO pin but to EN or RESET pin?
Thanks a lot and have a nice day!!
Boris
Beta Was this translation helpful? Give feedback.
All reactions