XBee Stacker 1

THIS IS THE OLDER VERSION OF THE STACKER. PLEASE SEE THE NEWER VERSION HERE.

This new project creates XBee radio-sized components that can be “stacked” directly underneath the radio. Each Stacker will add additional features like microcontrollers and sensors for devices that already use the XBee’s 20-pin footprint. The goal is to create plug-and-play tools for prototyping new concepts that extend the popular radio’s feature set. A few iterations have created a prototype that works great!

XBee Stacker Arduino

The first design is an Arduino-compatible board the size of an XBee that fits right underneath the radio, creating a Arduino-programmable XBee.

XBee Stacker Arduino 1.1
“XBee Stacker” Arduino/ATMEL board design v1.1 xbee-stacker-1.1-side xbee-stacker-1.1-front xbee-stacker-1.1--with-radio

Features

  • I2C

  • SPI

  • scriptable interruption of:

    • all UART transactions

    • XBee reset

    • XBee pin sleep

  • pass-through of:

    • on/sleep indicator

    • association indicator

    • RSSI indicator

    • commissioning button

  • 18 total digital i/o pins (14 Arduino, 4 XBee)

    • 6 configurable as ADC analog inputs

    • 4 configurable as PWM analog outputs

    • 2 attachable interrupts

  • USB serial (via bootloader firmare) programming, using adaptor cable

  • wireless programming

  • ICSP for firmware access

  • EEPROM

  • multiple UARTs

  • Use of all Arduino libraries, e.g. servo, stepper, displays, capacitive sensing, rfid, sd cards etc.

Pinouts

Bottom of XBee Stacker Arduino:
Base PinPhysical ConnectionFunction
1VCCPower supply
2Arduino D9Arduino software TX / PWM out
3Arduino D8Arduino software RX
4Arduino D12MISO (spi) / digital i/o
5Arduino D2input for resets
6XBee 6passthrough RSSI output
7Arduino A4SCA (i2c) / analog input
8Arduino A2analog input
9Arduino D3input for pin sleep / PWM out
10GNDGND
11Arduino D11MOSI (spi) / digital i/o / PWM out
12Arduino A0analog input
13XBee 13passthrough on/sleep output
14Arduino A3voltage reference / analog input
15XBee 15passthrough assn output
16Arduino A1analog input
17Arduino D10SS (spi) / digital i/o / PWM out
18Arduino D13SCLK (spi) / digital i/o
19Arduino A5SCL (i2c) / analog input
20XBee 20passthrough commissioning
Top of XBee Stacker Arduino
XBee PinPhysical ConnectionFunction
1VCCPower supply
2Arduino D0Arduino RX
3Arduino D1Arduino TX
4
5Arduino D4control for resets
6base 6passthrough RSSI output
7
8
9Arduino D5control for pin sleep
10GNDGND
11
12
13base 13passthrough on/sleep output
14VCCvoltage reference
15base 15passthrough assn output
16
17capacitorArduino Reset (p1) via cap.
18
19
20base 20passthrough commissioning

Wireless Programming (Arduino XBee OTA)

This XBee Stacker can be programmed wirelessly using an Arduino setup first prototyped by me, then greatly improved by Limor Fried and later Shigeru Kobayashi. I’m borrowing it back now, thanks everyone!

Parts

2 – XBee 802.15.4

1 – XBee Explorer USB (or XBIB, or similar)

1 – USB cable

Configure Your XBees

