Comment s'assurer que le Rx fonctionne correctement ?

J'ai appliqué exactement ce qui se passe sur le premier schéma. J'envoie à partir de ma carte son (qui a une sortie MIDI) des octets à la borne Rx.

Voici un code d'exemple pour tester :

#include <MIDI.h>  // Add Midi Library

#define LED 13    // Arduino Board LED is on Pin 13

// Below is my function that will be called by the Midi Library
// when a MIDI NOTE ON message is received.
// It will be passed bytes for Channel, Pitch, and Velocity
void MyHandleNoteOn(byte channel, byte pitch, byte velocity) {
  digitalWrite(LED,HIGH);  //Turn LED on
  if (velocity == 0) {//A NOTE ON message with a velocity = Zero is actualy a NOTE OFF
    digitalWrite(LED,LOW);//Turn LED off
  }
}

void setup() {
  pinMode (LED, OUTPUT); // Set Arduino board pin 13 to output
  MIDI.begin(MIDI_CHANNEL_OMNI); // Initialize the Midi Library.
// OMNI sets it to listen to all channels.. MIDI.begin(2) would set it
// to respond to channel 2 notes only.
  MIDI.setHandleNoteOn(MyHandleNoteOn); // This is important!! This command
  // tells the Midi Library which function I want called when a Note ON command
  // is received. in this case it's "MyHandleNoteOn".
}

void loop() { // Main loop
  MIDI.read(); // Continually check what Midi Commands have been received.
}

La led 13 est sensée s'allumer à chaque fois que l'arduino reçoit un signal de note MIDI. Or il ne se passe rien et la led témoin de Rx ne réagit pas quand j'envoie les notes.. J'en déduis donc que l'arduino ne reçoit rien...
J'ai bien pris soin de débrancher le cable USB après le transfert du programme.

B@tto : ça veut dire que led led Tx et Rx ne sont pas raccordées aux bornes 0 et 1 de la UNO ?