Hi,
I want to esp32wroom with keypad(4*4) and ILI9341(2.8inch TFT LCD display).
When i connect them one at a time with my esp32 they both work fine.
Below is my pinout connection which worked.
For screen i used following pins of esp32 -> 5,16,17,18,23 (i have given power to display by esp32)
Since both of them use some common pins when i used them separately, so i need to change my pinout diagram for using them together. So I kept the same connection for the screen and changed the connection for the keypad but it printed something gibberish.
Could u help me out to understand which pins i can use for the keypad without changing pins which my screen are using.
I moved your topic to a more appropriate forum category @av-jain.
The Nano ESP32 category you chose is only used for discussions directly related to the Arduino Nano ESP32 board.
In the future, please take the time to pick the forum category that best suits the subject of your question. There is an "About the _____ category" topic at the top of each category that explains its purpose.
I tried runnig it with just keypad.h only but it fails, I think there is no issue with the library, but the issue seems to be like I can't use some pins with my keypad of esp32.
Is there some pins which cannot be used with keypad of esp32
GPIO34 - 39 are input only.
And they have no internal pull-ups.
If Keypad.h uses "INTERNAL_PULLUP" then it would not work - until external pull-ups are placed.
Since the Columns are outputs, you will have to use other GPIO's for those.