sensorium / Mozzi

sound synthesis library for Arduino
https://sensorium.github.io/Mozzi/
GNU Lesser General Public License v2.1
1.05k stars 184 forks source link

Mozzi

sound synthesis library for Arduino

Currently your Arduino can only beep like a microwave oven. Mozzi brings your Arduino to life by allowing it to produce much more complex and interesting growls, sweeps and chorusing atmospherics. These sounds can be quickly and easily constructed from familiar synthesis units like oscillators, delays, filters and envelopes.

You can use Mozzi to generate algorithmic music for an installation or performance, or make interactive sonifications of sensors, on a small, modular and super cheap Arduino, without the need for additional shields, message passing or external synths.


Features


Installation

The easiest installation option nowadays is to install Mozzi via the Library Manager in your Arduino application: Arduino➞Sketch➞Include Library➞Library Manager type "Mozzi" into the search field, then click "install".

For other installation methods (e.g. the development version), see the Download page.

Quick Start

To hear Mozzi, wire a 3.5mm audio jack with the centre to the audio out pin for your Arduino as shown in the table below, and the shield to GND on the Arduino. Plug into your computer and listen with a sound program like Audacity. (Or connect any other high-impedance input, like an active speaker) Try some examples from the File > Examples > Mozzi menu.

For more about audio output, including high quality output modes Mozzi Output tutorial.

A note for users coming from Mozzi 1.x

Mozzi 2.0 brings a lot of changes under the hood, and is not 100% source compatible with earlier versions of Mozzi. Most sketches should continue to compile, but with a lot of warnings. A few others will no longer work. See Porting to Mozzi 2.0 for what to change. If desparate, there is still a "Mozzi_1" branch in the git repository, but this will not get any new development.

Supported boards, output modes and default pins

Table is not necessarily complete. Abbreviations explained below the table. The default output mode is in bold for each row. If stereo is supported, in a mode, the cell PWM-1 has two numbers with the second pin number is given in parentheses (+X). Check the hardware section of the API-documentation for platform specific notes and (pin) configuration options.

Board or family / Output mode PWM-1 PWM-2 PDM inbuilt DAC I2S DAC (native)
ATmega328/168: Uno (R3), Nano, Pro Mini, Duemilanove, Leonardo, etc. 9 (+10) 9, 10
ATmega32U4: Teensy, Teensy2, 2++ B5/B6 correspond to pins 14/15 in Arduino B5 (+B6) B5, B6
ATmega2560: Arduino Mega, Freetronics EtherMega, etc. 11 (+12) 11, 12
ATmega1284: Sanguino 13 (+12) 13, 12
Teensy3.x - note: DAC Pin number depends on model: A14, A12, or A21 DAC
Teensy4.x A8 (+A9)
LGT8F328P: "Register clone" of the ATmega328, uses the same code in Mozzi 9 (+10) 9, 10
SAMD: Arduino Nano 33 Iot, Adafruit Playground Express, Gemma M0 etc. A0/Speaker
Renesas Arduino Core: Arduino Uno R4 A0
Arduino MBED Core: Arduino Giga (only model tested so far in this family) SERIAL2TX A13 (+A12)
STM32 maple core: Various STM32F1 and STM32F4 boards, "Blue/Black Pill" PB8 (+PB9) PB8, PB9
STM32duino (STM official) core: Huge range of STM32Fx boards PA8 (+PA9) PA8, PA9
ESP8266: ESP-01, Wemos D1 mini, etc. note: Beware of erratic pin labels GPIO2 yes
ESP32: note: Beware of vastly different pin labels across board variants yes GPIO25 (+GPIO26) yes
RP2040: Raspberry Pi Pico and friends 0 (+1) 0, 1 yes
  • PWM-1: 1-pin PWM mode (MOZZI_OUTPUT_PWM)
  • PWM-2: 2-pin PWM mode (MOZZI_OUTPUT_2PIN_PWM)
  • PDM: Pulse density modulation, may be either MOZZI_OUTPUT_PDM_VIA_SERIAL or MOZZI_OUTPUT_PDM_VIA_I2S
  • inbuilt DAC: MOZZI_OUTPUT_INTERNAL_DAC
  • I2S DAC (native): native support for externally connected I2S DACs (MOZZI_OUTPUT_I2S_DAC). Since this requires several, often configurable pins, and is never the default option, no pin numbers are shown in this table.
  • All platforms also support "external" output modes (MOZZI_OUTPUT_EXTERNAL_TIMED or MOZZI_OUTPUT_EXTERNAL_CUSTOM), which allow for connecting DACs or other external circuitry.

Using Mozzi

Here's a template for an empty Mozzi sketch:

#include <Mozzi.h>   // at the top of your sketch

void setup() {
    startMozzi();
}

void updateControl(){
    // your control code
}

AudioOutput_t updateAudio(){
    MonoOutput::from16Bit( [my_cool_sample] );
}

void loop() {
    audioHook();
}

There's a detailed example explaining the different parts here.

Documentation

For getting started, browse the practical help on the learn page on the Mozzi site.
API reference documentation is available in the doc folder in the Mozzi download and online.
Start or look up a topic on the users forum.
Also, feel free to submit any issues on the GitHub Mozzi site.
Look for code and usage changes here.
For hardware specific details, including supported features, caveats, and hardware-dependent configuration options, refer to the Hardware Section of the API-Documentation.

Compatibiliy issues

Extending Mozzi

Using external chips to produce the sound

External chips (DAC) can also be used on any platform which does not support natively the I2S protocol using an user defined audioOutput function. This can allow a greater audio quality over the native ways to output the sound (PWM for AVR Arduinos and STM32 and 12 bit DAC for Teensy 3.*). Examples are provided for the MCP492X DAC (12 bit on SPI) and for the (PT8211) 16 bit stereo DAC using SPI port to emulate the I2S protocol. The latter should be compatible with any DAC using I2S.

Extendig the library itself

If you enjoy using Mozzi for a project, or have extended it, we would be pleased to hear about it and provide support wherever possible. Contribute suggestions, improvements and bug fixes to the Mozzi wiki on Github, or Fork it to contribute directly to future developments.

Mozzi is a development of research into Mobile Sonification in the SweatSonics project.


Contributions / Included Dependencies

Modified versions of the following libraries are included in the Mozzi download:

TimerOne library
FrequencyTimer2 library - now a fork with support for ATmega32u4 processors

Mozzi has also drawn on and been influenced by (among many others):

xorshift random number generator, George Marsaglia, (2003)
ead~.c puredata external (creb library) Copyright (c) 2000-2003 by Tom Schouten (GPL2)
AF_precision_synthesis by Adrian Freed, 2009
Resonant filter posted to musicdsp.org by Paul Kellett, and fixed point version of the filter on dave's blog of art and programming
State Variable filter pseudocode at musicdsp.org and here
Various examples from Pure Data by Miller Puckette
Practical synthesis tutorials by Andy Farnell


Use and Remix

Mozzi is licensed under a the LGPL version 2.1 or (at your option) any later version of the license.

Disclaimer: This is a human-readable summary of (and not a substitute for) the license.