Search results

  1. M

    Teensy 2 MDI Question

    Thank you both for your help, I now have the led blinking. Am using the test program from Pd-extended and have the teensy set as input an output. I used the program from the web page Paul supplied and seems I needed the usbMidi command. And yes for now I am just going through USB. Thank you...
  2. M

    Teensy 2 MDI Question

    I believe the version of MIDI.h is version 3.2. And no circuit, thought I could just sent the note to the teensy and blink the led? I am new to this so am quite sure I am doing something wrong. And apologies I will need to search for the post. Thank you for the reply. Cheers, Michael
  3. M

    Teensy 2 MDI Question

    Hello Was just trying the basic to see output using the following program - #include <Arduino.h> #include <MIDI.h> /* Basic I/O MIDI tutorial by Franky 28/07/2009 */ #define LED 13 // LED pin on Arduino board void setup() { pinMode(LED, OUTPUT); MIDI.begin(4); //...
Back
Top