Difference between revisions of "Land Boards Synth Components"
Jump to navigation
Jump to search
Blwikiadmin (talk | contribs) |
Blwikiadmin (talk | contribs) |
||
Line 130: | Line 130: | ||
== Reference Docs == | == Reference Docs == | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
* [https://doepfer.de/home_e.htm Eurocard inventor/specs] | * [https://doepfer.de/home_e.htm Eurocard inventor/specs] | ||
** [https://doepfer.de/a100_man/a100t_e.htm Principles of Voltage Control] | ** [https://doepfer.de/a100_man/a100t_e.htm Principles of Voltage Control] | ||
+ | * [https://www.tigoe.com/pcomp/code/communication/midi/ MIDI Communication] | ||
* [https://www.perfectcircuit.com/signal/midi-to-cv Creative Control Strategies: MIDI to CV] | * [https://www.perfectcircuit.com/signal/midi-to-cv Creative Control Strategies: MIDI to CV] | ||
* [https://www.behance.net/gallery/113377671/EuroPi-Making-EuroRack-Affordable EuroPi] | * [https://www.behance.net/gallery/113377671/EuroPi-Making-EuroRack-Affordable EuroPi] | ||
* [https://reverb.com/news/beginners-guide-to-eurorack-case-basics-oscillators-filters Eurorack Beginners Guide] | * [https://reverb.com/news/beginners-guide-to-eurorack-case-basics-oscillators-filters Eurorack Beginners Guide] | ||
* [https://en.wikipedia.org/wiki/Eurorack Eurorack Wiki page] | * [https://en.wikipedia.org/wiki/Eurorack Eurorack Wiki page] | ||
+ | * [https://github.com/clacktronics/AudioJacks KiCad Audio Jack Symbols] | ||
+ | * [https://www.midisoft.de/EuroRackDimensions/EuroRack_Dimensions.html EuroRack Dimensions] | ||
+ | * [https://www.midisoft.de/ MidiSoft] | ||
+ | |||
+ | === Projects === | ||
+ | |||
+ | * [https://github.com/elkayem/midi2cv elkayem midi2cv GitHub page] - Nano based project | ||
+ | ** Arduino MIDI library has '''not''' yet been ported to Pico so will need to use Python | ||
+ | ** Drives 4 CV outputs: Pitch Blend, Control, Note, Velocity | ||
+ | ** This card only drives Note (Voltes/Oct, Mod) | ||
* [https://github.com/benevpi/PicoPicoSynth PicoPicoSynth] | * [https://github.com/benevpi/PicoPicoSynth PicoPicoSynth] | ||
− | + | ||
− | + | === Module Kits === | |
− | + | ||
* [https://github.com/erica-synths/diy-eurorack Erica Synths DIY GitHub] | * [https://github.com/erica-synths/diy-eurorack Erica Synths DIY GitHub] | ||
− | |||
* [https://syntherjack.net/category/project/ SyntherJack] - DIY Synths | * [https://syntherjack.net/category/project/ SyntherJack] - DIY Synths | ||
− | * [https://www. | + | * [https://www.befaco.org/# BEFACO] - Kits |
− | |||
* [https://store.kassutronics.net/eurorack-diy-c-1/ Kassutronics] DIY Store | * [https://store.kassutronics.net/eurorack-diy-c-1/ Kassutronics] DIY Store | ||
** [https://github.com/kassu/kassutronics Kassutronics] DIY GitHub | ** [https://github.com/kassu/kassutronics Kassutronics] DIY GitHub | ||
+ | |||
+ | === Software === | ||
+ | |||
+ | * [https://docs.circuitpython.org/projects/midi/en/latest/api.html adafruit_midi CircuitPython API] | ||
+ | * [https://learn.adafruit.com/raspberry-pi-pico-led-arcade-button-midi-controller-fighter/coding-the-raspberry-pi-pico-midi-controller MIDI Controller in Python] | ||
+ | |||
+ | === Hardware/Parts === | ||
+ | |||
+ | * [https://store.synthrotek.com/ Synthrotek Store] | ||
+ | * [https://www.thonk.co.uk/shop/thonkiconn/ THONKICONN – 3.5MM JACK SOCKETS] | ||
== Videos == | == Videos == |
Revision as of 18:34, 29 September 2022
Contents
Synth Modules
- Synthesizer interfaces and modules
- MIDI-IN-OUT - MIDI In/Out
- SCF-2 - Dual 3.5mm Audio Jacks (Scale, Clip, Filter_
- SYNTH-VCO-01 - Synth Voltage Controlled Oscillator
- SYNTH-MIDI-CTL-01 - Synth MIDI Controller
- SYNTH-MIDI-CV4-01 - 4 Output MIDI to CV controller
MIDI-IN-OUT
- MIDI-IN-OUT - MIDI In/Out
- MIDI In/Out Jacks
- 5V MIDI
- 3.3V or 5V Serial connections
- MIDI In is opto-isolated
- (2) 4-40 Mounting holes
SCF-2
- SCF-2 - Dual 3.5mm Audio Jacks (Scale, Clip, Filter)
- Digital Inputs or Outputs
- (2) 3.5mm Jacks
- Scaling resistors
- Schottky Clamping Diodes
- Filter cap
- Ring pin brought to connector
- Ring pin is not used in Synth applications
- Card can be used as a 3.5mm breakout
- (2) 4-40 mounting holes
SYNTH-VCO-01
- SYNTH-VCO-01 - Synth Voltage Controlled Oscillator
- Build of Pico VCO by HAGIWO
- Digital Voltage Controlled Oscillator (VCO)
- Three modes: Wavefold, FM and AM
- PWM output with 2 pole low pass filter
- Each mode has eight built-in waveforms
- XIAO RP2040 CPU
- (5) Pushbuttons
- Octave Up/Down
- Mode Up/Down (Wavefold, FM and AM)
- Push Timbre switches between 8 waveforms
- (2) Knobs
- Freq fine adjust
- Mod adjust
- Standard EuroRack 16 pin header
- Supports 12V in with on-board 5V regulator
- 5V regulator can be not installed if 5V is available on EuroRack connection
- Card is not a Eurorack card
- Probably too deep, needs cabling
- (4) 6-32 mounting holes
- Stacks with SYNTH-MIDI-CTL-01 card
SYNTH-MIDI-CTL-01
- SYNTH-MIDI-CTL-01 - Synth MIDI Controller
- Adapted from HAGIWO's MIDI to CV module
- Translate from Japanese to English using browser
- XAIO RP2040 CPU
- Arduino MIDI library has not yet been ported to Pico so will need to use CircuitPython
- MIDI In/Out
- Standard MIDI Jacks
- MIDI out jack for future functionality
- (2) 0-5V Analog CV outs
- MCP4822 12-bit D/A - SPI Interface
- Use with SYNTH-VCO-01
- CV1 = V/OCT
- CV2 = MOD
- (2) Digital Outs, eX:
- Gate
- Clock
- Pot supports setting Clock rate
- Standard EuroRack 16 pin header
- Supports 12V in with on-board 5V regulator
- 5V regulator can be not installed if 5V is available on EuroRack connection
- Card is not a Eurorack card
- Probably too deep, needs cabling
- (6) 6-32 Mounting holes
- Stacks with SYNTH-VCO-01 card
SYNTH-MIDI-CV4-01
- SYNTH-MIDI-CV4-01 - 4 Output MIDI to CV controller
- Adapted from HAGIWO's MIDI to CV module
- Translate from Japanese to English using browser
- Removes Digital Outputs
- Has 4 Analog Outputs instead of 2
- XAIO RP2040 CPU
- Arduino MIDI library has not yet been ported to Pico so will need to use CircuitPython
- MIDI In
- Standard MIDI Jacks
- MIDI out jack for future functionality
- (4) 0-5V Analog CV outs
- MCP4822 12-bit D/A - SPI Interface
- Use with SYNTH-VCO-01
- CV_1 = V/OCT
- CV_2 = MOD
- Standard EuroRack 16 pin header
- Supports 12V in with on-board 5V regulator
- 5V regulator can be not installed if 5V is available on EuroRack connection
- Card is not a Eurorack card
- Probably too deep, needs cabling
- (6) 6-32 Mounting holes
- Stacks with SYNTH-VCO-01 card
6 Channel Mixer
- Eurorack 6HP
- Adapted from HAGIWO's 5 Channel Mixer Module
Reference Docs
- Eurocard inventor/specs
- MIDI Communication
- Creative Control Strategies: MIDI to CV
- EuroPi
- Eurorack Beginners Guide
- Eurorack Wiki page
- KiCad Audio Jack Symbols
- EuroRack Dimensions
- MidiSoft
Projects
- elkayem midi2cv GitHub page - Nano based project
- Arduino MIDI library has not yet been ported to Pico so will need to use Python
- Drives 4 CV outputs: Pitch Blend, Control, Note, Velocity
- This card only drives Note (Voltes/Oct, Mod)
- PicoPicoSynth
Module Kits
- Erica Synths DIY GitHub
- SyntherJack - DIY Synths
- BEFACO - Kits
- Kassutronics DIY Store
- Kassutronics DIY GitHub
Software
Hardware/Parts
Videos
- Hooking together modules