Difference between revisions of "250a Homemade Digital Musical Instrument"

From CCRMA Wiki
Jump to: navigation, search
m
Line 100: Line 100:
  
 
Enjoy playing the instrument!  If you don't like the note mappings, change the contents of '''pd handle-buttons''', or go create your own musical instrument!
 
Enjoy playing the instrument!  If you don't like the note mappings, change the contents of '''pd handle-buttons''', or go create your own musical instrument!
 +
  
 
== How To Play It  ==
 
== How To Play It  ==
Line 110: Line 111:
  
 
[http://ccrma.stanford.edu/courses/250a/labs/extra/violin2.wav violin2.wav]
 
[http://ccrma.stanford.edu/courses/250a/labs/extra/violin2.wav violin2.wav]
 +
  
 
== Learning More ==
 
== Learning More ==

Revision as of 19:54, 16 April 2010

Homemade Digital Musical Instrument
Demo at the 159th Meeting of the Acoustical Society of America For the Session Homemade Musical Instruments for Teaching Acoustics

by Edgar Berdahl and Wendy Ju


This page can be reached on the WWW at http://ccrma.stanford.edu/wiki/250a_Homemade_Digital_Musical_Instrument


Mount your Arduino Nano on your breadboard

We will be powering the Nano and the breadboard with current from the USB port, which is good for up to 500mA of 5 V±5%-- probably enough for most input circuits, although not enough if you plan to run a lot of LEDs or motors.

  • The Nano should sit at the bottom of the breadboard, so that the pins lie in rows 49-64 on either side.
  • Using jumper wires, connect the row 52 pin (GND) on the left side of the Nano to the blue ground (GND) rail.
  • Connect the row 52 pin (+5V) on the right side of the Nano to the red Power rail.
  • Use jumper wires to connect the power and GND rails on the left side of the breadboard to the right.

Lab2-2.jpg


Install Firmata onto your Arduino Nano

  • Install the Arduino software
    • Unarchive the file, and move it to your applications folder.
    • Install the FTDI driver that comes with the Arduino software so that your computer will recognize the Arduino when it is plugged into the USB port.
  • Open the Arduino software.
  • Download the newest version of Pduino, unarchive it, and use the Arduino software program to open StandardFirmata.pde, which lies inside the folder Firmata-2.1:Firmata:examples:StandardFirmata.
  • Connect your Arduino Nano to your computer using a USB cable.
  • Use Tools->Board and Tools->Serial Port to select the Arduino Nano (Atmega 328) and USBserial tty port, then hit the Play button to verify and compile the program.
  • Upload the Firmata firmware to your Arduino Nano using upload button, the fourth square button from the left (the one with the sideways arrow).
  • Close the Arduino program. (This is important because it frees up the USB serial port so that Max/MSP or PD can talk to the Arduino board next.)


Install Pure Data Onto Your Computer

Install Pure Data Extended onto your computer.

  • Do NOT install the vanilla version of Pd!
  • Mess around with Pd a little bit to get a feel for it. Go through some of the tutorials in the Help|Brower menu.
  • In order to use the bowed string instrument synthesizer called Bowed~, you will need to install Stk2pd, which ports the Synthesis Toolkit to Pd.
  • Search your hard disk for the file Bowed~-help.pd and open it. See what it is like to employ a physical model to synthesize sound.


Wire Up Some Switches To Your Board

Here is the schematic for each switch. Closing the switch pulls the input to the Arduino to 0V; otherwise, if the switch is open, the voltage is about 5V.

Switch.png

Take each of the switches that you see here,

Switchuncut.jpg

and cut off the extra lead as shown to make it easier to mount into the protoboard.

Switchcut.jpg


Wire up the first switch as shown below with the middle pin placed in row 42 and the end pin in row 41:

Oneswitch.jpg

Connect a 220 Ohm (red-red-brown) resistor between row 42 and the supply voltage 5V (the red rail). Also connect row 42 to row 58, which connects to pin A2 of the Arduino. Finally connect row 41 to ground (0V).


Connect up the other switches in the same fashion to the analog input pins A3, A4, and A5 of the Arduino:

Fourswitches.jpg

Open up the file arduino-test.pd in Pd to check that the switches work. You will have to go into the subpatch pd old analog/digital controls in order to enable ananlog inputs A2-A5. (We could have used digital inputs instead since we only care if the switches are on or off, but the wiring was more convenient this way.)


Wire Up The Force-Sensing Resistive Strip

For more info on more common force-sensing resistors and other sensors, see this page. Here we have the circuit for SoftPot force sensing resistive strip and we show how it corresponds to the package. It has three terminals like a normal potentiometer, but there is an additional (variable) resistor connected to the center terminal.

Softpot.jpg


We connect it up to the Arduino using a special circuit so that it can be employed for both measuring position and pressure. When the Arduino's digital pin D5 is set to output HIGH, corresponding to about 5V, and when D6 is set to input, so it presents a high impedance, the circuit measures position like a normal potentiometer circuit. On the other hand, if D6 is set to output HIGH, corresponding to about 5V, and D5 is set to LOW (0V), then the circuit approximately measures pressure.

Softpotcircuit.jpg

The final circuit is shown below. A white wire connects the Softpot's center terminal to the Arduino's analog input A0 pin at row 60. This row is also connected to the ground (0V) rail by way of a 100kOhm (yellow-black-brown) resistor, and it connects to D6 by way of row 57 on the opposite side of the Arduino board. The Arduino's D5 pin at row 56 connects to the leftmost terminal of the Softpot via a black wire running underneath the board (not shown). Finally, the rightmost terminal of the Softpot connects to the ground (0V) rail by way of a short blue wire.

Finalcircuit.jpg


Run The Program

Download violin-demo.zip and extract its contents. *violin-demo.pd is the main patch. Open it in Pd. You will find that it is a version of Arduino-test.pd that has been adapted to control the Bowed~ STK object. If it does not choose the correct port, choose different serial port #'s until the Pd window says that it is connected to a tty usbserial device.

To help make it more clear what is happening, open the handle-switching subpatch. Every 50ms it switches back and forth between the two sensing modes described above for the Softpot. The sensed position is shown with the horizontal slider, and the sensed position is shown with the vertical slider. These raw inputs are passed out of this subpatch into another subpatch called pd synth-sound.

Handleswitching.jpg

Enjoy playing the instrument! If you don't like the note mappings, change the contents of pd handle-buttons, or go create your own musical instrument!


How To Play It

Lefthand.jpg Righthand.jpg Bothhands.jpg

I don't know why I was in the holiday spirit, but anyway here are two sound examples:

violin1.wav

violin2.wav


Learning More

Come take our New Music Controllers workshop!


250a 2010