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 ===