want your help in interfacing 16*2 lcd with arduino connected with 433MHZ

My dear brothers and sisters.

i am trying for so many times but i can't find a solution. i want your help please if you can.
i am trying to count data packets from the 433 MHz receiver connected with arduino uno. data is transmitted from 433MHz transmitter connected with other arduino uno.

i want to see received data packet on 16*2 LCD. i have done programming for both transmitter and receiver. it is compiling very well attached here. but how to connect lcd with arduino i am in confusion. particular pins like RS, Enable , read/write pin how to connect. please help me in connection of each and every pin of lcd with arduino. and in arduino in which pin i should give received data from receiver i want to know. i am following following diagram in receiver side. you can also check my program of both transmitter and receiver.
if any mistake than please suggest me.

sketch_dec08a.ino (565 Bytes)

receiver.ino (689 Bytes)

This is the initialisation part that I use when I have a LCD

/***************************************
  LCD
***************************************/
#define LCD_D4 7
#define LCD_D5 6
#define LCD_D6 5
#define LCD_D7 4

#define LCD_RS 12
#define LCD_E  11

#define LCD_NUMCOLS 16
#define LCD_NUMROWS 2

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(LCD_RS, LCD_E, LCD_D4, LCD_D5, LCD_D6, LCD_D7);

You can use any pins; adjust to your needs.

dear brother ...i am using #include<VirtualWire.h>. should i nedd to define it? please give me pin diagram of LCD 16*2 with arduino and in which pin of arduino i can give receiver data input.

hello world

I can't really help with the 433 MHz modules, I'm sure you can find some examples. Next adjust the lcd connection if needed.