3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

Remote Controlled Arduino Robot using Wixel Transceivers

Remote Controlled Arduino Robot using Wixel Transceivers
«
  • Wixel robot (14).JPG
  • Wixel robot (3).JPG
  • Wixel robot (4).JPG
  • wixelarduino.jpg
  • wixel-arduino robot_bb2.jpg
UPDATE JAN 2012: This project was featured on Pololu's website under Resources/Community Projects.  http://www.pololu.com/resources/communityprojects

INTRODUCTION

In this project, I use two Pololu Wixel transceivers to remotely control an Arduino robot from a PC running a terminal emulator software where I use the keyboard to tell the Arduino robot, via wireless connection, which direction to move (f=forward, b=back, l=left, r=right, s=stop).



This is by far one of the simplest robots I had to put together. Mostly because I am reusing my past robot project parts and code and in no small measure due to the simplicity of the Wixel wireless solution.

ABOUT WIXEL TRANSCEIVERS

Pololu's Wixel transceivers are inexpensive and easy to deploy. I bought two for about $40 plus shipping. The transceivers come with all the applications needed to turn it into a wireless serial port. The vendor does a great job with documenting the setup of the Wixels but in a nutshell this is what's involved in setting up a Wixel:

-- Plug each Wixel into into the PC via mini-USB
-- Install the vendor's Windows drivers and configuration utility.
-- Using the Wixel Configuration Utility load the the vendor provided applet named Wixel Wireless Serial Application. Make certain the Wixels and Arduino have the same baud rate.

Once you have performed the above steps for each Wixel, you can disconnect them from the PC and they will retain their code, just like the Arduino. You now have two Wixels that will talk to each other as two serial com ports.

The simplest way to test if your Wixels are communicating with one another is to connect each to a separate PC running a terminal emulator such as TeraTerm. Set both terminal emulators serial ports and parameters to those of the attached Wixel and start typing on the keyboard. You will see what you typed on the other PC's terminal emulator screen. It's that simple.

The only downside of the Wixel is the short range. The vendor documentation says it's about 60 feet. But the simplicity of deployment compensates for the short distance. If all you need is indoors wireless functionality and ease of use, Wixel is a good choice.

No, this project is not sponsored by Pololu...blah blah blah. I am simply impressed by this well-packaged gizmo.

HARDWARE PARTS

-- Wixel Transceivers X 2. If you are not into soldering you can get the Wixels with headers ready to plug into your breadboard: http://www.pololu.com/catalog/product/1336

-- Arduino Uno: http://store.arduino.cc/ww/index.php?main_page=product_info&cPath=11_12&products_id=195

-- Arduino prototyping shield (optional)

-- Micro Servos X 2. I used the Turingy TG9e which I modified for continuous rotation. You can buy servos already modified for continuous rotation. If you already have 2 servos and wish to modify them for continuous rotation, there are plenty of tutorials if you search around the web.  I used servos instead of DC motors to drive the robot because servos can be controlled and powered from an Arduino without the complications of an h-bridge which is needed to power and control DC motors. 

-- AA X 6 Batteries

-- Breadboards and wires.

-- The robot platform is an empty 3.5 USB external drive case covered with Velcro to facilitate ease of adjustment and removal of robot parts. I am not a big fan of permanent attachments. The wheels of the robot were taken from a toy car and are connected together via mechanical construction set parts and tape and paper clips. Refer to my previous robot project on how this platform was assembled: http://www.instructables.com/id/Arduino-based-robot-with-IR-radar/

SOFTWARE DOWNLOADS

Arduino IDE 1.0 for Windows
http://www.arduino.cc/en/Main/software

Wixel Windows Drivers and Software (release 110705)
http://www.pololu.com/catalog/product/1337/resources

Wixel Wireless Serial Application
http://www.pololu.com/docs/0J46/9.b

TeraTerm Terminal Emulator (shareware)
http://hp.vector.co.jp/authors/VA002416/teraterm.html

WIRING INSTRUCTIONS

WIXEL AND ARDUINO WIRING:
Wixel  GND pin -----> Arduino GND pin
Wixel VIN  pin -----> Arduino 5V pin
Wixel TX pin P1_6   -----> Arduino Digital Pin 0 (RX)

WIXEL ON PC (COMMAND ANC CONTROL):
The Wixel on the PC needs to be connected via a mini-USB. That's all.

SERVO WIRING:
Servo Left - Signal (Yellow wire on my servo) -----> Arduino Digital Pin 10
Servo Left - GND (Black wire on my servo) -----> Arduino GND pin
Servo Left - VIN (Red wire on my servo) -----> Arduino 5V pin

Servo Right - Signal (Yellow wire on my servo) -----> Arduino Digital Pin 11
Servo Right - GND (Black wire on my servo) -----> Arduino GND pin
Servo Right - VIN (Red wire on my servo) -----> Arduino 5V pin

BATTERIES:
Battery Red wire (+) -----> Arduino VIN pin
Battery Black wire (-) -----> Arduino GND pin

ARDUINO CODE
See attached file "wixelrobot.ino"

FEEDBACK
As always, your feedback is greatly appreciated.

