This is a retired product.
The ATmega328P on the Arduino Fio comes preburned with a bootloader that allows you to upload new code to it without the use of an external hardware programmer. It communicates using the original STK500 protocol (reference, C header files).
There are two ways you can upload new sketches to the Arduino Fio: you can use an FTDI USB-to-serial cable, or USB-to-serial adaptor board; or you can program it wirelessly, over a pair of XBee radios. If you're new to the XBee radios, it's helpful to know a bit about them before attempting the wireless programming. This introduction may help.
You can also bypass the bootloader and program the ATmega328P with an external programmer; see these instructions for details.
On this page... (hide)
LIke all Arduino boards, the Arduino Fio can be programmed with the Arduino software (download). If you're new to Arduino, see the Getting Started Guide , the reference and tutorials.
The Fio does not have a built-in USB-to-serial adaptor, so if you're going to program it over USB, you'll need an adapter. Either of these will work well:
To program the Fio using either FTDI cable or an adaptor with the same pin configuration, attach a row of male pin headers to the cable or adaptor like so:
Then connect the headers to the FTDI pins on the Fio:
Using the adaptor to program a Fio |
Using the FTDI cable to program a Fio |
These are alternative ways to program a Fio with a L-shaped plug and low-profile sockets:
Using a L-shaped plug and soldered low-profile sockets to program a Fio |
Using a L-shaped plug without soldered low-profile sockets to program a Fio |
If your headers don't fit snugly in the holes (and most won't), you should hold the connector firmly so that the metal of the pins touches the metal of the holes while you're programming.
When your cable is connected to the Fio, open the Arduino programming environment, choose Fio from the Tools-->Board menu. Then choose your serial port from the serial port menu, and you're ready to program If you're using the FTDI adaptor, you'll see the TX and RX lights flicker. You won't see any visible sign on the Fio, but you will see the following in the IDE when you've successfully uploaded code:
NOTE: Please remove a XBee modem from a Fio board while uploading sketches.
This tutorial borrows from Xbee Adapter - wireless Arduino programming by Limor Fried
In order to upload sketches wirelessly using XBee radios, you'll need the following:
On your USB-to-serial adaptor, solder in a tiny jumper between the RTS pin and D3 as shown here:
Modified XBee Explorer USB |
Modified Adafruit XBee Adapter Kit |
In order to program the Fio wirelessly, you need to configure two XBee radios, one for the Fio and one to connect to the programming computer serially. The latter will connect to your computer using the adapters mentioned in the last step. Once you've done that, you'll program the Fio using the radio link just like a normal Arduino USB-to-serial link.
The settings for the two radios are as follows:
Parameter |
Programming Radio |
Fio Radio |
BD |
4 (Atmega168) or 6 (Atmega328P) |
4 (Atmega168) or 6 (Atmega328P) |
ID |
user's preference (0000 to FFFF) |
user's preference (0000 to FFFF) |
MY |
User's preference, e.g. 0000 |
user's preference, e.g. 0001 |
DL |
FFFF or Fio's MY value |
programmer's MY value |
D3 |
3 |
5 |
IC |
8 |
not set |
RR |
3 |
not set |
IU |
not set |
0 |
IA |
not set |
FFFF |
RO |
10 |
10 |
Note: If you set the programmer's destination address (DL) to FFFF, it will re-program all Fios in its PAN ID. To program one Fio at a time wirelessly while others are on, set the programmer's DL to that Fio's MY address.
If you're running Windows, you have to make a slight change to the driver preferences. In the Device Manager, select the USB COM port. Then right click and select Properties. Click on the Port Settings tab, and click on Advanced..., then make Set RTS On Close is selected and click OK to apply settings.
You can configure your radios using a terminal application, or using X-CTU on Windows, or you can use the Fio XBee Config Tool. This is a modified version of Shigeru Kobayashi's XBeeConfigTool.
If you prefer to set your settings manually, you can set them using any Serial terminal application, such as CoolTerm. Connect the adapter to your computer, and open its serial port at 9600 bps using your favorite serial terminal application.
Set your terminal application's termination string to be a carriage return (ASCI 0x0D) only. Then open the port, and type:
+++
The XBee will respond:
OK
For the programmer radio, type:
ATRE,BD6,ID1234,MY0,DLFFFF,D33,IC8, RR3,RO10,WR
The XBee will respond:
OK OK OK OK OK OK OK OK OK
For the Fio radio, type:
ATRE,BD6,ID1234,MY1,DL0,D35,IU0,IAFFFF,RO10,WR
The XBee will respond:
OK OK OK OK OK OK OK OK OK OK
That's it! Now connect the Fio radio to your Fio, leave the programming radio in the XBee adapter, and you're ready to upload sketches to your Fio.
Uploading sketches to the Fio is similar to other Arduino boards.
As you upload, you should see the green RSSI light on the Fio light up. If you're using an XBee Explorer, you'll also see the TX and RX lights on it flicker as the sketch uploads.
If the Fio does not respond, here are the most common causes of error:
When in doubt, check the Fio by programming it over a wired connection as described above.
When your'e ready to start writing sketches for the Arduino Fio, here are some programming tips that will make your life easier.
Last revision 2018/02/10 by SM