Hi all,can anybody help me about code for send image via RF transmitter using arduino uno or mega
and the image store in SD card shield or memory interne in arduino
Hi all,can anybody help me about code for send image via RF transmitter using arduino uno or mega
and the image store in SD card shield or memory interne in arduino
What kind of RF transceiver are you using? If it's a simple RX TX interface you just need to load the image as a byte array and send it byte-per-byte, then reconstruct the image on the receiver.
The arduino code would be something like this:
[code]
byte[] imageData;
imageData = loadBytes("your imageName.bmp");
for(int i=0; I<imageData.length;I++){
Serial.print(imageData[I]);
}
[\code]
the module is RF-ASK-MODULE-WIRELESS-TRANSMITTER-RECEIVER-PAIR-433
the module is RF-ASK-MODULE-WIRELESS-TRANSMITTER-RECEIVER-PAIR-433