↧
Wireless Wii Nunchuck
I’ve seen people hook up Wii Nunchucks to Arduino boards to control RC cars, robots, LEDs, etc. They all connected the wire at the end of the Nunchuck to their Arduino boards (sometimes using an...
View ArticleNunchuck Code
Here is the code that I used on the Arduino Pro Mini in the Wireless Wii Nunchuck: #include "Wire.h" #include "nunchuck_funcs.h" int loop_cnt=0; byte accx,accy,zbut,cbut,joyy,joyx; int ledPin = 13;...
View ArticleNunchuck Receiver Code
Here is the code I used on the receive side (Arduino USB board with Adafruit XBee adapter) connected to the steering servo and speed control on an old RC-10T truck: #include "Servo.h" #include...
View Article