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...
Thanks manitou! That seemed to do the trick - the sketch now compiles without errors.
Thanks so much for this library. I have used it in the past with a Teensy 3.0 board.
Forgive me if this is a stupid question, as I'm fairly new to the Arduino and Teensy environments. I...