Recent content by lionstatic

  1. L

    Using Teensy 3.1 as joystick, not showing up as game controller

    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); Serial.print(' '); Serial.print(accelX, DEC); Serial.print(' '); Serial.print(accelY...
  2. L

    Using Teensy 3.1 as joystick, not showing up as game controller

    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 pullup resistors to 3.3V). Below is the basic outline of my sketch: #include <i2c_t3.h>...
  3. L

    New I2C library for Teensy3

    Thanks manitou! That seemed to do the trick - the sketch now compiles without errors.
  4. L

    New I2C library for Teensy3

    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 recently purchased a Teensy 3.1 board and was trying to get a sketch that I had working on the Teensy 3.0...
Back
Top