Changes

Line 117: Line 117:       βˆ’
Snakebyte Wireless Motion X code Added By Ein
  βˆ’
----------------------------------------------------
  βˆ’
I made a code based on MikeT and adapted code by Michael Dreherfor (thanks guys!) for wireless Nunchuk controller from Snakebyte. Working fine.
  βˆ’
The problem was in initialization handshake sequence addresses that is a little different for this device.
     βˆ’
        Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR); // transmit to device 0x52
+
Arduino code for Snakebyte Wireless Motion X added by Ein
βˆ’
Wire.send (0xF0); // sends memory address Snakebyte Wireless Motion XS controller
+
---------------------------------------------------------------
βˆ’
Wire.send (0x55); // sends data.
+
:I made a code based on MikeT and adapted code by Michael Dreherfor (thanks guys!) for wireless Nunchuk controller from Snakebyte. Working fine.
βˆ’
        Serial.println("Handshake 1/2....");
+
:The problem was in initialization handshake sequence addresses that is a little different for this device.
βˆ’
        if(Wire.endTransmission() == 0) { // stop transmitting
  βˆ’
            Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR); // transmit to device 0x52
  βˆ’
    Wire.send (0xA5); // sends memory address for Snakebyte Wireless Motion XS controller
  βˆ’
      Wire.send (0x00); // sends sent a zero.
  βˆ’
        }
  βˆ’
 
  βˆ’
 
  βˆ’
Below code to copy and pastle to two files: Nunchuk.pde and NunchukFunctions.h
  βˆ’
 
  βˆ’
File: Nunchuk.pde
  βˆ’
--- START ---
  βˆ’
//  Wireless Nunchuck soft for third party wireless nunchucks)
  βˆ’
//  Created by Ein(bartosz.zydron@gmail.com), based on code by MikeT and adapted code by Michael Dreher
  βˆ’
//  Dedicated version for Snakebyte Wireless Motion XS controller
  βˆ’
 
  βˆ’
//Arduino Duemilanove (ATMEGA 328) data wireing
  βˆ’
//S1 - SCK
  βˆ’
//S2 - SDA
  βˆ’
 
  βˆ’
//Arduino Duemilanove (ATMEGA 328) power wireing
  βˆ’
//3.3V
  βˆ’
//Ground
  βˆ’
 
  βˆ’
//1900 Ohm resistor between 3.3V and S1(SCK)
  βˆ’
//1900 Ohm resistor between 3.3V and S2(SDA)
  βˆ’
 
  βˆ’
 
  βˆ’
#include <Wire.h>
  βˆ’
#include "NunchukFunctions.h"
  βˆ’
 
  βˆ’
void setup()
  βˆ’
{
  βˆ’
  Serial.begin(38400);
  βˆ’
  nunchuck_pre_init();
  βˆ’
  Serial.println("Finished setup");
  βˆ’
}
  βˆ’
 
  βˆ’
void loop()
  βˆ’
{
  βˆ’
  delay(20);  // Change for speed/accuracy of results
  βˆ’
 
  βˆ’
  nunchuck_get_data();
  βˆ’
  nunchuck_save_data();
  βˆ’
 
  βˆ’
  Serial.print (nunchuck_joy_x, DEC);
  βˆ’
  Serial.print ("\t");
  βˆ’
  Serial.print (nunchuck_joy_y, DEC);
  βˆ’
  Serial.print ("\t");
  βˆ’
  Serial.print (nunchuck_c_button, DEC);
  βˆ’
  Serial.print ("\t");
  βˆ’
  Serial.print (nunchuck_z_button, DEC);
  βˆ’
  Serial.print ("\t");
  βˆ’
  Serial.print (nunchuck_accel_x, DEC);
  βˆ’
  Serial.print ("\t");
  βˆ’
  Serial.print (nunchuck_accel_y, DEC);
  βˆ’
  Serial.print ("\t");
  βˆ’
  Serial.print (nunchuck_accel_z, DEC);
  βˆ’
  Serial.print ("\t");
  βˆ’
  Serial.print ("\r\n");
  βˆ’
 
  βˆ’
  delay(1);
  βˆ’
}
  βˆ’
--- END ----
  βˆ’
 
  βˆ’
File: NunchukFunctions.h
  βˆ’
--- START ---
  βˆ’
//  Wireless Nunchuck soft for third party wireless nunchucks)
  βˆ’
//  Created by Ein(bartosz.zydron@gmail.com), based on code by MikeT and adapted code by Michael Dreher
  βˆ’
//  Dedicated version for Snakebyte Wireless Motion XS controller
  βˆ’
 
  βˆ’
//Arduino Duemilanove (ATMEGA 328) data wireing
  βˆ’
//S1 - SCK
  βˆ’
//S2 - SDA
  βˆ’
 
  βˆ’
//Arduino Duemilanove (ATMEGA 328) power wireing
  βˆ’
//3.3V
  βˆ’
//Ground
  βˆ’
 
  βˆ’
//1900 Ohm resistor between 3.3V and S1(SCK)
  βˆ’
//1900 Ohm resistor between 3.3V and S2(SDA)
  βˆ’
 
  βˆ’
