Michael BOUVY
CTO E-commerce

Raspberry PI + Xbee: UART / Serial howto

raspberry pi rpi xbee uart serial
Published on 2013/04/02

Happy owner of a Raspberry PI for almost a year now, I couldn't resist to take advantage of if advanced features, and especially it's GPIO, to communicate with my other electronics parts including my Xbee-enabled wireless sensors.

Although RPI's onboard UART usage seemed quite simple at first, it finally took me some time to figure out exactly how to read my first bytes received trough UART via Xbee on my RPI, that's why I'm writing this short snippet.

On the original Debian available for the Raspberry PI, the UART allow you to have a serial console so you can connect to it, without needing network nor SSH. It takes a few steps to change this default behavior so we can connect our Xbee (Series 1) to our RPI. First of all, you will need to edit the /boot/cmdline.txt file :

sudo cp /boot/cmdline.txt /boot/cmdline.txt.bak # Backup file
sudo vi /boot/cmdline.txt

Remove all references to ttyAMA0 (console and kgdboc) so your file looks something like that :

dwc_otg.lpm_enable=0 rpitestmode=1 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait

Now edit /etc/inittab :

sudo cp /etc/inittab /etc/inittab.bak # Backup file
sudo vi /etc/inittab

Comment out the following line :

2:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100

Now reboot your Raspberry PI. Let's now connect our Xbee to the RPI's GPIO. Here is a quick schema explaining how : Raspberry PI Xbee

Raspberry PI and Xbee Series 1

 

Note that on this schema, I only connected a wire from Xbee's DOUT to RPI's RXD as will only use it to receive data. However, you might also connect your Xbee's DIN to RPI's TX according to this RPI GPIO pinout. Your Raspberry PI should now receive it's first bytes via the Xbee ; you can test this using Minicom (sudo aptitude install minicom, if not already installed) :

sudo minicom -b 9600 -o -D /dev/ttyAMA0

(You could also use minicom without sudoing by adding your current user [I guess pi] to dialout group)

Special thanks to Clayton Smith's blog post which greatly helped me figure out what was wrong with my RPI's UART.

Michael BOUVY

I'm Michael BOUVY, CTO and co-founder of Click&Mortar, a digital agency based in Paris, France, specialized in e-commerce.

Over the last years, I've worked as an Engineering Manager and CTO for brands like Zadig&Voltaire and Maisons du Monde.

With more than 10 years experience in e-commerce platforms, I'm always looking for new challenges, feel free to get in touch!