Actually I am a new user of raspberry pi kit so make it clear with basics
closed as too broad by Milliways, Ghanima♦, Steve Robillard♦ Sep 30 '15 at 20:35There are either too many possible answers, or good answers would be too long for this format. Please add details to narrow the answer set or to isolate an issue that can be answered in a few paragraphs.If this question can be reworded to fit the rules in the help center, please edit the question. |
|||||
|
For the hardware connection you can use an USB Xbee explorer. Than you can just communicate with the Xbee module as a serial device. Meaning you can easily use the PySerial module in python. Depending on your desired communication mode (API or AT) the exact approach differs and you should check the xbee documentation. If I remember correcty, in AT mode (limited to point to point) anything on the serial port is just send to the other point (provided that both the modules are configured correctly for AT mode, pointing to eachother). This tutorial might help for API mode (for mesh networking): http://serdmanczyk.github.io/XBeeAPI-PythonArduino-Tutorial/ |
||||
|