#define USE_NEW_WAY_INIT 1   // use "The New Way" of initialization <http://wiibrew.org/wiki/Wiimote#The_New_Way>
  βˆ’
#define WII_IDENT_LEN ((byte)6)
  βˆ’
#define WII_TELEGRAM_LEN ((byte)6)
  βˆ’
#define WII_NUNCHUCK_TWI_ADR ((byte)0x52)
  βˆ’
 
  βˆ’
#include <Wire.h>
  βˆ’
#include <string.h>
  βˆ’
#include </usr/share/arduino/libraries/Wire/utility/twi.h>
  βˆ’
#undef int
  βˆ’
#include <stdio.h>
  βˆ’
#include <WProgram.h>
  βˆ’
 
  βˆ’
static uint8_t outbuf[WII_TELEGRAM_LEN]; // array to store arduino output
  βˆ’
static int cnt = 0;
  βˆ’
static int ledPin = 13;
  βˆ’
static int nunchuck_joy_x, nunchuck_joy_y, nunchuck_c_button, nunchuck_z_button, nunchuck_accel_x, nunchuck_accel_y, nunchuck_accel_z;
  βˆ’
static int nunchuck_calibrate_joy_x = 128, nunchuck_calibrate_joy_y = 130;    //subtract these values from nunchuck_joy values to get 0 as centered value
  βˆ’
 
  βˆ’
static byte readControllerIdent(byte* pIdent)
  βˆ’
{
  βˆ’
  static byte rc = 1;
     βˆ’
  // read identification
+
        <nowiki>Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR)
βˆ’
  Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR); // transmit to device 0x52
+
Wire.send (0xF0);
βˆ’
  Wire.send (0xFA); // sends memory address of ident in controller
+
Wire.send (0x55);
βˆ’
  if(Wire.endTransmission () == 0) // stop transmitting
  βˆ’
  {
  βˆ’
    static byte i;
  βˆ’
    Wire.requestFrom (WII_NUNCHUCK_TWI_ADR, WII_TELEGRAM_LEN); // request data from nunchuck
  βˆ’
    for (i = 0; (i < WII_TELEGRAM_LEN) && Wire.available (); i++)
  βˆ’
    {
  βˆ’
pIdent[i] = Wire.receive(); // receive byte as an integer
  βˆ’
    }
  βˆ’
    if(i == WII_TELEGRAM_LEN)
  βˆ’
    {
  βˆ’
rc = 0;
  βˆ’
    }
  βˆ’
  }
  βˆ’
  return rc;
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
// params:
  βˆ’
//  timeout: abort when timeout (in ms) expires, 0 for unlimited timeout
  βˆ’
//  return:  0 == ok, 1 == timeout
  βˆ’
static byte nunchuck_init (unsigned short timeout)
  βˆ’
{
  βˆ’
  static byte rc = 1;
  βˆ’
  unsigned long time = millis();
  βˆ’
    do
  βˆ’
    {
  βˆ’
        Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR); // transmit to device 0x52
  βˆ’
Wire.send (0xF0); // sends memory address Snakebyte Wireless Motion XS controller
  βˆ’
Wire.send (0x55); // sends data.
   
         Serial.println("Handshake 1/2....");
 
         Serial.println("Handshake 1/2....");
βˆ’
         if(Wire.endTransmission() == 0) { // stop transmitting
+
         if(Wire.endTransmission() == 0) {
βˆ’
             Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR); // transmit to device 0x52
+
             Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR);
βˆ’
    Wire.send (0xA5); // sends memory address for Snakebyte Wireless Motion XS controller
+
    Wire.send (0xA5);
βˆ’
       Wire.send (0x00); // sends sent a zero.
+
       Wire.send (0x00);
βˆ’
            Serial.println("Handshake 2/2....");
+
         }</nowiki>
