This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* (Not so) simple synth based on Mozzi library and a bunch of pots. | |
| * | |
| * This code is derived from the public domain example of an 8 potentiometer | |
| * synth from e-licktronic (https://www.youtube.com/watch?v=wH-xWqpa9P8). | |
| * | |
| * Severely edited for clarity and configurability, adjusted to run with modern | |
| * versions of Mozzi, extended for polyphony by Thomas Friedrichsmeier. Also, | |
| * this sketch will auto-generate fake MIDI events and random parameters, so | |
| * you can start listening without connecting anything other than your | |
| * headphones or amplifier. (Remove the FAKE_POTS and FAKE_MIDI defines, once |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // O2 Minipops rhythm box (c) DSP Synthesizers 2016 | |
| // Free for non commercial use | |
| // http://janostman.wordpress.com | |
| // changed the way tempo works | |
| // tempo controled by rising edge clock signal on pin 12 (instead of reset out) | |
| // can be used to syncronise O2 with eurorack etc. | |
| #include <avr/interrupt.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* (Not so) simple synth based on Mozzi library and a bunch of pots. | |
| * | |
| * This code is derived from the public domain example of an 8 potentiometer | |
| * synth from e-licktronic (https://www.youtube.com/watch?v=wH-xWqpa9P8). | |
| * | |
| * Severely edited for clarity and configurability, adjusted to run with modern | |
| * versions of Mozzi, extended for polyphony by Thomas Friedrichsmeier. Also, | |
| * this sketch will auto-generate fake MIDI events and random parameters, so | |
| * you can start listening without connecting anything other than your | |
| * headphones or amplifier. (Remove the FAKE_POTS and FAKE_MIDI defines, once |