Description:

Through the MIDI adapter plate, your Arduino board or other microcontrollers can be accessed to powerful MIDI communication protocol. MIDI protocol and asynchronous serial interface has many similarities, so users can use the micro-controller UART pin to send MIDI event information.

MIDI adapter plate provides MIDI - IN and MIDI - OUT connection, and MIDI THRU port. MIDI - port is light IN isolation, to prevent the ground loop. MIDI adapter plate can be installed directly like a shield at the top of the Arduino board: connect MIDI - IN/THRU to for Arduino hardware RX pin, connect MIDI - OUT to TX. It Arduino data and analog pin, power bus and the bus can transfer out.

The RUN/PGM switch can let users on the forArduino board serial port programming, without having to remove the board. Note: the three hole MIDI connector no welding on the MIDI adapter plate, but these connectors included in this product.

Size: 57.4 x 53.1mm

 

/*
MIDI note player

This sketch shows how to use the serial transmit pin (pin 1) to send MIDI note data.
If this circuit is connected to a MIDI synth, it will play
the notes F#-0 (0x1E) to F#-5 (0x5A) in sequence.

The circuit:
* digital in 1 connected to MIDI jack pin 5
* MIDI jack pin 2 connected to ground
* MIDI jack pin 4 connected to +5V through 220-ohm resistor
Attach a MIDI cable to the jack, then to a MIDI synth, and play music.
*/

void setup() {
// Set MIDI baud rate:
Serial.begin(31250);
}

void loop() {
// play notes from F#-0 (0x1E) to F#-5 (0x5A):
for (int note = 0x1E; note < 0x5A; note ++) {
//Note on channel 1 (0x90), some note value (note), middle velocity (0x45):
noteOn(0x90, note, 0x45);
delay(100);
//Note on channel 1 (0x90), some note value (note), silent velocity (0x00):
noteOn(0x90, note, 0x00);
delay(100);
}
}

// plays a MIDI note. Doesn't check to see that
// cmd is greater than 127, or that data values are less than 127:
void noteOn(int cmd, int pitch, int velocity) {
Serial.write(cmd);
Serial.write(pitch);
Serial.write(velocity);
}

 

Package Included:  1PCS * Module

For anything problem about product, price, shipping or order status, pleasecontact us via eBay message.Just contact us using the "Ask the seller a question" link on eBay.
 

We expect positive feedback and 5 scores DSR  from you. 

  1. We believe our items are so outstanding. We are convinced you will be happy with your Purchase.
  2. If you do not satisfy with our items. Please simply return to us within 30 Days in original condition. Just pay for the returned postage. Then we can issue full refund to you after the returned item arrived at our warehouse.
  3.  Please include your eBay ID and item number with any email requests.

* When you satisfied with our product and services please leave us positive feedback.

* If you have got the package, please confirm "Delivery on time" For us.

* If a problem occurs, contact us immediately with any email request.

* Just contact us using the " Ask the seller a question" link on eBay.

Your Satisfaction is our Priority. Our goal is to make all our customers as happy as possible while shopping with us.