Wireless Communication

Wireless Communication

Preface

A mobile robot shouldn't be hindered by power cables and data connections. So, when making a mobile robot, it is often necessary to communicate with it wirelessly.

Many forms of wireless communication are still, essentially, serial. So, converting a project from being tethered by a USB to being completely wireless is simply a matter of getting a good battery, and the right wireless accessories (you'll need two ends).

Jenn Case Wed, 02/06/2013 - 13:28

XBee Configuration

XBee Configuration

Introduction

XBees are one form of wireless communication. They use radio frequency to communicate over long distances (from 100m to over 1500m.) They do have issues transmitting through walls and through obstacles, but that is common to many types of wireless communication.

There are two main types of XBees: Series 1 and Series 2 . Series 1 XBees do not say that they are Series 1 on them, but that is one way to determine that they are Series 1. Series 1 is generally easier to use and configure. It is also faster than Series 2. The advantage of the Series 2 XBees is that there is a lower current draw.

This tutorial will go through the configuration of Series 1 XBees.

Configuring the XBees

The figure below shows what a typical XBee looks like.

Before getting XBees to communicate with each other, it may be necessary to configure. This tells the XBees which channel they will send or receive data from and which XBee they are communicating with. Configuring can be done easily with the use of a software called X-CTU . The X-CTU program can be found under Diagnostics, Utilities and MIBs .

There are two diff erent boards that can be used for confi guration. The XBee Explorer USB board is available through  Sparkfun .  The  SainSmart XBee Shield module , as seen below, can also be used to con figure XBees with the use of an Arduino. 

Note: If the XBee Shield module is being used, put your Arduino in reset, which means run a wire from reset to ground as seen below, and make sure the jumpers on the shield are set to USB. Put the shield on the Arduino.

Plug either the Arduino and shield or the Explorer board into the computer and then start the X-CTU program. The program should be able to open up and display a screen similar to the one below.

Notice how it recognized the product being used. It should be noted that this is the PC Settings tab. In this tab, there should be a Test/Query button on the right. An example of the screen print out can be seen below.

From this screen, the Serial Number High (SH) and Serial Number Low (SL) can be found for the Arduino. This can be done by breaking apart the Serial Number. Each SH and SL can be eight hexadecimal digits long; however, the SL will be eight long and the SH can be shorter. For example, the above figure shows a SH of 13A200 and a SL of 404AC735.

Go to the Modem Con guration tab and select the Download new versions button. Wait for the download to fi nish and then select the Read button. This will read some of the data in the XBee, as seen below. If the XBee has not been con figured before, it will not read the SH or SL from it, so that information must be obtained from the Test/Query screen. Repeat these steps with the other XBee and make sure to know which SL and SH belong to each XBee.

Now configuration can begin:

  1. Select one of the XBees, which will now be referred to as XBee 1, and plug it back into the board; the other XBee will now be referred to as XBee 2.
  2. Read XBee 1 to make sure it has the expected SL and SH values. This should also set the Modem to the Modem of the XBee.
  3. Change the Destination Address High (DH) of XBee 1 to the SH of XBee 2.
  4. Change the Destination Address Low (DL) of XBee 1 to the SL of XBee 2.
  5. This is not necessary to change, but in order to avoid interference with other XBees, it would be prudent to change the Pan ID (ID) of the XBee as well to a number below FFFF, such as 2222.
  6. Select Write after all the changes have been made.
  7. Unplug XBee 1 and plug in XBee 2.
  8. Read XBee 2 to make sure it has the expected SL and SH values. This should also set the Modem to the Modem of the XBee.
  9. Change the DH of XBee 2 to the SH of XBee 1.
  10. Change the DL of XBee 2 to the SL of XBee 1.
  11. If you changed the ID of the XBee 1, make sure you change the ID of XBee 2 to the same value.
  12. Select Write after all the changes have been made.

The following figure gives a graphical representation of this.

The two XBees should now be configured to communicate with each other. This means that coding to connect the two may now be done and the wireless communication is ready to go.

Jenn Case Wed, 02/06/2013 - 13:10

XBee Communication

XBee Communication

Introduction

XBees are a very simple way to enable wireless communication. Using wireless communication will expand the possibilities of a project, and is practically a necessity for a robot.

Two types of XBee communication that will be discussed are Arduino-Arduino communication and Arduino-Computer communication.

XBees cannot both send and receive data at the same time. If caution it taken, data should not be lost due to this fact.

Arduino-Arduino Communication

If the Arduino shield is being used, the jumpers should be set to USB mode when programming the Arduinos and then should be set to XBee mode when the programs are run.

Coding with XBees is simple because they can simply be coded using the familiar serial code.

To send from an XBee:

Serial.print("Send to other XBee");

To receive from an XBee:

int incomingByte;

if (Serial.available() > 0) { incomingByte = Serial.read(); Serial.print(incomingByte); }

Arduino-Computer Communication

The above code for sending and receiving data from an XBee is valid for the code on the Arduino.

If an Arduino with a shield is used to connect to the computer, the code put on that Arduino is a simple blank sketch:

void setup() {}

void loop() {}

The blank sketch bypasses the microcontroller and allows the data to flow through to the computer. For the XBee shield that is connected to the computer, the jumpers should be placed on USB mode since the data is going to be sent through the USB to the computer.

The data coming through can then be seen in the serial monitor. The data sent from the serial monitor will then be sent through the XBee to the other one on the Arduino.

If the serial monitor is not an attractive option, python code can also be used to handle the serial coming through. Creating a GUI may be a best option to handle the serial coming into the computer.

Jenn Case Wed, 02/06/2013 - 13:11