Mirf.spi = &MirfHardwareSpi;
Mirf.init();
//Set your own address (sender address) using 5 characters
Mirf.setRADDR((byte *)"ABCDE");
Mirf.payload = sizeof(value);
Mirf.channel = 90; //Set the channel used
Mirf.config();
}
void loop()
{
vas = "asc";
Mirf.setTADDR((byte *)"FGHIJ"); //Set the receiver address
value = 32765;//random(255); //0-255 random number
Mirf.send((byte *)"A"); //Send instructions, send random number value
Serial.print("Wait for sending.....");
while (Mirf.isSending()) delay(1); //Until you send successfully, exit the
loop
Serial.print("Send success:");
Serial.println(value);
delay(1000);
}