Note: This tutorial could be outdated, please go here for a more current version.
Arduino I2S libraryThe new Arduino I2S library allows you to send and receive digital audio data on the I2S bus. This example aims to show how to use this library to drive an I2S DAC to reproduce sound computed within the Arduino sketch.
For more information about the library and how it works read the library page.
I2S ConnectionsThe I2S DAC used in this example needs only 3 wires for the I2S bus (plus power supply). Connections for the I2S on the Arduino MKRZero are the following:
- SD (Serial Data) on pin A6;
- SCK (Serial Clock) on pin 2;
- FS (Frame or Word Select) on pin 3;
A theremin has basically two controls:
- pitch
- volume
In this example these two parameters are changed moving two slide potentiometers, but you can modify it to read them using for example a ping sensor! In this way your theremin will be more realistic!
The two potentiometers are wired in a voltage divider fashion, so moving them you will get (from analogRead()
) values in the range 0 - 1023. These values are then mapped to between the minimum and maximum frequency and the minimum and maximum volume.
The sound sent on the I2S bus is a simple sine whose frequency and amplitude is changed according to the potentiometers reading.
Comments
Please log in or sign up to comment.