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?
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