├── .gitignore ├── ADSR ├── ADSR-cache.lib ├── ADSR.asc ├── ADSR.kicad_pcb ├── ADSR.plt ├── ADSR.pro └── ADSR.sch ├── Glider ├── Glider-cache.lib ├── Glider.kicad_pcb ├── Glider.pro └── Glider.sch ├── Lights ├── Lights-cache.lib ├── Lights-rescue.kicad_sym ├── Lights.kicad_pcb ├── Lights.kicad_prl ├── Lights.kicad_pro ├── Lights.kicad_sch ├── Lights.pro ├── Lights.sch ├── Lights_back.kicad_pcb ├── Lights_back.pro ├── Lights_front.kicad_pcb ├── Lights_front.pro ├── MIDI.kicad_sch ├── MIDI.sch ├── Normalize.kicad_sch ├── Normalize.sch ├── Switching.kicad_sch ├── Switching.sch ├── firmware │ └── firmware.ino └── sym-lib-table ├── MiniSynth ├── MiniSynth-cache.lib ├── MiniSynth.kicad_pcb ├── MiniSynth.pro └── MiniSynth.sch ├── ModuleTester └── ModuleTester.asc ├── PLL ├── PLL-cache.lib ├── PLL.kicad_pcb ├── PLL.pro ├── PLL.sch └── input_stage.asc ├── Quantizer ├── Quantizer-cache.lib ├── Quantizer.kicad_pcb ├── Quantizer.pro └── Quantizer.sch ├── README.md ├── RJG ├── Drums.sch ├── Duration.sch ├── Notes.sch ├── Random Jazz Generator-cache.lib ├── Random Jazz Generator.kicad_pcb ├── Random Jazz Generator.pro ├── Random Jazz Generator.sch ├── RandomByteGenerator.pro ├── RandomByteGenerator.sch └── schematic.pdf ├── Scope ├── Scope-cache.lib ├── Scope.kicad_pcb ├── Scope.pro ├── Scope.sch └── input_stage.asc ├── TR-808_BassDrum ├── TR-808_BassDrum.asc └── TR-808_BassDrum.plt ├── VCA ├── JFET.asc ├── JFET.plt ├── VCA-cache.lib ├── VCA.kicad_pcb ├── VCA.pro └── VCA.sch ├── VCO ├── CV2exp.asc ├── CV2exp.plt ├── CV2exp2.asc ├── CVmixer.sch ├── Exponantiator.sch ├── SecondariesWaveforms.sch ├── VCO-cache.lib ├── VCO.asc ├── VCO.kicad_pcb ├── VCO.pro ├── VCO.sch ├── VCOcore.sch └── ramp2triangle.asc ├── Wavefolder ├── Wavefolder-cache.lib ├── Wavefolder.kicad_pcb ├── Wavefolder.pro ├── Wavefolder.sch ├── wavefolder.asc └── wavefolder.plt └── tests ├── ramp ├── current_source.asc ├── ramp.asc ├── ramp.plt └── variable_resistor.asc ├── ramp2triangle └── ramp2triangle.asc └── square2ramp ├── agc.asc ├── agc.plt ├── agc2.asc ├── square2ramp.asc └── square2ramp.plt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/.gitignore -------------------------------------------------------------------------------- /ADSR/ADSR-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/ADSR/ADSR-cache.lib -------------------------------------------------------------------------------- /ADSR/ADSR.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/ADSR/ADSR.asc -------------------------------------------------------------------------------- /ADSR/ADSR.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/ADSR/ADSR.kicad_pcb -------------------------------------------------------------------------------- /ADSR/ADSR.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/ADSR/ADSR.plt -------------------------------------------------------------------------------- /ADSR/ADSR.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/ADSR/ADSR.pro -------------------------------------------------------------------------------- /ADSR/ADSR.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/ADSR/ADSR.sch -------------------------------------------------------------------------------- /Glider/Glider-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Glider/Glider-cache.lib -------------------------------------------------------------------------------- /Glider/Glider.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Glider/Glider.kicad_pcb -------------------------------------------------------------------------------- /Glider/Glider.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Glider/Glider.pro -------------------------------------------------------------------------------- /Glider/Glider.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Glider/Glider.sch -------------------------------------------------------------------------------- /Lights/Lights-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights-cache.lib -------------------------------------------------------------------------------- /Lights/Lights-rescue.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights-rescue.kicad_sym -------------------------------------------------------------------------------- /Lights/Lights.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights.kicad_pcb -------------------------------------------------------------------------------- /Lights/Lights.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights.kicad_prl -------------------------------------------------------------------------------- /Lights/Lights.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights.kicad_pro -------------------------------------------------------------------------------- /Lights/Lights.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights.kicad_sch -------------------------------------------------------------------------------- /Lights/Lights.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights.pro -------------------------------------------------------------------------------- /Lights/Lights.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights.sch -------------------------------------------------------------------------------- /Lights/Lights_back.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights_back.kicad_pcb -------------------------------------------------------------------------------- /Lights/Lights_back.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights_back.pro -------------------------------------------------------------------------------- /Lights/Lights_front.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights_front.kicad_pcb -------------------------------------------------------------------------------- /Lights/Lights_front.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Lights_front.pro -------------------------------------------------------------------------------- /Lights/MIDI.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/MIDI.kicad_sch -------------------------------------------------------------------------------- /Lights/MIDI.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/MIDI.sch -------------------------------------------------------------------------------- /Lights/Normalize.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Normalize.kicad_sch -------------------------------------------------------------------------------- /Lights/Normalize.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Normalize.sch -------------------------------------------------------------------------------- /Lights/Switching.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Switching.kicad_sch -------------------------------------------------------------------------------- /Lights/Switching.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/Switching.sch -------------------------------------------------------------------------------- /Lights/firmware/firmware.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/firmware/firmware.ino -------------------------------------------------------------------------------- /Lights/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Lights/sym-lib-table -------------------------------------------------------------------------------- /MiniSynth/MiniSynth-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/MiniSynth/MiniSynth-cache.lib -------------------------------------------------------------------------------- /MiniSynth/MiniSynth.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/MiniSynth/MiniSynth.kicad_pcb -------------------------------------------------------------------------------- /MiniSynth/MiniSynth.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/MiniSynth/MiniSynth.pro -------------------------------------------------------------------------------- /MiniSynth/MiniSynth.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/MiniSynth/MiniSynth.sch -------------------------------------------------------------------------------- /ModuleTester/ModuleTester.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/ModuleTester/ModuleTester.asc -------------------------------------------------------------------------------- /PLL/PLL-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/PLL/PLL-cache.lib -------------------------------------------------------------------------------- /PLL/PLL.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/PLL/PLL.kicad_pcb -------------------------------------------------------------------------------- /PLL/PLL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/PLL/PLL.pro -------------------------------------------------------------------------------- /PLL/PLL.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/PLL/PLL.sch -------------------------------------------------------------------------------- /PLL/input_stage.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/PLL/input_stage.asc -------------------------------------------------------------------------------- /Quantizer/Quantizer-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Quantizer/Quantizer-cache.lib -------------------------------------------------------------------------------- /Quantizer/Quantizer.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Quantizer/Quantizer.kicad_pcb -------------------------------------------------------------------------------- /Quantizer/Quantizer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Quantizer/Quantizer.pro -------------------------------------------------------------------------------- /Quantizer/Quantizer.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Quantizer/Quantizer.sch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/README.md -------------------------------------------------------------------------------- /RJG/Drums.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/Drums.sch -------------------------------------------------------------------------------- /RJG/Duration.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/Duration.sch -------------------------------------------------------------------------------- /RJG/Notes.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/Notes.sch -------------------------------------------------------------------------------- /RJG/Random Jazz Generator-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/Random Jazz Generator-cache.lib -------------------------------------------------------------------------------- /RJG/Random Jazz Generator.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/Random Jazz Generator.kicad_pcb -------------------------------------------------------------------------------- /RJG/Random Jazz Generator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/Random Jazz Generator.pro -------------------------------------------------------------------------------- /RJG/Random Jazz Generator.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/Random Jazz Generator.sch -------------------------------------------------------------------------------- /RJG/RandomByteGenerator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/RandomByteGenerator.pro -------------------------------------------------------------------------------- /RJG/RandomByteGenerator.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/RandomByteGenerator.sch -------------------------------------------------------------------------------- /RJG/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/RJG/schematic.pdf -------------------------------------------------------------------------------- /Scope/Scope-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Scope/Scope-cache.lib -------------------------------------------------------------------------------- /Scope/Scope.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Scope/Scope.kicad_pcb -------------------------------------------------------------------------------- /Scope/Scope.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Scope/Scope.pro -------------------------------------------------------------------------------- /Scope/Scope.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Scope/Scope.sch -------------------------------------------------------------------------------- /Scope/input_stage.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Scope/input_stage.asc -------------------------------------------------------------------------------- /TR-808_BassDrum/TR-808_BassDrum.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/TR-808_BassDrum/TR-808_BassDrum.asc -------------------------------------------------------------------------------- /TR-808_BassDrum/TR-808_BassDrum.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/TR-808_BassDrum/TR-808_BassDrum.plt -------------------------------------------------------------------------------- /VCA/JFET.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCA/JFET.asc -------------------------------------------------------------------------------- /VCA/JFET.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCA/JFET.plt -------------------------------------------------------------------------------- /VCA/VCA-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCA/VCA-cache.lib -------------------------------------------------------------------------------- /VCA/VCA.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCA/VCA.kicad_pcb -------------------------------------------------------------------------------- /VCA/VCA.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCA/VCA.pro -------------------------------------------------------------------------------- /VCA/VCA.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCA/VCA.sch -------------------------------------------------------------------------------- /VCO/CV2exp.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/CV2exp.asc -------------------------------------------------------------------------------- /VCO/CV2exp.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/CV2exp.plt -------------------------------------------------------------------------------- /VCO/CV2exp2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/CV2exp2.asc -------------------------------------------------------------------------------- /VCO/CVmixer.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/CVmixer.sch -------------------------------------------------------------------------------- /VCO/Exponantiator.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/Exponantiator.sch -------------------------------------------------------------------------------- /VCO/SecondariesWaveforms.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/SecondariesWaveforms.sch -------------------------------------------------------------------------------- /VCO/VCO-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/VCO-cache.lib -------------------------------------------------------------------------------- /VCO/VCO.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/VCO.asc -------------------------------------------------------------------------------- /VCO/VCO.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/VCO.kicad_pcb -------------------------------------------------------------------------------- /VCO/VCO.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/VCO.pro -------------------------------------------------------------------------------- /VCO/VCO.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/VCO.sch -------------------------------------------------------------------------------- /VCO/VCOcore.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/VCOcore.sch -------------------------------------------------------------------------------- /VCO/ramp2triangle.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/VCO/ramp2triangle.asc -------------------------------------------------------------------------------- /Wavefolder/Wavefolder-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Wavefolder/Wavefolder-cache.lib -------------------------------------------------------------------------------- /Wavefolder/Wavefolder.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Wavefolder/Wavefolder.kicad_pcb -------------------------------------------------------------------------------- /Wavefolder/Wavefolder.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Wavefolder/Wavefolder.pro -------------------------------------------------------------------------------- /Wavefolder/Wavefolder.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Wavefolder/Wavefolder.sch -------------------------------------------------------------------------------- /Wavefolder/wavefolder.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Wavefolder/wavefolder.asc -------------------------------------------------------------------------------- /Wavefolder/wavefolder.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/Wavefolder/wavefolder.plt -------------------------------------------------------------------------------- /tests/ramp/current_source.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/ramp/current_source.asc -------------------------------------------------------------------------------- /tests/ramp/ramp.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/ramp/ramp.asc -------------------------------------------------------------------------------- /tests/ramp/ramp.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/ramp/ramp.plt -------------------------------------------------------------------------------- /tests/ramp/variable_resistor.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/ramp/variable_resistor.asc -------------------------------------------------------------------------------- /tests/ramp2triangle/ramp2triangle.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/ramp2triangle/ramp2triangle.asc -------------------------------------------------------------------------------- /tests/square2ramp/agc.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/square2ramp/agc.asc -------------------------------------------------------------------------------- /tests/square2ramp/agc.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/square2ramp/agc.plt -------------------------------------------------------------------------------- /tests/square2ramp/agc2.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/square2ramp/agc2.asc -------------------------------------------------------------------------------- /tests/square2ramp/square2ramp.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/square2ramp/square2ramp.asc -------------------------------------------------------------------------------- /tests/square2ramp/square2ramp.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telec16/modular-synth/HEAD/tests/square2ramp/square2ramp.plt --------------------------------------------------------------------------------