#396 CapacitiveTouchOrgan
A simple chromatic scale organ, controlled with a Freescale/NXP MPR121 Proximity Capacitive Touch Sensor and an Arduino.
Here’s a quick demo..
Notes
The MPR121 is a capacitive touch sensor. Originally produced by Freescale (now NXP), the part is end-of-life but still widely available, especially on breakout boards like this one.
Both Sparkfun and Adafruit have procude boards and tutorials at one point.
I think I first picked up one of these modules after watching Julian Ilett’s video:
Voltage Matching
The MPR121 is a <3.6V device, but I’m testing it here with an Arduino Uno running at 5V. The Uno conveniently provides 3.3V, which is fine to power the module, but that doesn’t help the I²C bus and interrupt.
Although I believe some have run the I²C at 5V without immediately destroying the module, I’m running the bus through a level shiter module.
Since the interrupt is output from the module (active low), it doesn’t need level shifting.
Code
The CapacitiveTouchOrgan sketch implements a simple 12-tone (chromatic scale from C5/523.25Hz) organ:
- on interrupt from the MPR121..
- uses the Adafruit_MPR121 library to get touch state via I²C/Wire
- sounds the corresponding tone on pin 8
Uses:
- Standard Wire Library
- Standard tone function
- Adafruit_MPR121
Breadboard Construction
Here’s an initial breadboard build:
Organ Construction
I decided to use 12 old 5 cent coins for touch control, and mount it on some Ikea honeycomb cardboard packing material (surprisingly useful for quick builds).
Some protoboard with headers provides mountings for the MPR121 and level-shifting modules.
An 8Ω speaker with 100Ω current-limiting resistor is also mounted on the cardboard base.
I decided not to build-in and Arduino, so just provided a row of headers for connecting an external Arduino
My sketch of pin layouts on the protoboard:
All connections on the underside of the cardboard base:
Credits and References
- MPR121: Proximity Capacitive Touch Sensor Controller - archived product data
- MPR121 Hookup Guide - sparkfun
- 1-Day Project: MPR121 Capacitive Touch Sensor Music Organ - Julian Ilett
- Adafruit MPR121 12-Key Capacitive Touch Sensor Breakout Tutorial
- MPR121 Breakout v12 Proximity Capacitive Touch Sensor Controller Keyboard Development Board - example from aliexpress seller
- Frequencies for equal-tempered scale, A4 = 440 Hz
- ..as mentioned on my blog