I also just tried sending the data over USB via Serial, replacing the Joystick code with Serial prints:
Serial.print(analogX, DEC);
Serial.print(' ');
Serial.print(analogY, DEC);...
Type: Posts; User: lionstatic
I also just tried sending the data over USB via Serial, replacing the Joystick code with Serial prints:
Serial.print(analogX, DEC);
Serial.print(' ');
Serial.print(analogY, DEC);...
I've recently migrated from a Teensy 3.0 to a Teensy 3.1 board. I had written a sketch for the Teensy 3.0 board that obtains data from a Wii Nunchuk using I2C (communicating via pins 18 & 19, with...