diff --git a/hardware/datasheets/A1301-2-Datasheet.pdf b/hardware/datasheets/A1301-2-Datasheet.pdf new file mode 100644 index 0000000..0d49ab0 Binary files /dev/null and b/hardware/datasheets/A1301-2-Datasheet.pdf differ diff --git a/software/lib/MMM/examples/Music/_8_midi/_8_midi.ino b/software/lib/MMM/examples/Music/_8_midi/_8_midi.ino index c738708..4388997 100644 --- a/software/lib/MMM/examples/Music/_8_midi/_8_midi.ino +++ b/software/lib/MMM/examples/Music/_8_midi/_8_midi.ino @@ -10,14 +10,18 @@ // The Music object is automatically instantiated when the header file is // included. Make calls to the Music objects with "Music.function(args)". // You still need to call Music.init() in the setup() function below. +#define NUM_OSCILLATORS 3 +#define BIT_DEPTH 8 +#define MIDI +#define MIDI_CHANNEL 1 #include void setup() { // We initialise the sound engine by calling Music.init() which outputs a tone Music.init(); - Midi.init(); Music.enableEnvelope(); + Midi.init(); }