there is any way to connect a lcd keypad to arduino Nano?

I have a dfrobot lcd 16x2 with keypad that is for arduino uno, but I looking for make it work with an arduino nano, anybody know if is possible? anybody have a diagram?

Need a dozen or so "Dupont" female to female loose jumper wires. Look up the pinouts for the shield and the Nano, match pin to pin. You need to connect Ground, Vcc, D4 to D10 and AD0. You do not need to worry about the others, the reset switch on the shield is more of a nuisance than anything.

Paul__B:
Need a dozen or so "Dupont" female to female loose jumper wires. Look up the pinouts for the shield and the Nano, match pin to pin. You need to connect Ground, Vcc, D4 to D10 and AD0. You do not need to worry about the others, the reset switch on the shield is more of a nuisance than anything.

Thanks. I will try to make it work today.

Paul__B:
Need a dozen or so "Dupont" female to female loose jumper wires. Look up the pinouts for the shield and the Nano, match pin to pin. You need to connect Ground, Vcc, D4 to D10 and AD0. You do not need to worry about the others, the reset switch on the shield is more of a than anything.

It works! thanks

// initialize the library with the numbers of the interface pins
/* Pins Nano LCD Keypad
D2 D7
D3 D6
D4 D5
D5 D4
D11 E
D12 RS
A0 A0
*/
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

I'm trying to connect Arduino mini pro to this type of LCD Keypad Shield. I tried to connect it according to the following settings :

Arduino | LCD Keypad

mini pro
D4
D5
D6
D7
D8
D9
A0

LiquidCrystall lcd(8,9,4,5,6,7);

I connected the VCC and GND to a 5V power supply separately from the Arduino.

BUT It didn't work properly and it shows the blinking LCD without any mark of running the compiled code. :o
I must add that the code is working on an Arduino UNO like a charm. :confused:

How to add multiple functions for a button in 4x4 matrix keypad
For example if button 1 is press and hold for more then 2 second that should be G
I am very new to programming, arduino sketch helps me lot to understand , Any help or hint will be appreciated
I Thank all of you in advance