LINKS
I found this guide to be useful in learning more about Wixel:
http://www.instructables.com/id/Introducing-the-Wixel-USB-Wireless-Module
23 comments
Apr 15, 2012. 1:54 PMdentalan says:
I managed to make it work. I used USB connections for power and putty.exe to send commands via wixels to the serial port of the arduino. But, there is always a but
When I try to power all these using a battery something goes wrong.
I have the servos (9g mini servos) get power from the 5v of arduino, and I connect the Vin of Arduino(nano) with 9.6volts batteries. When I use the batteries I have random moves from the servos and they do not respond as they should to the commands from Putty.
I do not understand what I am missing.
The batteries I am using is a 9.6 volts reschargeble pack (800mHh) from a R/C car
Apr 16, 2012. 3:49 AMdentalan says:
The current must be in safe limits, since it works when powered from USB. Perhaps it has to do with noice. I will try the caps solution and see if it works
Thank you
Mar 9, 2012. 11:48 PMdentalan says:
High. This is a very helpfull tutorial. I am trying to reproduce it. In fact I just received the two tranceivers which work great. I have a question about wiring. In the arduino-wixel connection I see a wixel_TX pin connection to Arduino_RXpin and do not see the reverse connection (Arduino_TX to Wixel_RX). Don't you need it too to have a complete serial connection?
thank you
Mar 10, 2012. 12:20 PMdentalan says:
Thank you
Apr 7, 2012. 5:15 PMMichael_oz says:
You should also note that the Wixel is a 3.3 volt device and the Arduino (this version) is 5 volt. So if you want to have Arduino_TX to Wixel_RX you need to have a voltage divider, otherwise you will burn a Wixel pin.. See Polulo doco for details.
Apr 7, 2012. 11:27 PMdentalan says:
Thanks for the advice
But, as I can see from the diagram, techbitar connects it directly, with no voltage divider.I also managed to make all the connections creating a small pan/tilt mechanism, with an arduino nano, 2 servos and and the wixels, and it worked. At least form 10 minutes. After that I disconnected them. I hope I didn't burn anything.
Something strange, is that I was doing all these, for the first time since I got the wixels, at about the time you messaged me. Isn't that strange? I hope you where not spying on me :)))

Apr 8, 2012. 12:21 AMMichael_oz says:
techbitar was connecting the Wixel 3.3 volt OUTPUT to the Arduino INPUT, 3.3v is still a HIGH to the 5v Arduino so that is OK.

Connecting Arduino OUTPUT at 5v to Wixel INPUT (rated 3.3v) for two way communication, and setting the OUTPUT pin HIGH will send 5V to the Wixel.

I also mistakenly did so for < aminute and the Wixel was OK, but it is specifically mentioned in the Pololu doco not to do so.

and it was the Wixel spying on you... ;) they are wireless after all.

ps You can also use something like this;
http://www.sparkfun.com/products/8745
Apr 8, 2012. 5:44 AMdentalan says:
OK, I understood. Thank you

I firstly used 2 way communication. I hopr I did not burn anything

So these wixels are big brother's machines. I knew it.
And this is a reason to avoid 2 way communication, not the 5volts:))
Mar 29, 2012. 2:56 PMbhavyamadan says:
Hello techbitar

I am a beginner in robotics so i needed some help from you I was wondering if you could make the code a little easy to read so i can understand it.

Thanks For Your Help,
Bhavyamadan
Mar 3, 2012. 5:07 PMveri_tas says:
This is great! but question: how can I avoid using the computer, yet still have a rich range of commands? I would like to just have say, 4 buttons that i have connected to the first wixel that encode F,B,D...etc. does anyone know how to do this?

thank you for your time,
veritas
Jan 10, 2012. 3:33 PMbrainsfried says:
I've been tryin to figure out how to get into building aurdinos thanks for the instructable!
Jan 1, 2012. 1:11 AMashwinj92 says:
hello i felt this tutorial to be very usefull as am trying the exact same thing
my doubt is about tera term terminal emulator how to use it as the link provided by you takes me to the webpage and after downloading it............. how to run this
am using windows 7 on my laptop so how do i use the terminal emulator as am finding a set of files in this folder but not able to run this terminal emulator so please guide on how to run this on my windows 7 computer
Jan 1, 2012. 4:20 AMashwinj92 says:
yes there is putty and br@y yes i will try them
and thanx for that info
but my second question on serial communication you are using arduino for controlling the robot right
so why are u not using arduino's serial monitor by selecting wixel plugged to computer that is wixel plugged in-->computer say its name is COM3 select this in arduino serial monitor and send data is this possible with wixel or no
or u are deliberately using terminal emulator due to some reason .....so thats not clear to me so
Jan 3, 2012. 7:13 AMashwinj92 says:
hi techibitar


i have already done that and it worked well but the problem is hitting the enter buton every time to send a controll that makes it a bit ugly ....... can u tell me how terminal emulator is different from arduino's monitor .....if u would like to share it.....
this is a nice tutorial whose trying to do this kinda projects ill like to thank u for your effort to make this tutorial:)
Jan 4, 2012. 5:18 AMashwinj92 says:
yes am doing one for my self using vB ........:) and would give thumbs up to all your projects ill next try the image processing one which you have done its amazing........ using arduino and open cv that is actually amazing
am actually getting my fire fighting robot ready for a competition which uses computer control i am right know working on the mechanical aspects of the robot once it is fully ready ill post a link to you tube showing my robots video.........

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
33
Followers
18
Author:techbitar
Did I unplug the solder iron?