βˆ’
            if(Wire.endTransmission () == 0){
  βˆ’
          rc = 0;
  βˆ’
    }
  βˆ’
         }
  βˆ’
    }     
  βˆ’
  while (rc != 0 && (!timeout || ((millis() - time) < timeout)));
  βˆ’
  Serial.println("OK.");
  βˆ’
  delay(3000);
  βˆ’
  return rc;
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
static void nunchuck_pre_init()
  βˆ’
{
  βˆ’
  Wire.begin(); // initialize i2c
  βˆ’
  // we need to switch the TWI speed, because the nunchuck uses Fast-TWI
  βˆ’
  // normally set in hardware\libraries\Wire\utility\twi.c twi_init()
  βˆ’
  // this is the way of doing it without modifying the original files
  βˆ’
  #define TWI_FREQ_NUNCHUCK 400000L
  βˆ’
  TWBR = ((CPU_FREQ / TWI_FREQ_NUNCHUCK) - 16) / 2;
  βˆ’
 
  βˆ’
  nunchuck_init(0); // send the initialization handshake
  βˆ’
 
  βˆ’
  static byte i;
  βˆ’
  if(readControllerIdent(outbuf) == 0)
  βˆ’
  {
  βˆ’
    Serial.print("Ident=");
  βˆ’
    for (i = 0; i < WII_TELEGRAM_LEN; i++)
  βˆ’
    {
  βˆ’
Serial.print(outbuf[i], HEX);
  βˆ’
Serial.print(' ');
  βˆ’
    }
  βˆ’
    Serial.println();
  βˆ’
  }
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
static void clearTwiInputBuffer(void)
  βˆ’
{
  βˆ’
  // clear the receive buffer from any partial data
  βˆ’
  while( Wire.available ())
  βˆ’
    Wire.receive ();
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
static void send_zero ()
  βˆ’
{
  βˆ’
  // I don't know why, but it only works correct when doing this exactly 3 times
  βˆ’
  // otherwise only each 3rd call reads data from the controller (cnt will be 0 the other times)
  βˆ’
  for(byte i = 0; i < 3; i++)
  βˆ’
  {
  βˆ’
    Wire.beginTransmission (WII_NUNCHUCK_TWI_ADR); // transmit to device 0x52
  βˆ’
    Wire.send (0x00); // sends one byte
  βˆ’
    Wire.endTransmission (); // stop transmitting
  βˆ’
    delay(5);
  βˆ’
  }
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
// Print the input data we have recieved
  βˆ’
// accel data is 10 bits long
  βˆ’
// so we read 8 bits, then we have to add
  βˆ’
// on the last 2 bits.  That is why I
  βˆ’
// multiply them by 2 * 2
  βˆ’
static void nunchuck_save ()
  βˆ’
{
  βˆ’
  nunchuck_joy_x = outbuf[0] - nunchuck_calibrate_joy_x;
  βˆ’
  nunchuck_joy_y = outbuf[1] - nunchuck_calibrate_joy_y;
  βˆ’
  nunchuck_accel_x = outbuf[2] * 2 * 2;
  βˆ’
  nunchuck_accel_y = outbuf[3] * 2 * 2;
  βˆ’
  nunchuck_accel_z = outbuf[4] * 2 * 2;
  βˆ’
 
  βˆ’
  nunchuck_z_button = 0;
  βˆ’
  nunchuck_c_button = 0;
  βˆ’
 
  βˆ’
  // byte outbuf[5] contains bits for z and c buttons
  βˆ’
  // it also contains the least significant bits for the accelerometer data
  βˆ’
  // so we have to check each bit of byte outbuf[5]
  βˆ’
  if ((outbuf[5] >> 0) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_z_button = 1;
  βˆ’
  }
  βˆ’
  if ((outbuf[5] >> 1) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_c_button = 1;
  βˆ’
  }
  βˆ’
 
  βˆ’
  if ((outbuf[5] >> 2) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_accel_x += 2;
  βˆ’
  }
  βˆ’
  if ((outbuf[5] >> 3) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_accel_x += 1;
  βˆ’
  }
  βˆ’
 
  βˆ’
  if ((outbuf[5] >> 4) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_accel_y += 2;
  βˆ’
  }
  βˆ’
  if ((outbuf[5] >> 5) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_accel_y += 1;
  βˆ’
  }
  βˆ’
 
  βˆ’
  if ((outbuf[5] >> 6) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_accel_z += 2;
  βˆ’
  }
  βˆ’
  if ((outbuf[5] >> 7) & 1)
  βˆ’
  {
  βˆ’
    nunchuck_accel_z += 1;
  βˆ’
  }
  βˆ’
 
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
static void nunchuck_save_data()
  βˆ’
{
  βˆ’
  clearTwiInputBuffer();
  βˆ’
 
  βˆ’
  // If we recieved the 6 bytes, then go print them
  βˆ’
  if (cnt >= WII_TELEGRAM_LEN)
  βˆ’
  {
  βˆ’
    nunchuck_save ();
  βˆ’
  }
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
// Decode data format that original Nunchuck uses with old init sequence. This never worked with
  βˆ’
// other controllers (e.g. wireless Nunchuck from other vendors)
  βˆ’
static char nunchuk_decode_byte (char x)
  βˆ’
{
  βˆ’
  x = (x ^ 0x17) + 0x17;
  βˆ’
  return x;
  βˆ’
}
  βˆ’
 
  βˆ’
 
  βˆ’
static void nunchuck_get_data()
  βˆ’
{
  βˆ’
  send_zero (); // send the request for next bytes
  βˆ’
  Wire.requestFrom (WII_NUNCHUCK_TWI_ADR, WII_TELEGRAM_LEN); // request data from nunchuck
     βˆ’
  for (cnt = 0; (cnt < WII_TELEGRAM_LEN) && Wire.available (); cnt++)
+
:File: Nunchuk.pde [[Media:Nunchuk.pde]]
βˆ’
  {
+
:File: NunchukFunctions.h [[Media:NunchukFuncktions.h]]
βˆ’
    outbuf[cnt] = nunchuk_decode_byte (Wire.receive ()); // receive byte as an integer
  βˆ’
    digitalWrite (ledPin, HIGH); // sets the LED on
  βˆ’
  }
  βˆ’
}
  βˆ’
--- END ---
      
=== Datel Blade-FX ===
 
=== Datel Blade-FX ===
8

edits