Help with RFM23BP making a wireless on/off switch for some leds

I am hoping someone could share some code that I could use to turn on and off some leds remotely using the rfm23bp modules I bought. I have 2 UNO R3 boards and I do have the latest Radiohead library installed the problem is I am just learning how to program and I have no idea how to connect the modules to the arduino or program them to turn on and off some leds when a button is pushed. Can someone help me with this please I would really appreciate it, thank you.

Is the library that you have this one?
If so, you can begin with the rf22_server and rf22_client doing some tests. If this work, the next step for what you want is not too hard.

Conection Arduino One

Arduino RFM-23B
GND----------GND-\ (ground in)
SDN-/ (shutdown in)
3V3----------VCC (3.3V in)
interrupt 0 pin D2-----------NIRQ (interrupt request out)
SS pin D10----------NSEL (chip select in)
SCK pin D13----------SCK (SPI clock in)
MOSI pin D11----------SDI (SPI Data in)
MISO pin D12----------SDO (SPI data out)
/--GPIO0 (GPIO0 out to control transmitter antenna TX_ANT
--TX_ANT (TX antenna control in)
/--GPIO1 (GPIO1 out to control receiver antenna RX_ANT
--RX_ANT (RX antenna control in)

Conection Arduino Mega

Mega RFM-22B
GND----------GND-\ (ground in)
SDN-/ (shutdown in)
3V3----------VCC (3.3V in)
interrupt 0 pin D2-----------NIRQ (interrupt request out)
SS pin D53----------NSEL (chip select in)
SCK pin D52----------SCK (SPI clock in)
MOSI pin D51----------SDI (SPI Data in)
MISO pin D50----------SDO (SPI data out)
/--GPIO0 (GPIO0 out to control transmitter antenna TX_ANT
--TX_ANT (TX antenna control in)
/--GPIO1 (GPIO1 out to control receiver antenna RX_ANT
--RX_ANT (RX antenna control in)

The code to user: RF_Cliente (Transmitter) RF_Server (receiver)