10 years, 1 month ago.

send image over xbee+mbed

i need some help! i use camera LSY201+mbed to take the picture, and i want to send it through xbee pro. is there any clue to do that?

thank you

2 Answers

10 years, 1 month ago.

If you can convert your image to a series of bytes, you can then open a Serial interface for the XBee device and use the standard Serial routines getc() and putc() to send the data. See this page for further information on Serial devices: https://mbed.org/handbook/Serial. You'll probably want some CRC-type checking to make sure the file received is the same as the file sent.

Accepted Answer
10 years ago.

thank you for your answer. i will try to convert the image into bytes first.