arduino wireless communication
void loop()
{
// Create our message
const char *msg = "Hello World";
// Send our message
radio.send((uint8_t*)msg, strlen(msg));
// Wait until the data has been sent
radio.waitPacketSent();
// Delay since we dont want to send a trillion packets
delay(1000);
// Also inform the serial port that we are done!
Serial.println("Data Sent");
}