802.15.4 Digital Output with an LED

Table of Contents

  1. Introduction
  2. Assemble the Parts
  3. Configure the Radio
  4. Wire up the Circuit
  5. Use it!


1) Introduction

Making an LED illuminate is one of the first things many people do when they start learning electronics. We're putting a wireless spin on that achievement by hooking up an LED to one of the XBee's outputs.

XBee radios can be configured for up to 8 digital output pins that can be directly controlled by input pins on a second radio. In this tutorial, we'll walk you through how to program the radio and wire up an LED to an XBee so that you can use it to blink an LED wirelessly.

2) Assemble the Parts


To hook up an LED to an XBee for digital output, you'll need:

  • XBee 802.15.4 Radio
  • LED
  • Breadboard
  • Jumper cables
  • XBee Breakout Board - for your circuit.
  • XBee Explorer USB - for programming your radio.
  • A DC power source, 2.8 - 3.3V - We'll be using two C batteries in a battery holder from Radio Shack.

3) Configure the Radio

If you're not familiar with configuring radios using AT commands, review the steps in the Basic XBee 802.15.4 Chat tutorial, which walks you through configuring CoolTerm to program the radios.

  • Insert the XBee into the Explorer USB and connect it to your computer.
  • Launch CoolTerm and connect to the XBee.
  • Here are the commands we're going to use to configure the radio:
Function Command Parameter
Reset ATRE N/A (resets the radio to its factory settings)
PAN ID ATID 3001 (any address from 0 to FFFE will do)
MY Address ATMY 2
Pin 0 I/O configuration ATD0 5 (digital output, HIGH on startup)
I/O input address ATIA 1 (address of the transmitting radio)
Write to memory ATWR N/A (save the settings to flash memory)


Here's what your terminal session might look like. The user input is in bold:

+++
OK
ATRE
OK
ATID 3001
OK
ATMY 2
OK
ATD0 5
OK
ATIA 1
OK
ATID
3001
ATMY
2
ATD0
5
ATIA
1
ATWR
OK

Note: Remember to issue the ATWR command when you're done so that the settings are saved in the radio's flash memory. If you don't issue this command, the radio will revert to its old settings when it loses power.

4) Wire up the Circuit

  • Place the XBee adapter into the breadboard and wire up the power buses to each other.

  • Connect the VCC terminal of the XBee adapter to the positive rail and the ground terminal to the negative rail.

  • Connect the anode lead of the LED (the longer wire) to I/O pin 0, which is physical pin 20, on the top right side of the XBee. The cathode lead (the shorter wire) gets connected to the ground bus.

  • Insert the XBee into the adapter.

  • And finally, connect the battery pack. Since we set the I/O mode of the pin to be HIGH on start up with the command "ATD0 5", the LED will illuminate as long as there's no radio configured to transmit a low signal to our receiving radio. If you'd like the LED to be off on startup, you can use the command "ATD0 4".

  • Below is a diagram of the circuit. In the photos, we used C batteries. A pair of AA batteries, as shown in this diagram, will work fine.

5) Use it!


Now that you know how to connect an LED to the digital output of an XBee radio, take a look at our input tutorials for what can control the LED. Just be sure that the the transmitter's address is set as the receiver's I/O input address setting (ATIA). The video above shows a button connected to a wireless LED.

Tags: 802.15.4