├── 8-Bit-Waves ├── DAC_updated │ └── DAC_updated.ino ├── readme.md ├── v2 8 bit waves Schematic.png └── v2 Sandwich 8 bit waves.sch ├── BernoulliGate ├── BernoulliGate.ino └── BernoulliGate2025.pdf ├── Blank Panels └── Tree │ ├── README.md │ ├── Tree blank panel.kicad_pcb │ ├── Tree blank panel.kicad_prl │ ├── Tree blank panel.kicad_pro │ ├── Tree blank panel.kicad_sch │ ├── artwork_footprints_library │ ├── tree_copper.kicad_mod │ ├── tree_mask.kicad_mod │ ├── tree_mask_2.kicad_mod │ └── tree_silk_screen.kicad_mod │ └── gerbers.zip ├── DAC ├── DAC Gate to Melody.pdf ├── DIY_DAC.ino └── README.md ├── DrumSamples ├── README.md ├── Sample Player.pdf └── dspD8_triggered │ ├── drum_samples.h │ └── dspD8_triggered.ino ├── GateSequencer ├── GateSequencerLGT8F328.ino ├── GateSequencerLGT8F328.pdf └── README.md ├── General-purpose-synth-PCB ├── DIY Module - PCB.png ├── DIY Module - schematic.png ├── DIY Module - without 3V3 - PCB.png ├── DIY Module - without 3V3 - schematic.png ├── DIY_Board_with_STM32.zip ├── DIY_Board_without_3V3.zip ├── MIDI Board schematic.png ├── MIDI board.brd ├── MIDI board.png ├── MIDI board.sch ├── MIDI_Board.zip ├── Main DIY board - STM32.brd ├── Main DIY board - STM32.sch ├── Main DIY board - no 3V3.brd ├── Main DIY board - no 3V3.sch ├── Main DIY board.brd ├── Main DIY board.sch ├── README.md ├── STM32 DIY board PCB.png └── STM32 DIY board schematic.png ├── LFO-Complex ├── LFO-Complex.sch ├── LFO.png └── README.md ├── LFOLGT8F328 ├── LFOLGT8F328.ino ├── LFOLGT8F328P.pdf └── README.md ├── LICENSE.txt ├── MIDI-daughter-board ├── MIDI daughter board.png ├── MIDI-daughter-board.sch └── README.md ├── MatrixSequencer ├── MatrixSequencerv0-1.ino ├── MatrixSequencerv0-2.ino └── README.md ├── Meter ├── Meter Sequencer.sch ├── Meter sequencer schematic.png ├── Meter.ino └── README.md ├── ProcessingCVLink ├── Arduino │ ├── PicoCVAndGates.ino │ └── PicoCVSlaveBuffered.ino ├── Processing │ ├── LFO.pde │ └── wavetables.pde ├── README.md ├── v0.1 │ ├── LFO.pde │ ├── PicoCVSlaveBuffered.ino │ ├── ProcessingCVLinkv0-1.pdf │ ├── README.md │ └── wavetables.pde └── v0.2 │ ├── AmpMod.pde │ ├── ControlPanel.pde │ ├── FreqMod.pde │ ├── LFO.pde │ ├── PicoCVSlaveBuffered.ino │ ├── Quantisation.pde │ ├── README.md │ ├── RandomControls.pde │ ├── Repeats.pde │ ├── SampleAndHold.pde │ ├── Sync.pde │ ├── WaveAmplitudes.pde │ ├── WaveOffsets.pde │ ├── WaveSpeeds.pde │ ├── WaveTypes.pde │ └── wavetables.pde ├── README.md ├── RND_SHIFT_SMP ├── README.md ├── RND_SHFT_SMP.ino └── RND_SHFT_SMP.pdf ├── SEEDS-by-Ginkosynthese ├── README.md ├── SEEDS Building Manual V 1 2.pdf ├── SEEDS Building Manual V 1 4.pdf ├── SEEDS unofficial schematic.pdf ├── gpl2.txt ├── kas-button.h ├── led_ctrl.h ├── manual.txt ├── seeds.ino └── tuning.h ├── SID-MIDI ├── README.md ├── SID Arduino 2024.pdf ├── SID-MIDI-KiCad │ ├── README.md │ ├── SID Arduino 2024.kicad_pcb │ ├── SID Arduino 2024.kicad_prl │ ├── SID Arduino 2024.kicad_pro │ ├── SID Arduino 2024.kicad_sch │ ├── fp-info-cache │ ├── fp-lib-table │ └── sym-lib-table └── sidMidi.ino ├── Sequencer-5-step ├── README.md ├── Sequencer-5-step.pdf └── SequencerLGT8F328.ino ├── TuringMachine ├── README.md ├── TuringMachine.ino └── TuringMachine.pdf └── VC_Clock_Divider ├── README.md ├── VC Clock Divider.pdf └── VC_Clock_Divider.ino /8-Bit-Waves/DAC_updated/DAC_updated.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/8-Bit-Waves/DAC_updated/DAC_updated.ino -------------------------------------------------------------------------------- /8-Bit-Waves/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/8-Bit-Waves/readme.md -------------------------------------------------------------------------------- /8-Bit-Waves/v2 8 bit waves Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/8-Bit-Waves/v2 8 bit waves Schematic.png -------------------------------------------------------------------------------- /8-Bit-Waves/v2 Sandwich 8 bit waves.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/8-Bit-Waves/v2 Sandwich 8 bit waves.sch -------------------------------------------------------------------------------- /BernoulliGate/BernoulliGate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/BernoulliGate/BernoulliGate.ino -------------------------------------------------------------------------------- /BernoulliGate/BernoulliGate2025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/BernoulliGate/BernoulliGate2025.pdf -------------------------------------------------------------------------------- /Blank Panels/Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/README.md -------------------------------------------------------------------------------- /Blank Panels/Tree/Tree blank panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/Tree blank panel.kicad_pcb -------------------------------------------------------------------------------- /Blank Panels/Tree/Tree blank panel.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/Tree blank panel.kicad_prl -------------------------------------------------------------------------------- /Blank Panels/Tree/Tree blank panel.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/Tree blank panel.kicad_pro -------------------------------------------------------------------------------- /Blank Panels/Tree/Tree blank panel.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/Tree blank panel.kicad_sch -------------------------------------------------------------------------------- /Blank Panels/Tree/artwork_footprints_library/tree_copper.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/artwork_footprints_library/tree_copper.kicad_mod -------------------------------------------------------------------------------- /Blank Panels/Tree/artwork_footprints_library/tree_mask.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/artwork_footprints_library/tree_mask.kicad_mod -------------------------------------------------------------------------------- /Blank Panels/Tree/artwork_footprints_library/tree_mask_2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/artwork_footprints_library/tree_mask_2.kicad_mod -------------------------------------------------------------------------------- /Blank Panels/Tree/artwork_footprints_library/tree_silk_screen.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/artwork_footprints_library/tree_silk_screen.kicad_mod -------------------------------------------------------------------------------- /Blank Panels/Tree/gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Blank Panels/Tree/gerbers.zip -------------------------------------------------------------------------------- /DAC/DAC Gate to Melody.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/DAC/DAC Gate to Melody.pdf -------------------------------------------------------------------------------- /DAC/DIY_DAC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/DAC/DIY_DAC.ino -------------------------------------------------------------------------------- /DAC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/DAC/README.md -------------------------------------------------------------------------------- /DrumSamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/DrumSamples/README.md -------------------------------------------------------------------------------- /DrumSamples/Sample Player.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/DrumSamples/Sample Player.pdf -------------------------------------------------------------------------------- /DrumSamples/dspD8_triggered/drum_samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/DrumSamples/dspD8_triggered/drum_samples.h -------------------------------------------------------------------------------- /DrumSamples/dspD8_triggered/dspD8_triggered.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/DrumSamples/dspD8_triggered/dspD8_triggered.ino -------------------------------------------------------------------------------- /GateSequencer/GateSequencerLGT8F328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/GateSequencer/GateSequencerLGT8F328.ino -------------------------------------------------------------------------------- /GateSequencer/GateSequencerLGT8F328.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/GateSequencer/GateSequencerLGT8F328.pdf -------------------------------------------------------------------------------- /GateSequencer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/GateSequencer/README.md -------------------------------------------------------------------------------- /General-purpose-synth-PCB/DIY Module - PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/DIY Module - PCB.png -------------------------------------------------------------------------------- /General-purpose-synth-PCB/DIY Module - schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/DIY Module - schematic.png -------------------------------------------------------------------------------- /General-purpose-synth-PCB/DIY Module - without 3V3 - PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/DIY Module - without 3V3 - PCB.png -------------------------------------------------------------------------------- /General-purpose-synth-PCB/DIY Module - without 3V3 - schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/DIY Module - without 3V3 - schematic.png -------------------------------------------------------------------------------- /General-purpose-synth-PCB/DIY_Board_with_STM32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/DIY_Board_with_STM32.zip -------------------------------------------------------------------------------- /General-purpose-synth-PCB/DIY_Board_without_3V3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/DIY_Board_without_3V3.zip -------------------------------------------------------------------------------- /General-purpose-synth-PCB/MIDI Board schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/MIDI Board schematic.png -------------------------------------------------------------------------------- /General-purpose-synth-PCB/MIDI board.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/MIDI board.brd -------------------------------------------------------------------------------- /General-purpose-synth-PCB/MIDI board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/MIDI board.png -------------------------------------------------------------------------------- /General-purpose-synth-PCB/MIDI board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/MIDI board.sch -------------------------------------------------------------------------------- /General-purpose-synth-PCB/MIDI_Board.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/MIDI_Board.zip -------------------------------------------------------------------------------- /General-purpose-synth-PCB/Main DIY board - STM32.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/Main DIY board - STM32.brd -------------------------------------------------------------------------------- /General-purpose-synth-PCB/Main DIY board - STM32.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/Main DIY board - STM32.sch -------------------------------------------------------------------------------- /General-purpose-synth-PCB/Main DIY board - no 3V3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/Main DIY board - no 3V3.brd -------------------------------------------------------------------------------- /General-purpose-synth-PCB/Main DIY board - no 3V3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/Main DIY board - no 3V3.sch -------------------------------------------------------------------------------- /General-purpose-synth-PCB/Main DIY board.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/Main DIY board.brd -------------------------------------------------------------------------------- /General-purpose-synth-PCB/Main DIY board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/Main DIY board.sch -------------------------------------------------------------------------------- /General-purpose-synth-PCB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/README.md -------------------------------------------------------------------------------- /General-purpose-synth-PCB/STM32 DIY board PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/STM32 DIY board PCB.png -------------------------------------------------------------------------------- /General-purpose-synth-PCB/STM32 DIY board schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/General-purpose-synth-PCB/STM32 DIY board schematic.png -------------------------------------------------------------------------------- /LFO-Complex/LFO-Complex.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/LFO-Complex/LFO-Complex.sch -------------------------------------------------------------------------------- /LFO-Complex/LFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/LFO-Complex/LFO.png -------------------------------------------------------------------------------- /LFO-Complex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/LFO-Complex/README.md -------------------------------------------------------------------------------- /LFOLGT8F328/LFOLGT8F328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/LFOLGT8F328/LFOLGT8F328.ino -------------------------------------------------------------------------------- /LFOLGT8F328/LFOLGT8F328P.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/LFOLGT8F328/LFOLGT8F328P.pdf -------------------------------------------------------------------------------- /LFOLGT8F328/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/LFOLGT8F328/README.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MIDI-daughter-board/MIDI daughter board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/MIDI-daughter-board/MIDI daughter board.png -------------------------------------------------------------------------------- /MIDI-daughter-board/MIDI-daughter-board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/MIDI-daughter-board/MIDI-daughter-board.sch -------------------------------------------------------------------------------- /MIDI-daughter-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/MIDI-daughter-board/README.md -------------------------------------------------------------------------------- /MatrixSequencer/MatrixSequencerv0-1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/MatrixSequencer/MatrixSequencerv0-1.ino -------------------------------------------------------------------------------- /MatrixSequencer/MatrixSequencerv0-2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/MatrixSequencer/MatrixSequencerv0-2.ino -------------------------------------------------------------------------------- /MatrixSequencer/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Meter/Meter Sequencer.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Meter/Meter Sequencer.sch -------------------------------------------------------------------------------- /Meter/Meter sequencer schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Meter/Meter sequencer schematic.png -------------------------------------------------------------------------------- /Meter/Meter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Meter/Meter.ino -------------------------------------------------------------------------------- /Meter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Meter/README.md -------------------------------------------------------------------------------- /ProcessingCVLink/Arduino/PicoCVAndGates.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/Arduino/PicoCVAndGates.ino -------------------------------------------------------------------------------- /ProcessingCVLink/Arduino/PicoCVSlaveBuffered.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/Arduino/PicoCVSlaveBuffered.ino -------------------------------------------------------------------------------- /ProcessingCVLink/Processing/LFO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/Processing/LFO.pde -------------------------------------------------------------------------------- /ProcessingCVLink/Processing/wavetables.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/Processing/wavetables.pde -------------------------------------------------------------------------------- /ProcessingCVLink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/README.md -------------------------------------------------------------------------------- /ProcessingCVLink/v0.1/LFO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.1/LFO.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.1/PicoCVSlaveBuffered.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.1/PicoCVSlaveBuffered.ino -------------------------------------------------------------------------------- /ProcessingCVLink/v0.1/ProcessingCVLinkv0-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.1/ProcessingCVLinkv0-1.pdf -------------------------------------------------------------------------------- /ProcessingCVLink/v0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.1/README.md -------------------------------------------------------------------------------- /ProcessingCVLink/v0.1/wavetables.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.1/wavetables.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/AmpMod.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/AmpMod.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/ControlPanel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/ControlPanel.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/FreqMod.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/FreqMod.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/LFO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/LFO.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/PicoCVSlaveBuffered.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/PicoCVSlaveBuffered.ino -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/Quantisation.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/Quantisation.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/RandomControls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/RandomControls.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/Repeats.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/Repeats.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/SampleAndHold.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/SampleAndHold.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/Sync.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/Sync.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/WaveAmplitudes.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/WaveAmplitudes.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/WaveOffsets.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/WaveOffsets.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/WaveSpeeds.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/WaveSpeeds.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/WaveTypes.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/WaveTypes.pde -------------------------------------------------------------------------------- /ProcessingCVLink/v0.2/wavetables.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/ProcessingCVLink/v0.2/wavetables.pde -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/README.md -------------------------------------------------------------------------------- /RND_SHIFT_SMP/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /RND_SHIFT_SMP/RND_SHFT_SMP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/RND_SHIFT_SMP/RND_SHFT_SMP.ino -------------------------------------------------------------------------------- /RND_SHIFT_SMP/RND_SHFT_SMP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/RND_SHIFT_SMP/RND_SHFT_SMP.pdf -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/README.md -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/SEEDS Building Manual V 1 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/SEEDS Building Manual V 1 2.pdf -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/SEEDS Building Manual V 1 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/SEEDS Building Manual V 1 4.pdf -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/SEEDS unofficial schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/SEEDS unofficial schematic.pdf -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/gpl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/gpl2.txt -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/kas-button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/kas-button.h -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/led_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/led_ctrl.h -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/manual.txt -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/seeds.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/seeds.ino -------------------------------------------------------------------------------- /SEEDS-by-Ginkosynthese/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SEEDS-by-Ginkosynthese/tuning.h -------------------------------------------------------------------------------- /SID-MIDI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/README.md -------------------------------------------------------------------------------- /SID-MIDI/SID Arduino 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID Arduino 2024.pdf -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_pcb -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_prl -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_pro -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID-MIDI-KiCad/SID Arduino 2024.kicad_sch -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID-MIDI-KiCad/fp-info-cache -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID-MIDI-KiCad/fp-lib-table -------------------------------------------------------------------------------- /SID-MIDI/SID-MIDI-KiCad/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/SID-MIDI-KiCad/sym-lib-table -------------------------------------------------------------------------------- /SID-MIDI/sidMidi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/SID-MIDI/sidMidi.ino -------------------------------------------------------------------------------- /Sequencer-5-step/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Sequencer-5-step/Sequencer-5-step.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Sequencer-5-step/Sequencer-5-step.pdf -------------------------------------------------------------------------------- /Sequencer-5-step/SequencerLGT8F328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/Sequencer-5-step/SequencerLGT8F328.ino -------------------------------------------------------------------------------- /TuringMachine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/TuringMachine/README.md -------------------------------------------------------------------------------- /TuringMachine/TuringMachine.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/TuringMachine/TuringMachine.ino -------------------------------------------------------------------------------- /TuringMachine/TuringMachine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/TuringMachine/TuringMachine.pdf -------------------------------------------------------------------------------- /VC_Clock_Divider/README.md: -------------------------------------------------------------------------------- 1 | A dual voltage controlled clock divider based on Arduino. 2 | -------------------------------------------------------------------------------- /VC_Clock_Divider/VC Clock Divider.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/VC_Clock_Divider/VC Clock Divider.pdf -------------------------------------------------------------------------------- /VC_Clock_Divider/VC_Clock_Divider.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blinken-Lights/synth-modules/HEAD/VC_Clock_Divider/VC_Clock_Divider.ino --------------------------------------------------------------------------------