Hide minor edits - Show changes to markup
Este código muestra cómo enviar notas con el protocolo MIDI a través del pin 1 (TX) de la Arduino. Si se conecta a un sintetizador MIDI, tocará las notas F#-0 (0x1E) a F#-5 (0x5A).
This tutorial shows how to play MIDI notes from an Arduino.
MIDI, the Musical Instrument Digital Interface, is a useful protocol for controlling synthesizers, sequencers, and other musical devices. MIDI devices are generally grouped in to two broad classes: controllers (i.e. devices that generate MIDI signals based on human actions) and synthesizers (including samplers, sequencers, and so forth). The latter take MIDI data in and make sound, light, or some other effect.
MIDI is a serial protocol that operates at 31,250 bits per second. The Arduino's built-in serial port (all of them on the Mega as well) can send data at that rate.
MIDI bytes are divided into two types: command bytes and data bytes. Command bytes are always 128 or greater, or 0x80 to 0xFF in hexadecimal. Data bytes are always less than 127, or 0x00 to 0x7F in hex. Commands include things such as note on, note off, pitch bend, and so forth. Data bytes include things like the pitch of the note to play, the velocity, or loudness of the note, and amount of pitch bend, and so forth. For more details, see the MIDI specification, or one of the many MIDI Protocol Guides on the Web.
MIDI data is usually notated in hexadecimal because MIDI banks and instruments are grouped in groups of 16.
For more see this introduction to MIDI or this example.
All MIDI connectors are female, by definition of the MIDI spec. Here's how to wire the connector to the Arduino:
click the image to enlarge
Este tutorial explica cómo generar notas MIDI desde una Arduino.
MIDI es el interfaz digital de instrumento musical (Musical Instrument Digital Interface) es un protocolo útil para controlar sintetizadores, secuenciadores y otros aparatos musicales. Hay dos tipos de máquinas MIDI: controladores (por ejemplo aparatos que generan señales MIDI a partir de acciones humanas) y sintetizadores (que incluye samplers, secuenciadores, etc.). Los últimos reaccionan a los datos MIDI generando sonido, luz o efectos.
MIDI es un protocolo serie que opera a 31250 bits por segundo. El puerto serie interno de Arduino (y todos los puertos de la Mega) son capaces de enviar datos a esta velocidad.
Los bytes MIDI se dividen en dos tipos: bytes de comando y bytes de datos. Los de comando son mayores o iguales a 128 (de 0x80 a 0xFF en hexadecimal). Los de datos son menores o iguales a 127 (de 0x00 a 0x7F en hexadecimal). Los comandos incluyen inicio de nota, fin de nota, picth bend (portamento), etc. Los datos incluyen cosas como el tono de la nota a tocar, la fuerza (también llamada velocidad, se refiere al volumen normalmente), etc. Para más detalles, ver la especificación MIDI o alguna de las muchas Guías del protocolo MIDI en la Web.
Los datos MIDI normalmente se escriben en hexadecimal porque los bancos MIDI y los instrumentos están dispuestos en grupos de 16.
Para más información, consultar introduction to MIDI (inglés) o este ejemplo (inglés).
Todas las conexiones MIDI son hembra por definición de la especificación MIDI. Se conectan a la Arduino de la siguiente manera:
Para ver la imagen en su tamaño original, hacer click en la imagen.
image developed using Fritzing. For more circuit examples, see the Fritzing project page
Schematic
click the image to enlarge
imagen generada con fritzing Fritzing. Para más información visitar la página del proyecto Fritzing
Esquema
Para ver la imagen en su tamaño original, hacer click en la imagen.
(:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/Midi/Midi.pde border=0:)
(:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/MIDI/Midi.pde border=0:)
(:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/MIDI/MIDI.pde border=0:)
(:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/Midi/Midi.pde border=0:)
/* 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.
(:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/MIDI/MIDI.pde border=0:)
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.
created 13 Jun 2006 modified 2 Jul 2009 by Tom Igoe http://www.arduino.cc/en/Tutorial/MIDI */
void setup() { // Set MIDI baud rate: Serial.begin(31250); }
void loop() { // play notes from F#-0 (0x1E) to F#-5 (0x5A): for (intnote = 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.print(cmd, BYTE); Serial.print(pitch, BYTE); Serial.print(velocity, BYTE); }
image developed using Fritzing. For more circuit examples, see the Fritzing project page
[@ /*
MIDI note player
(:div class=code :)
/* 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.
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.
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.
created 13 Jun 2006 modified 2 Jul 2009 by Tom Igoe
created 13 Jun 2006 modified 2 Jul 2009 by Tom Igoe http://www.arduino.cc/en/Tutorial/MIDI */
http://www.arduino.cc/en/Tutorial/MIDI
void setup() { // Set MIDI baud rate: Serial.begin(31250); }
*/
void setup() {
// Set MIDI baud rate: Serial.begin(31250);
}
void loop() {
// play notes from F#-0 (0x1E) to F#-5 (0x5A):
for (intnote = 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.print(cmd, BYTE); Serial.print(pitch, BYTE); Serial.print(velocity, BYTE);
}
@]
void loop() { // play notes from F#-0 (0x1E) to F#-5 (0x5A): for (intnote = 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.print(cmd, BYTE); Serial.print(pitch, BYTE); Serial.print(velocity, BYTE); }
(:divend:)
This tutorial shows how to play MIDI notes from an Arduino.
For more see this introduction to MIDI or this example
For more see this introduction to MIDI or this example.
Attach a MIDI cable to the jack, then to a MIDI synth, and play music.
This tutorial on MIDI is still in progress. For more see http://itp.nyu.edu/physcomp/Labs/MIDIOutput
MIDI, the Musical Instrument Digital Interface, is a useful protocol for controlling synthesizers, sequencers, and other musical devices. MIDI devices are generally grouped in to two broad classes: controllers (i.e. devices that generate MIDI signals based on human actions) and synthesizers (including samplers, sequencers, and so forth). The latter take MIDI data in and make sound, light, or some other effect.
MIDI is a serial protocol that operates at 31,250 bits per second. The Arduino's built-in serial port (all of them on the Mega as well) can send data at that rate.
MIDI bytes are divided into two types: command bytes and data bytes. Command bytes are always 128 or greater, or 0x80 to 0xFF in hexadecimal. Data bytes are always less than 127, or 0x00 to 0x7F in hex. Commands include things such as note on, note off, pitch bend, and so forth. Data bytes include things like the pitch of the note to play, the velocity, or loudness of the note, and amount of pitch bend, and so forth. For more details, see the MIDI specification, or one of the many MIDI Protocol Guides on the Web.
MIDI data is usually notated in hexadecimal because MIDI banks and instruments are grouped in groups of 16.
For more see this introduction to MIDI or this example
An LED connected to pin 9. use appropriate resistor as needed. For most common LEDs, you can usually do without the resistor, as the current output of the digital I/O pins is limited.
All MIDI connectors are female, by definition of the MIDI spec. Here's how to wire the connector to the Arduino:
Attach a MIDI cable to the jack, then to a MIDI synth, and play music.
MIDI
This tutorial on MIDI is still in progress. For more see http://itp.nyu.edu/physcomp/Labs/MIDIOutput
http://www.arduino.cc/en/Tutorial/PIRSensor
http://www.arduino.cc/en/Tutorial/MIDI
/*
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.
created 13 Jun 2006 modified 2 Jul 2009 by Tom Igoe
http://www.arduino.cc/en/Tutorial/PIRSensor
*/
void setup() {
// Set MIDI baud rate: Serial.begin(31250);
}
void loop() {
// play notes from F#-0 (0x1E) to F#-5 (0x5A):
for (intnote = 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.print(cmd, BYTE); Serial.print(pitch, BYTE); Serial.print(velocity, BYTE);
}
Examples > Communication
MIDI
An LED connected to pin 9. use appropriate resistor as needed. For most common LEDs, you can usually do without the resistor, as the current output of the digital I/O pins is limited.
click the image to enlarge
Schematic
click the image to enlarge