I came across some old Will nunchuks in a closet and thought, "perfect gadget to connect to an Arduino". After some time with a hackster.io users best friend, Google, it looked like the nunchuk uses I2C. Perfect for an Arduino. It also looks like a lot of people have done exactly that. So I did some digging at found some code from todbot.com to utilize the Will nunchuk then added my own code to control the servos!
This is a very simple project and I am sure you can find plenty of applications for this. Like teasing your cat with a laser pointer attached. :)
Step 1 - Wii NunchukThere are a couple ways to connect this to the Arduino. You can buy a Wii nunchuk adapter or do what I did and just cut the wires since I didn't have a Wii to connect it to any longer.
I soldered some solid core wires to the nunchuk wires so I could make breadboard connections easier. I matched the color to the exposed nunchuk wires.
Connect Wii Nunchuk to Arduino UNO as follows:
White wire (GND) --> GND
Red wire (+5V) --> 5V
Green Wire (SDA) --> Analog 4 or dedicated SDA pin
Yellow (SCL) --> Analog 5 or dedicated SCL pin
Step 2 - Connect Servos to ArduinoConnect the three wires to the Arduino as follows:
Servo 1 (x-axis)
Brown (GND) --> GND
Red (5V) --> 5V
Yellow (data/Signal) --> Pin 10 on the UNO
Servo 2 (y-axis)
Brown (GND) --> GND
Red (5V) --> 5V
Yellow (data/Signal) --> Pin 9 on the UNO
Here's what it looks like all connected. Kinda messy sorry.
Upload the code using the Arduino IDE. There are 2 standard libraries that you need.
- Wire.h
- Servo.h
The code will do the following:
- Initialize the nunchuk using I2C
- Initialize the servos
- Read the nunchuk data
- Move the servos based on the nunchuk readings
*** Thanks to todbot.com for the Will nunchuk code.
I hope this is useful and please provide me with any feedback as I am always willing to learn. Enjoy!!!
Comments
Please log in or sign up to comment.