Sie sind auf Seite 1von 4

Food

Living

Outside

Play

Technology

Workshop

Arduino Optical Theremin


by gwarbeh on September 25, 2012

Table of Contents
Arduino Optical Theremin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Intro: Arduino Optical Theremin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Step 1: Hack the headphones . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Step 2: Assemble the circuits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Step 3: Write the code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

File Downloads . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Step 4: Play (see video link) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Related Instructables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

http://www.instructables.com/id/Arduino-Optical-Theremin/

Intro: Arduino Optical Theremin


When I first became aware of Arduino, a theremin seemed like a natural project: sensor + actuator. It turned out to be quite affordable and fun to make. It is a naive
design, using just one photocell and some hacked headphones. After some experimentation, I decided that a self-calibrating function was essential if I wanted repeatable
performance in different light levels. Also, I decided to autotune it using math instead of a lookup table. To me, the pentatonic tuning is the most pleasant, although this
can be adjusted easily to chromatic or other tuning schemes if desired.
Here's a list of the materials I used:
* Arduino Uno (running on Mac OS X 10.7.4 Intel)
* USB cable
* Breadboard
* Super-cheap earbud style headphones (from a plane flight, I think)
* standard small photocell
* 10K Ohm resistor
* Some wire
* Soldering gun with solder

Step 1: Hack the headphones


In order to send signals to the headphones, I cut the wires and soldered them to some jumper wires. There are a few tricky points here.
First, once you cut the wires and strip off some insulation, you should see 4 wires, 2 from each side. Each pair forms a circuit with a single headphone. So we can
effectively think of each pair as containing a + wire (usually colored red or blue) and a ground wire (usually copper colored). We can either just use 1 of the headphones
(and thus one of the wire pairs), or we can combine the wires to use both, thereby achieving twice the fun. To do this, we will want to solder the + wire from each pair
together to one jumper wire, and the ground wire from each pair to the other jumper wire. See detail photo of headphone hack above.
Second, beneath the obvious rubber insulation, there is often a mostly invisible resin layer coating the 4 individual wires. The easiest way to get it off is to heat it with a
lighter until the wires appear to burn briefly. Note that after this is done, the colors can be very difficult to discern, so it is a good idea to leave a section unburned that you
can use to identify them. I also use a wet cloth to wipe of some of the residue from the burnt resin to improve conduction.
For the actual soldering, I have very primitive equipment, so I just twist the headphone wires together and around the jumper cable and then drip some solder on that.

http://www.instructables.com/id/Arduino-Optical-Theremin/

Step 2: Assemble the circuits


There are two simple circuits involved.
Headphone circuit: Use any Adruino digital out pin and a ground to make the circuit with the headphone jumper cables.
Sensor circuit: It's a standard voltage divider job that lets the varying resistance of the photocell modulate a voltage read by an Arduino analog in pin. First, I make a
series circuit that starts from the Arduino 5V power pin, goes to my photocell, then to my 10K Ohm resistor, and finally back to Arduino ground. I probe the voltage at the
node between the resistor and the photocell using the A0 analog in pin.
Occasionally, I had problems with flaky connections. I think I need to use better jumper cables next time. When things just weren't working right, I could just wiggle some
cables and identify the flaky connection. Securing the cable more firmly in the breadboard or re-burning the resin always did the trick.

Step 3: Write the code


The heart of the code is basically two commands:
* An analogRead that gets the value of the voltage from pin A0. This effectively measures the light level on the photocell.
* A tone command that sends a signal to pin 9 and causes the headphones to produce a tone at a specified frequency.
Of course there are a lot of other things to be done:
* Variable definitions
* setting up pin 9 for output
* Calibration loop: The user exposes the photocell to a range of light levels, teaching the program how to scale frequencies
* Compute scale and shift parameters based on calibration data
* Autotuning: rounding frequencies to the nearest desired note using logarithms
The sketch is attached as a text file and has a ton of comments.

File Downloads

OpticalTheremin.rtf (3 KB)
[NOTE: When saving, if you see .tmp as the file ext, rename it to 'OpticalTheremin.rtf']

Step 4: Play (see video link)


Now you just open the Arduino editor, verify the sketch, plug in the USB, and upload. Here 's a video of what it should be like.
Of course there's plenty of room for modification and improvement. Some possibilities include:
* Adding a volume control like (potentiometer, or another photocell)
* Using a better speaker
* Making the code more efficient (fewer doubles)
* Taking advantage of the map function instead of mapping the calibration by hand
Feel free to suggest your own ideas, and have fun annoying people with your theremin.

Related Instructables

Augment a
Moog
Etherwave
Theremin by
jmsaavedra

The Tight Light


Theremin by
rtty21

Arduino
Photocell
Theremin Synth
(glitchamin) by
gatesphere

Optical
Theremin
Performance
(video) by farnea

http://www.instructables.com/id/Arduino-Optical-Theremin/

555 SquareWave Theremin


by toast5678

Theremin
w/Zapper,laser,Arduino
by duboisvb

http://www.instructables.com/id/Arduino-Optical-Theremin/

Das könnte Ihnen auch gefallen