Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
10 years, 9 months 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, 9 months 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.
10 years, 9 months ago.
thank you for your answer. i will try to convert the image into bytes first.