Détournement d'un Wii Motion Plus et Nunchuck

Materiel:

2 NPN type switching transistors (2N2222)
2 résistances 470 Ohm (jaune violet brun)
1 Arduino

http://randomhacksofboredom.blogspot.com/2009/07/motion-plus-and-nunchuck-together-on.html

 

Autres solutions: “WiiChuck” Wii Nunchuck Adapter

http://todbot.com/blog/2008/02/18/wiichuck-wii-nunchuck-adapter-available/

 

Code source

  1.  #include < Wire.h >
  2.  #include < Streaming.h >
  3.  
  4.  //WM+ stuff
  5.  byte data[6]; //six data bytes
  6.  int yaw, pitch, roll; //three axes
  7.  int yaw0, pitch0, roll0; //calibration zeroes
  8.  
  9.  //nunchuck stuff
  10.  uint8_t outbuf[6]; // array to store arduino output
  11.  int cnt = 0;
  12.  int joy_x_axis, joy_y_axis, accel_x_axis, accel_y_axis, accel_z_axis;
  13.  boolean z_button, c_button;
  14.  
  15.  void setup(){
  16.   Serial.begin(115200);
  17.   Serial << "WM+ and Nunchuck tester" << endl;
  18.   pinMode(3, OUTPUT);
  19.   pinMode(4, OUTPUT);
  20.   digitalWrite(3, HIGH);
  21.   digitalWrite(4, HIGH);
  22.   Wire.begin();
  23.   switchtowmp();
  24.   wmpOn();
  25.   calibrateZeroes();
  26.   switchtonunchuck();
  27.   nunchuck_init();
  28.  }
  29.  
  30.  void loop(){
  31.   switchtowmp();
  32.   receiveData();
  33.  //receiveRaw();
  34.   switchtonunchuck();
  35.   receive_nunchuck_data();
  36.   Serial << yaw << "\t" << pitch << "\t" << roll << "\t" << joy_x_axis << "\t" << joy_y_axis << "\t";
  37.   Serial << accel_x_axis << "\t" << accel_y_axis << "\t" << accel_z_axis;
  38.   Serial << "\t" << _DEC(z_button) << "\t" << _DEC(c_button) << endl;
  39.   delay(100);
  40.  }
  41.  
  42.  void nunchuck_init ()
  43.  {
  44.  Wire.beginTransmission (0x52);// transmit to device 0x52
  45.  Wire.send (0x40); // sends memory address
  46.  Wire.send (0x00); // sends sent a zero.
  47.  Wire.endTransmission (); // stop transmitting
  48.  }
  49.  
  50.  void send_zero ()
  51.  {
  52.  Wire.beginTransmission (0x52);// transmit to device 0x52
  53.  Wire.send (0x00); // sends one byte
  54.  Wire.endTransmission (); // stop transmitting
  55.  }
  56.  
  57.  void receive_nunchuck_data(){
  58.   Wire.requestFrom(0x52, 6);
  59.   for (int i=0;i<6;i++){
  60.   data[i]=Wire.receive();
  61.   }
  62.   make_nunchuck_data();
  63.   send_zero();
  64.  }
  65.  
  66.  void make_nunchuck_data ()
  67.  {
  68.   for(int i=0;i<6;i++){
  69.   outbuf[i]=nunchuck_decode_byte(data[i]);
  70.   }
  71.   joy_x_axis = outbuf[0];
  72.   joy_y_axis = outbuf[1];
  73.   accel_x_axis = outbuf[2] * 2 * 2;
  74.   accel_y_axis = outbuf[3] * 2 * 2;
  75.   accel_z_axis = outbuf[4] * 2 * 2;
  76.   z_button = 0;
  77.   c_button = 0;
  78.  
  79.  // byte outbuf[5] contains bits for z and c buttons
  80.  // it also contains the least significant bits for the accelerometer data
  81.  // so we have to check each bit of byte outbuf[5]
  82.   if ((outbuf[5] >> 0) & 1)
  83.   {
  84.   z_button = 1;
  85.   }
  86.   if ((outbuf[5] >> 1) & 1)
  87.   {
  88.   c_button = 1;
  89.   }
  90.   if ((outbuf[5] >> 2) & 1)
  91.   {
  92.   accel_x_axis += 2;
  93.   }
  94.   if ((outbuf[5] >> 3) & 1)
  95.   {
  96.   accel_x_axis += 1;
  97.   }
  98.   if ((outbuf[5] >> 4) & 1)
  99.   {
  100.   accel_y_axis += 2;
  101.   }
  102.   if ((outbuf[5] >> 5) & 1)
  103.   {
  104.   accel_y_axis += 1;
  105.   }
  106.   if ((outbuf[5] >> 6) & 1)
  107.   {
  108.   accel_z_axis += 2;
  109.   }
  110.   if ((outbuf[5] >> 7) & 1)
  111.   {
  112.   accel_z_axis += 1;
  113.   }
  114.  }
  115.  
  116.  char nunchuck_decode_byte (char x)
  117.  {
  118.   x = (x ^ 0x17) + 0x17;
  119.   return x;
  120.  }
  121.  
  122.  void wmpOn(){
  123.  Wire.beginTransmission(0x53);//WM+ starts out deactivated at address 0x53
  124.  Wire.send(0xfe); //send 0x04 to address 0xFE to activate WM+
  125.  Wire.send(0x04);
  126.  Wire.endTransmission(); //WM+ jumps to address 0x52 and is now active
  127.  }
  128.  
  129.  void wmpOff(){
  130.   Wire.beginTransmission(82);
  131.  Wire.send(0xf0);//address then
  132.  Wire.send(0x55);//command
  133.  //Wire.send(0x00);
  134.  //Wire.send(0xfb);
  135.  Wire.endTransmission();
  136.  }
  137.  
  138.  void wmpSendZero(){
  139.  Wire.beginTransmission(0x52);//now at address 0x52
  140.  Wire.send(0x00); //send zero to signal we want info
  141.  Wire.endTransmission();
  142.  }
  143.  
  144.  void calibrateZeroes(){
  145.   for (int i=0;i<10;i++){
  146.   wmpSendZero();
  147.   Wire.requestFrom(0x52,6);
  148.   for (int i=0;i<6;i++){
  149.   data[i]=Wire.receive();
  150.   }
  151.  yaw0+=(((data[3] >> 2) << 8)+data[0])/10;//average 10 readings
  152.  pitch0+=(((data[4] >> 2) << 8)+data[1])/10;// for each zero
  153.  roll0+=(((data[5] >> 2) << 8)+data[2])/10;
  154.  }
  155.  Serial.print("Yaw0:");
  156.  Serial.print(yaw0);
  157.  Serial.print(" Pitch0:");
  158.  Serial.print(pitch0);
  159.  Serial.print(" Roll0:");
  160.  Serial.println(roll0);
  161.  }
  162.  
  163.  void receiveData(){
  164.  wmpSendZero(); //send zero before each request (same as nunchuck)
  165.  Wire.requestFrom(0x52,6); //request the six bytes from the WM+
  166.  for (int i=0;i<6;i++){
  167.   data[i]=Wire.receive();
  168.  }
  169.  //see http://wiibrew.org/wiki/Wiimote/Extension_Controllers#Wii_Motion_Plus
  170.  //for info on what each byte represents
  171.  yaw=((data[3] >> 2) << 8)+data[0]-yaw0;
  172.  pitch=((data[4] >> 2) << 8)+data[1]-pitch0;
  173.  roll=((data[5] >> 2) << 8)+data[2]-roll0;
  174.  }
  175.  
  176.  void receiveRaw(){
  177.  wmpSendZero(); //send zero before each request (same as nunchuck)
  178.  Wire.requestFrom(0x52,6);//request the six bytes from the WM+
  179.  for (int i=0;i<6;i++){
  180.   data[i]=Wire.receive();
  181.  }
  182.  
  183.  yaw=((data[3] >> 2) << 8)+data[0];
  184.  pitch=((data[4] >> 2) << 8)+data[1];
  185.  roll=((data[5] >> 2) << 8)+data[2];
  186.  }
  187.  
  188.  void switchtonunchuck(){
  189.   digitalWrite(3, LOW);
  190.   digitalWrite(4, LOW);
  191.   digitalWrite(4, HIGH);
  192.  }
  193.  
  194.  void switchtowmp(){
  195.   digitalWrite(3, LOW);
  196.   digitalWrite(4, LOW);
  197.   digitalWrite(3, HIGH);
  198.  }