| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
SimpleSynth is a Teensy based synth with the main objective to keep it simple.
NOTE: I have stopped maintaining this repo in favor of Synth.
These instructions will get you a working copy of the SimpleSynth.
What things you need to make it work:
Teensy 3.2 Teensy audio board 9 potentiometers
First download or clone this repository and open it in Arduino.
Basically you just need to connect 9 potentiometers to the 0 to 8th analog Teensy's pins. If you'd like you can change the pin numbers just at the init in the main file Synth synth(0,1,2,3,4,5,6,7,8)
Here is a simple schema showing how to connect potentiometers, just in case:
You will have to set the USB type. Go in Tools > USB Type > Serial + MIDI + Audio
Now you are all set, just upload the code to the Teensy and play with it!
Here is a description of the 9 inputs and what they do:
1. Synth
1. FM
2. FMx10
3. Ring
4. AM
5. AMx10
2. Mode
1. Synth
2. Arp
3. Drone
3. Parameter
1. Synth: Glide (TODO)
2. Arp: Time (1 to 500ms)
. Arp with Midi clock (TODO)
3. Drone: Free frequency (0 to 1023Hz)
4. Modulator Frequency
1. FM / AM (1Hz - 50Hz)
2. FMx10 / AMx10 / Ring (1Hz - 500Hz)
5. Modulator Level (0 to 100%)
6. Sin/Saw Mix (TODO)
7. Attack (0 to 2000ms)
8. Decay (0 to 2000ms)
9. Release (0 to 2000ms)
SimpleSynth offers 3 types of synthesis:
Here is the schema from the audio design tool used in each voice:
https://www.pjrc.com/teensy/gui/
This could be optimized. For example, instead of using 5 oscillators (2 for FM, 2 for AM/Ring, and 1 to modulate) it could be 3: 1 sine, 1 sawtooth, 1 modulator. With that we could even use FM and AM/Ring together.
This is a priority TODO because the synth reaches the limit of Teensy 3.2 as to be a good polyphonic synth it requires at least 8 voices, so 8*5 oscillators = 40 oscilators and that seems to be too much for this chip.
Click on the images to watch the videos:
You can find me on Bandcamp and Instagram:
https://ghostintranslation.bandcamp.com/
https://www.instagram.com/ghostintranslation/
This project is licensed under the MIT License - see the LICENSE.md file for details
| Back | FazBrowse Home | New Git URL |