Search results

  1. T

    teensy 3.0 and RA8875

    I tried my Teensy++2.0 board and the LCD worked. I changed a jumper setting (5v <-> 3.3v) on the display PCB. Now I can see 2 situations why the Teensy 3.0 didn't work : a power issue of the display PCB when Vin is 3.3V or a Teensy 3.0 issue ? Did you test it on a 3.0 or 3.1 Teensy ?
  2. T

    teensy 3.0 and RA8875

    Hi , I have a RA8875 based display board that i can't get to work with my Teensy 3.0. I'm using to what I know the latest Adafruit RA8875 and GFX libraries. What I definitely find strange is that the serial debug monitoring doesn't work ? The code sends to the serial console wether the RA8875...
  3. T

    Feasability of using FTDI EVE chip wth T3

    I've gone through the sample projects (they all have arduino code in them) on http://www.ftdichip.com/EVE.htm . I find these all pretty difficult to understand . When you read the programmers guide , it seems like you just have to initialize the display and can start with some simple...
  4. T

    Feasability of using FTDI EVE chip wth T3

    http://www.ftdichip.com/Support/SoftwareExamples/EVE/FT800_SampleApp_1.0.zip It's under Project << Arduino .
  5. T

    Feasability of using FTDI EVE chip wth T3

    Has anyone tested this on Teensy 3 ? FTDI seems to have it working on an Arduino Pro board. http://www.ftdichip.com/Support/Documents/AppNotes/AN_246%20VM800CB_SampleApp_Arduino_Introduction.pdf
  6. T

    3.3v character lcds

    Electronic Assembly DOG series are also 3.3V compatible !
  7. T

    Drefinition of USB MIDI setHandlePitchChange differs between Teensy 2.0 and 3.0

    Sorry guys, if (value == 0 ) does the trick ...
  8. T

    Drefinition of USB MIDI setHandlePitchChange differs between Teensy 2.0 and 3.0

    Receiving control change messages doesn't work either ? /* USB-MIDI receive example */ const int LedPin = 13 ; void setup() { pinMode(LedPin, OUTPUT); usbMIDI.setHandleControlChange(OnControlChange); } void loop() { usbMIDI.read(); } void OnControlChange(byte channel, byte...
  9. T

    Drefinition of USB MIDI setHandlePitchChange differs between Teensy 2.0 and 3.0

    Is OnPitchChange actually working on Teensy 3.0 ? I can blink the onboard led with Note on/off activity through USB MIDI... but not with pitchbend changes ?
  10. T

    Multiple virtual MIDI ports over USB with Teensy 2.0? (Or 3.0?)

    If I'm correct the teensy 3.0 uses the descriptors in the file ...Arduino\hardware\teensy\cores\teensy3\usb_desc.c . So i replaced the midi descriptors with those that Mushoo provided . Then I changed #define NUM_INTERFACE to 4 and #define NUM_ENDPOINTS to 5 (under USB MIDI in the file...
  11. T

    Multiple virtual MIDI ports over USB with Teensy 2.0? (Or 3.0?)

    Is this also working on Teensy 3.0 ? Does anybody have a working example perhaps ?
Back
Top