Chatting with the nRF24L01

Hey,

I'm trying to use the nRF24L01 to send messages that are 16 bytes long from one computer to the other. I have the receiving end figured out, but I cannot figure out how to get serial commands from the serial monitor to the nRF24L01 to send out. How can I send serial text from a computer, to a Arduino, to a nRF24L01, to another nRF24L01?

How can I send serial text from a computer, to a Arduino

Using what application? The Serial Monitor is one option.

to a nRF24L01,

Using the appropriate methods of that class.

to another nRF24L01?

That's the radio's responsibility.

What is the piece of code that could take the serial data, put it in like a string, then tell the nRF module to transmit the string?

You said you have the receiving end figured out, which also means you know how to send things...so what is your problem? Just take what you get from your computer
if(Serial.available() >0)nRF24L01.write(Serial.read()); and tell the nRF24L01 to send it