Skip to content
deladriere edited this page Sep 23, 2015 · 4 revisions

Power setup

Jumper

Leaving the jumper on allows the module to be powered via the usb cable.
If you want to power it via the (16 or 10 pins) power cable, remove the jumper.

Power cable

If you have installed the 5V regulator, use a 10 pins cable.
If you want to power the module via 5V from the power cable, use a 16 pins cable.

Usb driver

Under windows you need to install the MCP2200 driver from Microchip.

Mozzi library

Install

You need to download the lasted version from the Mozzi website

Unzip the file and install the mozzi folder under your Arduino libraries directory.

Here is a nice guide on how to install a library : Arduino website

Configure Mozzi library

MoZmo works in Hi-fi mode.
You will have to edit the mozzi_config.h file to make it works in HIFI mode. Do this by commenting the standard mode and uncommenting the HIFI mode like :

you need to change

//#define AUDIO_MODE STANDARD
#define AUDIO_MODE STANDARD_PLUS
//#define AUDIO_MODE HIFI

into :

//#define AUDIO_MODE STANDARD
//#define AUDIO_MODE STANDARD_PLUS
#define AUDIO_MODE HIFI

to activate the wifimode

Configure Arduino IDE

Consider this module as an Arduino Uno board.
You should now be ready to upload you first sketch.