XBees are factory configured for 9600 baud. The Arduino IDE typically sends programs (sketches) at 57600 baud. In addition, Arduino needs to reset the microcontroller on your remote board just before sending over a new sketch. This is cleverly accomplished by linking one of the base station’s hardware handshaking lines briefly to the reset line on the remote Arduino-based microcontroller. Here’s the chain of events:

  1. User clicks the upload button in the Arduino IDE. That’s it! The remaining steps happen automatically…
    • Arduino (technically AVR Dude) opens the local serial port, automatically bringing the RTS line low.
    • The RTS line is connected to pin DIO3 on the local XBee Explorer so that pin it goes low in tandem.
    • The local, base station XBee has pin DIO3 configured as a digital input, and sends that low state to the remote XBee, the one plugged in to the XBee Stacker board.
    • The remote XBee has pin DIO3 configured as a digital output, initially high. When it receives the low state from the base station XBee, its own DIO3 goes low too.
    • DIO3 on the XBee Arduino Stacker is connected to the Arduino microcontroller’s reset line, but via a capacitor so only a burst of the low signal gets through, just enough to reset the microcontroller.
    • The reset microcontroller goes into bootloader mode and accepts your new Arduino sketch over-the-air, then begins running that new sketch. All by itself and without wires!

Label one XBee “Base” and use X-CTU, CoolTerm or even the Arduino IDE’s Serial Monitor to give the “Base” XBee the following settings:

PAN ID 1234 ->  ATID 1234 (I recommend that you choose your own unique PAN ID)
MY ID 1 ->  ATMY 1
DESTINATION HIGH 0 ->  ATDH 0
DESTINATION LOW 2 ->  ATDL 2
BAUD RATE 57,600 ->  ATBD 5
DIGITAL IO 3 input ->   ATD3 3
CHANGE DETECT 3 on ->  ATIC 8

Label the other XBee “Remote” and give it the following settings:

PAN ID: 1234 ->  ATID 1234 (always match the “Base” radio’s PAN ID)
MY ID: 2 ->  ATMY 2
DESTINATION HIGH: 0 ->  ATDH 0
DESTINATION LOW: 1 ->  ATDL 1
BAUD RATE: 57,600 ->  ATBD 5
DIGITAL IO 3: output high ->   ATD3 5
INPUT ADDRESS 1: -> ATIA 1
UART OUTPUT disable ->  ATIU 0

If you are using CoolTerm or another Serial Terminal, use ATWR to save the configuration to your XBee’s firmware.

After you change their baud rate the radios will no longer respond at 9600 baud. Be sure to change the baud rate in X-CTU or CoolTerm to 57600 if you want to check or update their configurations.

Configure Your Hardware

The “Base” XBee’s DIO3 and RTS pins need to be connected together. If you are using an XBee Explorer, simply solder a jumper or wire between these two pins.

Nate at Sparkfun shows the solder jumper you will need.

(If you are using Digi’s XBIB board or a different adapter, find the appropriate pins and then short them together either with some solder or with a bit of wire. Either method is reversible.)

Upload Sketches

Now you can start uploading Arduino sketches wirelessly! Simply:

  1. Connect your “Base” XBee into the modified XBee Explorer USB  (or  your own adapter) connect it to your computer with a USB cable.
  2. Stack your “Remote” XBee onto the XBee Arduino Stacker and provide it with power (a second Explorer or XBIB is an easy way to power it for tests).
  3. Select “Arduino Uno” in the Tools:Board menu and select the correct serial port from the Tools:Serial Port menu.
  4. Open the sketch you’d like to upload.
  5. Click the Upload button!

Should you get an error message, try again in case it’s just a one-time glitch. Next carefully recheck each connection and configuration item, one at a time. It’s very common to get something set wrong the first time you try this so go through it methodically and patience will pay off.

Schematics & Board Layout

XBee_Stacker_Arduino_schematic-1.1

XBee_Stacker_Arduino_board-1.1

Licensing

Not determined although open source hardware is top of my list right now.

2 Comments on “XBee Stacker 1

  1. Very nice project, do you think there is room to fit Humidity, Barometric pressure and Light sensors in the same board ?

    many thanks.

    • Yes, it could probably be done. Although it might make more sense to do sensors as a separate board so that the selection of I/O and of microcontroller could be kept independent.

Leave a Reply to chrigui Cancel reply

Your email address will not be published. Required fields are marked *

*