Loading...

Tutorial.Midi History

Hide minor edits - Show changes to markup

May 02, 2012, at 10:08 AM by Scott Fitzgerald -
Changed line 50 from:

(:source http://arduino.cc/en/pub/code/master/build/shared/examples/4.Communication/MIDI/Midi.ino lang=arduino tabwidth=4:)

to:

(:source http://arduino.cc/en/pub/code/master/build/shared/examples/04.Communication/MIDI/Midi.ino lang=arduino tabwidth=4:)

November 15, 2011, at 10:15 PM by Scott Fitzgerald -
Changed line 50 from:

(:source http://arduino.cc/en/pub/code/new-extension/build/shared/examples/4.Communication/MIDI/Midi.ino lang=arduino tabwidth=4:)

to:

(:source http://arduino.cc/en/pub/code/master/build/shared/examples/4.Communication/MIDI/Midi.ino lang=arduino tabwidth=4:)

September 29, 2011, at 09:16 PM by Scott Fitzgerald -
Changed line 50 from:

(:source https://raw.github.com/arduino/Arduino/master/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4:)

to:

(:source http://arduino.cc/en/pub/code/new-extension/build/shared/examples/4.Communication/MIDI/Midi.ino lang=arduino tabwidth=4:)

September 23, 2011, at 07:14 PM by Tom Igoe -
Changed lines 1-34 from:

SerialEvent

serialEvent()

Description

Called when data is available. Use Serial.read() to capture this data. The serialEvent() can be set with Serial.buffer() to only trigger after a certain number of data elements are read and can be set with Serial.bufferUntil() to only trigger after a specific character is read.

Syntax

(:source lang=arduino tabwidth=4:)

void serialEvent(){ //statements } (:sourceend:)

Arduino Mega only: (:source lang=arduino tabwidth=4:) void serialEvent1(){ //statements }

void serialEvent2(){ //statements }

void serialEvent3(){ //statements } (:sourceend:)

Parameters

statements: any valid statements

to:

Examples > Communication

MIDI Note Player

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.

Hardware Required

  • Arduino Board
  • (1) MIDI jack
  • (1) 220 ohm resistor
  • hook-up wire
  • MIDI enabled device (optional, for testing)

Circuit

All MIDI connectors are female, by definition of the MIDI spec. Here's how to wire the connector to the Arduino:

  • Arduino digital pin 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

click the image to enlarge

image developed using Fritzing. For more circuit examples, see the Fritzing project page

Schematic

click the image to enlarge

Code

(:div class=code :)

(:source https://raw.github.com/arduino/Arduino/master/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4:)

(:divend:)

See Also:

September 23, 2011, at 07:11 PM by Tom Igoe -
Changed lines 1-61 from:

Examples > Communication

MIDI Note Player

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.

Hardware Required

  • Arduino Board
  • (1) MIDI jack
  • (1) 220 ohm resistor
  • hook-up wire
  • MIDI enabled device (optional, for testing)

Circuit

All MIDI connectors are female, by definition of the MIDI spec. Here's how to wire the connector to the Arduino:

  • Arduino digital pin 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

click the image to enlarge

image developed using Fritzing. For more circuit examples, see the Fritzing project page

Schematic

click the image to enlarge

Code

(:div class=code :)

(:source https://raw.github.com/arduino/Arduino/master/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4:)

(:divend:)

See Also:

to:

SerialEvent

serialEvent()

Description

Called when data is available. Use Serial.read() to capture this data. The serialEvent() can be set with Serial.buffer() to only trigger after a certain number of data elements are read and can be set with Serial.bufferUntil() to only trigger after a specific character is read.

Syntax

(:source lang=arduino tabwidth=4:)

void serialEvent(){ //statements } (:sourceend:)

Arduino Mega only: (:source lang=arduino tabwidth=4:) void serialEvent1(){ //statements }

void serialEvent2(){ //statements }

void serialEvent3(){ //statements } (:sourceend:)

Parameters

statements: any valid statements

September 23, 2011, at 07:05 PM by Tom Igoe -
August 02, 2011, at 03:18 AM by Davide Gomba -
Changed line 50 from:

(:source http://arduino.googlecode.com/svn/trunk/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4:)

to:

(:source https://raw.github.com/arduino/Arduino/master/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4:)

September 23, 2010, at 04:36 PM by Christian Cerrito -
Changed lines 3-4 from:

MIDI Note Player

to:

MIDI Note Player

September 16, 2010, at 04:15 PM by Tom Igoe -
Changed line 50 from:
 (:source http://arduino.googlecode.com/svn/trunk/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4 border=0:)
to:

(:source http://arduino.googlecode.com/svn/trunk/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4:)

September 16, 2010, at 04:15 PM by Tom Igoe -
Changed line 50 from:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/4.Communication/MIDI/Midi.pde border=0:)
to:
 (:source http://arduino.googlecode.com/svn/trunk/build/shared/examples/4.Communication/MIDI/Midi.pde lang=arduino tabwidth=4 border=0:)
September 15, 2010, at 08:25 PM by Christian Cerrito -
Changed lines 57-61 from:
to:
Deleted lines 59-60:
  • Serial Call and Response ASCII - send multiple vairables using a call-and-response (handshaking) method, and ASCII-encoding the values before sending.
  • If Statement - how to use an if statement to change output conditions based on changing input conditions.
Deleted lines 60-70:
  • Array: a variation on the For Loop example that demonstrates how to use an array.
  • While Loop: how to use a while loop to calibrate a sensor while a button is being read.
  • Switch Case: how to choose between a discrete number of values. Equivalent to multiple If statements. This example shows how to divide a sensor's range into a set of four bands and to take four different actions depending on which band the result is in.

See Also:

September 15, 2010, at 08:24 PM by Christian Cerrito -
Changed lines 52-77 from:

(:divend:)

to:

(:divend:)

See Also:

  • serial.begin()
  • serial.read()
  • switch() case
  • if() statement
  • digitalWrite()

  • Serial Call Response - send multiple variables using a call and response (handshaking) method.
  • Serial Call and Response ASCII - send multiple vairables using a call-and-response (handshaking) method, and ASCII-encoding the values before sending.
  • If Statement - how to use an if statement to change output conditions based on changing input conditions.
  • For Loop: - controlling multiple LEDs with a for loop.
  • Array: a variation on the For Loop example that demonstrates how to use an array.
  • While Loop: how to use a while loop to calibrate a sensor while a button is being read.
  • Switch Case: how to choose between a discrete number of values. Equivalent to multiple If statements. This example shows how to divide a sensor's range into a set of four bands and to take four different actions depending on which band the result is in.

See Also:

September 15, 2010, at 08:06 PM by Christian Cerrito -
Changed line 19 from:
  • MIDI Connector
to:
  • (1) MIDI jack
Changed line 28 from:
  • digital in 1 connected to MIDI jack pin 5
to:
  • Arduino digital pin 1 connected to MIDI jack pin 5
September 15, 2010, at 08:05 PM by Christian Cerrito -
Changed lines 22-23 from:
  • MIDI enabled device "(optional, for testing)"
to:
  • MIDI enabled device (optional, for testing)
September 15, 2010, at 08:04 PM by Christian Cerrito -
Deleted line 8:
Deleted line 14:
Added lines 17-23:

Hardware Required

  • Arduino Board
  • MIDI Connector
  • (1) 220 ohm resistor
  • hook-up wire
  • MIDI enabled device "(optional, for testing)"
September 15, 2010, at 07:58 PM by Christian Cerrito -
Changed lines 17-18 from:

For more see this introduction to MIDI or this example.

to:

For more see this introduction to MIDI or this example.

September 15, 2010, at 07:56 PM by Christian Cerrito -
Changed line 45 from:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/MIDI/Midi.pde border=0:)
to:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/4.Communication/MIDI/Midi.pde border=0:)
February 23, 2010, at 02:14 PM by Tom Igoe -
Changed line 45 from:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/Midi/Midi.pde border=0:)
to:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/MIDI/Midi.pde border=0:)
February 23, 2010, at 02:13 PM by Tom Igoe -
February 23, 2010, at 02:13 PM by Tom Igoe -
Changed line 45 from:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/MIDI/MIDI.pde border=0:)
to:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/Midi/Midi.pde border=0:)
February 23, 2010, at 02:12 PM by Tom Igoe -
Changed lines 45-50 from:
 /*
  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.
to:
 (:includeurl http://arduino.googlecode.com/svn/trunk/build/shared/examples/Communication/MIDI/MIDI.pde border=0:)
Deleted lines 46-85:
  
  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);
 }
August 27, 2009, at 02:57 PM by Tom Igoe -
Changed lines 32-34 from:
to:

image developed using Fritzing. For more circuit examples, see the Fritzing project page

July 05, 2009, at 01:44 PM by Tom Igoe -
Changed lines 41-44 from:

[@ /*

 MIDI note player
to:

(: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.
Changed lines 50-53 from:
 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.
to:
  
  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.
Changed lines 57-65 from:
 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 
to:
  created 13 Jun 2006
  modified 2 Jul 2009
  by Tom Igoe 
  
  http://www.arduino.cc/en/Tutorial/MIDI
  
  */
Changed lines 65-68 from:
 http://www.arduino.cc/en/Tutorial/MIDI
to:
 void setup() {
   //  Set MIDI baud rate:
   Serial.begin(31250);
 }
Changed lines 70-98 from:
 */

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);

}

@]

to:
 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:)

July 02, 2009, at 06:51 PM by Tom Igoe -
Added lines 5-6:

This tutorial shows how to play MIDI notes from an Arduino.

Changed lines 17-18 from:

For more see this introduction to MIDI or this example

to:

For more see this introduction to MIDI or this example.

Changed lines 27-29 from:

Attach a MIDI cable to the jack, then to a MIDI synth, and play music.

to:
July 02, 2009, at 06:50 PM by Tom Igoe -
Changed lines 5-16 from:

This tutorial on MIDI is still in progress. For more see http://itp.nyu.edu/physcomp/Labs/MIDIOutput

to:

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

Changed lines 18-19 from:

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.

to:

All MIDI connectors are female, by definition of the MIDI spec. Here's how to wire the connector to the Arduino:

  • 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.

July 02, 2009, at 06:30 PM by Tom Igoe -
Changed lines 5-6 from:

MIDI

to:

This tutorial on MIDI is still in progress. For more see http://itp.nyu.edu/physcomp/Labs/MIDIOutput

Changed line 42 from:
 http://www.arduino.cc/en/Tutorial/PIRSensor
to:
 http://www.arduino.cc/en/Tutorial/MIDI
July 02, 2009, at 06:29 PM by Tom Igoe -
Changed lines 25-26 from:
to:

/*

 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);

}

Deleted lines 73-74:

Max code

July 02, 2009, at 06:15 PM by Tom Igoe -
Added lines 1-29:

Examples > Communication

MIDI Note Player

MIDI

Circuit

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

Code




Max code




Bookmark and Share