DIY Electronic Synth: Difference between revisions
No edit summary |
No edit summary |
||
Line 47: | Line 47: | ||
[https://github.com/wadecore/arpeggiatingGlitchSynth/blob/master/arpeggiatingGlitchSynth.ino Arpeggiating Glitch Synth Mozzi Mod By Turbogoblin/Nugetteero] | [https://github.com/wadecore/arpeggiatingGlitchSynth/blob/master/arpeggiatingGlitchSynth.ino Arpeggiating Glitch Synth Mozzi Mod By Turbogoblin/Nugetteero] | ||
== ESP32 + MCP4675 | == ESP32 + MCP4675 == | ||
simple: | simple: | ||
Line 57: | Line 57: | ||
[https://forum.arduino.cc/t/bandwidth-of-uno-mcp4725-dac/364879 Bandwidth of Uno+MCP4725 DAC] | [https://forum.arduino.cc/t/bandwidth-of-uno-mcp4725-dac/364879 Bandwidth of Uno+MCP4725 DAC] | ||
explaination about Mozzi [https://sensorium.github.io/Mozzi/learn/output/#custom-interface-to-external-dacs-or-other-hardware Custom interface to external DACs or other hardware] |
Revision as of 04:50, 8 December 2024
I've been using mozzi to make a synth.
I did this: https://www.instructables.com/Arpeggiating-Synthesizer-Mosquito-I/
https://sensorium.github.io/Mozzi/
simple examples: https://sensorium.github.io/Mozzi/examples/#01.Basics
something simple:
https://sensorium.github.io/Mozzi/examples/#01.Basics
IUt was easy enough with the Arduino UNO . It has a DAC
I have a several; esp32 c3 which do not have a dac, and so I ask is a DAC requisite?
I need to learn some.
I'm reading:
https://diyelectromusic.com/2024/05/07/selecting-microcontrollers-for-music/
to to / read:
https://diyelectromusic.com/worksheets/
https://github.com/lucidbeaming/Camel/blob/master/camel-sample.ino
challenge: finding an Arduino with a DAC or just general mozzi support
- ESP32 originals have DAC, but not more recent more wide spread "dev" boards :(
- Teensy 3.X had DAC, but teensy 4.X , the currently available ones do not.
- my fav arduino pro mini doesn't as far as I can tell.
Maybe just bolt one on?
To read: https://projecthub.arduino.cc/Arduino_Scuola/build-a-simple-dac-for-your-arduino-5b72f5
https://diyelectromusic.com/2024/03/19/esp32-and-mozzi/
Arpeggiating Glitch Synth Mozzi Mod By Turbogoblin/Nugetteero
ESP32 + MCP4675
simple: https://sensorium.github.io/Mozzi/learn/introductory-tutorial/
so the challenge here is that mozzi support a i2s DAC, but MCP4725 is I2C dac.
google group chat with some good data
explaination about Mozzi Custom interface to external DACs or other hardware