├── .gitignore ├── 3-phase-lfo ├── .gitignore ├── 3-phase-lfo.kicad_pcb ├── 3-phase-lfo.kicad_pro ├── 3-phase-lfo.kicad_sch ├── 3-phase-lfo.sch ├── README.md └── images │ └── panel.png ├── README.md ├── VCA ├── README.md ├── images │ ├── vca-board.png │ └── vca-panel.png ├── vca-board.kicad_pcb ├── vca-board.sch ├── vca-panel.kicad_pcb └── vca.pro ├── VCDO ├── README.md ├── images │ ├── vcdo-panel.png │ └── vcdo-pcb.png ├── vcvco-board.kicad_pcb ├── vcvco-board.pro ├── vcvco-cache.lib ├── vcvco-panel.kicad_pcb ├── vcvco-panel.pro ├── vcvco.kicad_pcb ├── vcvco.pro └── vcvco.sch ├── cornucopia ├── .gitignore ├── LICENSE.md ├── README.md ├── divergent-waves.kicad_wks ├── hardware │ ├── .gitignore │ ├── cornucopia │ │ ├── LICENSE │ │ ├── board.kicad_pcb │ │ ├── board.kicad_pro │ │ ├── board.kicad_sch │ │ ├── footprints │ │ │ └── corn.pretty │ │ │ │ └── corn.kicad_mod │ │ └── fp-lib-table │ └── divergent-waves.kicad_wks └── images │ └── cornucopia.png ├── d6 ├── ASSEMBLY.md ├── BOM.md ├── MANUAL.md ├── README.md ├── d6.kicad_pcb ├── d6.kicad_pro ├── d6.kicad_sch ├── firmware │ ├── Dice-1.0.zip │ ├── LICENSE.md │ ├── d6.ino │ ├── libraries │ │ └── LedControl │ │ │ ├── LedControl.cpp │ │ │ └── LedControl.h │ ├── pins.h │ ├── pins_pipico.h │ └── pins_teensy4.h └── images │ ├── 1-parts.jpg │ ├── 10-trimmers.jpg │ ├── 11-front.jpg │ ├── 12-panel.jpg │ ├── 13-7-seg.jpg │ ├── 14-pot.jpg │ ├── 2-headers.jpg │ ├── 3-pi.jpg │ ├── 4-ds1882.jpg │ ├── 5-diodes.jpg │ ├── 6-regulators.jpg │ ├── 7-caps-power.jpg │ ├── 8-pi.jpg │ ├── 9-header.jpg │ └── panel.jpg ├── drumfiend ├── .gitignore ├── ASSEMBLY.md ├── BOM.md ├── FIRMWARE.md ├── MANUAL.md ├── README.md ├── bom │ └── ibom.html ├── firmware │ ├── drumfiend │ │ ├── code.py │ │ ├── config.txt │ │ ├── configs │ │ │ ├── drumbrute_impact_config.txt │ │ │ ├── elektron_model_cycles.txt │ │ │ ├── midi_cc_polysynth.txt │ │ │ ├── midi_start_stop_clock.txt │ │ │ ├── mono_synth_arps.txt │ │ │ ├── polyphonic_synth_config.txt │ │ │ ├── program_change_polysynth.txt │ │ │ └── vermona_drm1_mk3.txt │ │ ├── drum.py │ │ ├── drum_config.py │ │ ├── drummer.py │ │ ├── firmware.zip │ │ └── lib │ │ │ └── adafruit_midi │ │ │ ├── LICENSE.md │ │ │ ├── __init__.mpy │ │ │ ├── channel_pressure.mpy │ │ │ ├── control_change.mpy │ │ │ ├── control_change_values.mpy │ │ │ ├── midi_continue.mpy │ │ │ ├── midi_message.mpy │ │ │ ├── mtc_quarter_frame.mpy │ │ │ ├── note_off.mpy │ │ │ ├── note_on.mpy │ │ │ ├── pitch_bend.mpy │ │ │ ├── polyphonic_key_pressure.mpy │ │ │ ├── program_change.mpy │ │ │ ├── start.mpy │ │ │ ├── stop.mpy │ │ │ ├── system_exclusive.mpy │ │ │ └── timing_clock.mpy │ └── prototype │ │ ├── README.md │ │ └── drumfiend.ino ├── images │ ├── 1-tools.jpg │ ├── 10-teensy.jpg │ ├── 11-midi.jpg │ ├── 12-power.jpg │ ├── 13-power.jpg │ ├── 14-teensy.jpg │ ├── 15-teensy.jpg │ ├── 16-back.jpg │ ├── 17-headers.jpg │ ├── 18-headers.jpg │ ├── 19-headers.jpg │ ├── 2-teensy.jpg │ ├── 20-headers.jpg │ ├── 21-sockets.jpg │ ├── 22-sockets.jpg │ ├── 23-sockets-and-leds.jpg │ ├── 24-sockets-and-leds.jpg │ ├── 25-final.jpg │ ├── 26-final.jpg │ ├── 3-teensy.jpg │ ├── 4-power.jpg │ ├── 5-midi.jpg │ ├── 6-caps.jpg │ ├── 7-5v.jpg │ ├── 8-5v.jpg │ ├── 9-caps.jpg │ ├── drumfiend-midi.png │ ├── drumfiend.png │ ├── firmware-1.png │ └── firmware-2.png ├── impact-main.kicad_pcb ├── impact-pal-cache.lib ├── impact-pal.kicad_pcb ├── impact-pal.kicad_pro ├── impact-pal.kicad_sch ├── impact-pal.pro ├── impact-pal.sch ├── impact-panel.kicad_pcb ├── impact-panel.pro ├── impact-sub.kicad_pcb └── impact-sub.pro ├── kinky-lynx ├── README.md ├── images │ └── kinky-lynx.png ├── kinky-lynx-cache.lib ├── kinky-lynx.kicad_pcb ├── kinky-lynx.pro └── kinky-lynx.sch ├── lattice ├── README.md └── lattice │ ├── bom │ └── ibom.html │ ├── lattice-cache.lib │ ├── lattice.kicad_pcb │ ├── lattice.pro │ └── lattice.sch ├── leaky-bucket ├── .gitignore ├── BOM.md ├── README.md ├── delay-stage.kicad_sch ├── images │ └── panel.png ├── leaky-bucket.kicad_pcb ├── leaky-bucket.kicad_pro └── leaky-bucket.kicad_sch ├── logic ├── ASSEMBLY.md ├── BOM.md ├── README.md ├── images │ ├── 1-tools.jpg │ ├── 2-parts.jpg │ ├── 3-power.jpg │ ├── 3-power2.jpg │ ├── 3-power3.jpg │ ├── 4-ic.jpg │ ├── 4-ic2.jpg │ ├── 4-ic3.jpg │ ├── 4-ic4.jpg │ ├── 4-ic5.jpg │ ├── 4-ic6.jpg │ ├── 4-ic7.jpg │ ├── 5-jacks.jpg │ ├── 5-jacks2.jpg │ ├── 5-jacks3.jpg │ ├── 5-jacks4.jpg │ ├── 5-jacks5.jpg │ ├── 6-indicators.jpg │ ├── 7-indicators2.jpg │ ├── 7-indicators3.jpg │ ├── 8-finish1.jpg │ ├── 8-finish2.jpg │ ├── 8-finish3.jpg │ ├── 8-finish4.jpg │ ├── 8-finish5.jpg │ ├── 8-finish6.jpg │ ├── logic-back.PNG │ └── logic-front.PNG ├── logic.pro ├── logic.sch ├── main.kicad_pcb ├── mini-board.kicad_pcb └── panel.kicad_pcb ├── lpg ├── README.md ├── images │ ├── lpg-board.png │ └── lpg-panel.png ├── lpg-board.kicad_pcb ├── lpg-cache.lib ├── lpg-panel.kicad_pcb ├── lpg-panel.pro ├── lpg.kicad_pcb ├── lpg.pro └── lpg.sch ├── mix ├── README.md ├── images │ └── mix.png ├── mix-logic.kicad_pcb ├── mix-logic.pro ├── mix-panel.kicad_pcb ├── mix-panel.pro ├── mix.kicad_pcb ├── mix.pro └── mix.sch ├── mult-casino ├── ASSEMBLY.md ├── README.md ├── ibom.html └── images │ ├── 1-parts.jpg │ ├── 10-power.jpg │ ├── 11-teensy.jpg │ ├── 12-teensy.jpg │ ├── 13-teensy.jpg │ ├── 14-trimmer.jpg │ ├── 15-front.jpg │ ├── 16-front.jpg │ ├── 17-front.jpg │ ├── 18-fix.jpg │ ├── 19-fix.jpg │ ├── 2-teensy.jpg │ ├── 20-fix.jpg │ ├── 21-finish.jpg │ ├── 3-teensy.jpg │ ├── 4-teensy.jpg │ ├── 5-digipots.jpg │ ├── 6-digipots.jpg │ ├── 7-power.jpg │ ├── 8-power.jpg │ └── 9-power.jpg ├── multimult ├── README.md ├── images │ └── multmult-panel.png ├── multimult-board.kicad_pcb ├── multimult-board.pro ├── multimult-cache.lib ├── multimult.kicad_pcb ├── multimult.pro ├── multimult.sch ├── multmult-panel.kicad_pcb └── multmult-panel.pro ├── oak ├── .gitignore ├── ASSEMBLY.md ├── BOM.md ├── FIRMWARE.md ├── MANUAL.md ├── README.md ├── firmware │ ├── hardware-test │ │ └── code.py │ └── oak │ │ ├── .gitignore │ │ ├── oak-1.0.ino.uf2 │ │ ├── oak-1.1.ino.uf2 │ │ └── oak.ino ├── images │ ├── .gitignore │ ├── 1-parts.jpg │ ├── 10-thonkiconn.jpg │ ├── 11-led-buttons.jpg │ ├── 12-buttons.jpg │ ├── 13-leds.jpg │ ├── 14-panel.jpg │ ├── 2-jst.jpg │ ├── 3-power.jpg │ ├── 4-header.jpg │ ├── 5-button.jpg │ ├── 6-standoffs.jpg │ ├── 7-thonkiconn.jpg │ ├── 8-buttons.jpg │ ├── 8b-leds.jpg │ ├── 9-standoffs.jpg │ ├── oak-annotated.jpg │ └── panel.png ├── oak.kicad_pcb ├── oak.kicad_pro └── oak.kicad_sch ├── oneshot ├── .gitignore ├── ASSEMBLY.md ├── BOM.md ├── MANUAL.md ├── README.md ├── cv-and-pot.kicad_sch ├── images │ ├── 1-parts.jpg │ ├── 10-jst.jpg │ ├── 11-panel.jpg │ ├── 12-led.jpg │ ├── 13-panel.jpg │ ├── 14-solder.jpg │ ├── 15-finish.jpg │ ├── 16-button.jpg │ ├── 17-done.jpg │ ├── 18-reallydone.jpg │ ├── 2-cut.jpg │ ├── 3-solder.jpg │ ├── 4-jst.jpg │ ├── 5-socket.jpg │ ├── 6-power.jpg │ ├── 7-headers.jpg │ ├── 8-stack.jpg │ └── 9-resist.jpg ├── led-driver.kicad_sch ├── oneshot.kicad_pcb ├── oneshot.kicad_pro └── oneshot.kicad_sch ├── pentanoise ├── README.md ├── images │ ├── pentanoise-board.png │ └── pentanoise-panel.png ├── pentanoise-board.kicad_pcb ├── pentanoise-board.pro ├── pentanoise-panel.kicad_pcb ├── pentanoise-panel.pro ├── pentanoise-white-noise.kicad_mod ├── pentanoise.kicad_pcb ├── pentanoise.lib ├── pentanoise.pro └── pentanoise.sch ├── pirate-radio ├── README.md ├── images │ └── pirate-panel.png ├── pirate-panel.kicad_pcb └── pirate-panel.pro ├── rowan ├── .gitignore ├── ASSEMBLY.md ├── BOM.md ├── FIRMWARE.md ├── MANUAL.md ├── README.md ├── firmware │ ├── rowan-hardware-test │ │ └── rowan-hardware-test.ino │ └── rowan │ │ ├── .gitignore │ │ ├── rowan.ino │ │ └── rowan.ino.uf2 ├── fp-lib-table ├── images │ ├── .gitignore │ ├── 01-parts.jpg │ ├── 02-depanel.jpg │ ├── 03-headers.jpg │ ├── 04-headers.jpg │ ├── 05-headers.jpg │ ├── 06-split.jpg │ ├── 07-lightpipes.jpg │ ├── 08-sockets.jpg │ ├── 09-mount.jpg │ ├── 10-sockets.jpg │ ├── 11-header.jpg │ ├── 12-button.jpg │ ├── 13-jst.jpg │ ├── 14-power.jpg │ ├── 15-join.jpg │ └── panel.png ├── rowan.kicad_pcb ├── rowan.kicad_pro ├── rowan.kicad_sch └── sym-lib-table ├── slew-limiter ├── README.md ├── images │ ├── slew-limiter-board.png │ └── slew-limiter-panel.png ├── slew-limiter-board.kicad_pcb ├── slew-limiter-board.pro ├── slew-limiter-panel.kicad_pcb ├── slew-limiter-panel.pro ├── slew-limiter.kicad_pcb ├── slew-limiter.pro └── slew-limiter.sch ├── sycamore ├── ASSEMBLY-7-SEG-ALT.md ├── ASSEMBLY.md ├── BOM.md ├── FIRMWARE.md ├── MANUAL.md ├── README.md ├── firmware │ ├── 1.0 │ │ ├── README.md │ │ ├── boot_out.txt │ │ ├── code.py │ │ ├── deque.py │ │ ├── ledcontrol.py │ │ ├── lib │ │ │ ├── adafruit_debouncer.mpy │ │ │ ├── adafruit_pca9685.mpy │ │ │ ├── adafruit_register │ │ │ │ ├── __init__.py │ │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ │ ├── i2c_bit.mpy │ │ │ │ ├── i2c_bits.mpy │ │ │ │ ├── i2c_struct.mpy │ │ │ │ └── i2c_struct_array.mpy │ │ │ ├── adafruit_simplemath.mpy │ │ │ └── adafruit_ticks.mpy │ │ ├── ltc2632.py │ │ ├── scales │ │ │ ├── 00-chromatic.txt │ │ │ ├── 01-major.txt │ │ │ ├── 02-minor.txt │ │ │ ├── 03-mixolydian.txt │ │ │ ├── 04-enigmatic.txt │ │ │ ├── 05-acoustic.txt │ │ │ ├── 06-altered.txt │ │ │ ├── 07-augmented.txt │ │ │ ├── 08-bebop.txt │ │ │ ├── 09-blues.txt │ │ │ ├── 10-dorian.txt │ │ │ ├── 11-double-harmonic.txt │ │ │ ├── 12-flamenco.txt │ │ │ ├── 13-gypsy.txt │ │ │ ├── 14-half-diminished.txt │ │ │ ├── 15-harmonic-major.txt │ │ │ ├── 16-harmonic-minor.txt │ │ │ ├── 17-hirajoshi.txt │ │ │ ├── 18-hungarian-major.txt │ │ │ ├── 18-hungarian-minor.txt │ │ │ ├── 19-in.txt │ │ │ ├── 20-insen.txt │ │ │ ├── 21-istrian.txt │ │ │ ├── 22-iwato.txt │ │ │ ├── 23-locrian.txt │ │ │ ├── 24-lydian-augmented.txt │ │ │ ├── 25-lydian-diminished.txt │ │ │ ├── 26-lydian.txt │ │ │ ├── 27-bebop-major.txt │ │ │ ├── 28-locrian-major.txt │ │ │ ├── 29-pentatonic-major.txt │ │ │ ├── 30-pentatonic-minor.txt │ │ │ ├── 31-neopolitan-major.txt │ │ │ ├── 32-neopolitan-minor.txt │ │ │ ├── 33-octatonic.txt │ │ │ ├── 34-persian.txt │ │ │ ├── 35-phrygian-dominant.txt │ │ │ ├── 36-phrygian.txt │ │ │ ├── 37-prometheus.txt │ │ │ ├── 38-harmonics.txt │ │ │ ├── 39-tritone.txt │ │ │ ├── 40-tritone-two.txt │ │ │ ├── 41-slava-ukraini.txt │ │ │ ├── 42-whole-tone.txt │ │ │ ├── 43-yo.txt │ │ │ └── 44-gamelan.txt │ │ ├── settings.toml │ │ ├── settings.txt │ │ └── simplemcp3208.py │ ├── 1.1 │ │ ├── .Trashes │ │ ├── .fseventsd │ │ │ └── no_log │ │ ├── .metadata_never_index │ │ ├── README.md │ │ ├── boot_out.txt │ │ ├── code.py │ │ ├── debug.py │ │ ├── deque.py │ │ ├── ledcontrol.py │ │ ├── lib │ │ │ ├── adafruit_debouncer.mpy │ │ │ ├── adafruit_pca9685.mpy │ │ │ ├── adafruit_register │ │ │ │ ├── __init__.py │ │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ │ ├── i2c_bit.mpy │ │ │ │ ├── i2c_bits.mpy │ │ │ │ ├── i2c_struct.mpy │ │ │ │ └── i2c_struct_array.mpy │ │ │ ├── adafruit_simplemath.mpy │ │ │ └── adafruit_ticks.mpy │ │ ├── ltc2632.py │ │ ├── scales │ │ │ ├── 00-chromatic.txt │ │ │ ├── 01-major.txt │ │ │ ├── 02-minor.txt │ │ │ ├── 03-mixolydian.txt │ │ │ ├── 04-enigmatic.txt │ │ │ ├── 05-acoustic.txt │ │ │ ├── 06-altered.txt │ │ │ ├── 07-augmented.txt │ │ │ ├── 08-bebop.txt │ │ │ ├── 09-blues.txt │ │ │ ├── 10-dorian.txt │ │ │ ├── 11-double-harmonic.txt │ │ │ ├── 12-flamenco.txt │ │ │ ├── 13-gypsy.txt │ │ │ ├── 14-half-diminished.txt │ │ │ ├── 15-harmonic-major.txt │ │ │ ├── 16-harmonic-minor.txt │ │ │ ├── 17-hirajoshi.txt │ │ │ ├── 18-hungarian-major.txt │ │ │ ├── 18-hungarian-minor.txt │ │ │ ├── 19-in.txt │ │ │ ├── 20-insen.txt │ │ │ ├── 21-istrian.txt │ │ │ ├── 22-iwato.txt │ │ │ ├── 23-locrian.txt │ │ │ ├── 24-lydian-augmented.txt │ │ │ ├── 25-lydian-diminished.txt │ │ │ ├── 26-lydian.txt │ │ │ ├── 27-bebop-major.txt │ │ │ ├── 28-locrian-major.txt │ │ │ ├── 29-pentatonic-major.txt │ │ │ ├── 30-pentatonic-minor.txt │ │ │ ├── 31-neopolitan-major.txt │ │ │ ├── 32-neopolitan-minor.txt │ │ │ ├── 33-octatonic.txt │ │ │ ├── 34-persian.txt │ │ │ ├── 35-phrygian-dominant.txt │ │ │ ├── 36-phrygian.txt │ │ │ ├── 37-prometheus.txt │ │ │ ├── 38-harmonics.txt │ │ │ ├── 39-tritone.txt │ │ │ ├── 40-tritone-two.txt │ │ │ ├── 41-slava-ukraini.txt │ │ │ ├── 42-whole-tone.txt │ │ │ ├── 43-yo.txt │ │ │ └── 44-gamelan.txt │ │ ├── settings.toml │ │ ├── settings.txt │ │ └── simplemcp3208.py │ ├── 1.2 │ │ ├── .Trashes │ │ ├── .fseventsd │ │ │ └── no_log │ │ ├── .metadata_never_index │ │ ├── README.md │ │ ├── boot_out.txt │ │ ├── code.py │ │ ├── debug.py │ │ ├── deque.py │ │ ├── ledcontrol.py │ │ ├── lib │ │ │ ├── adafruit_debouncer.mpy │ │ │ ├── adafruit_pca9685.mpy │ │ │ ├── adafruit_register │ │ │ │ ├── __init__.py │ │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ │ ├── i2c_bit.mpy │ │ │ │ ├── i2c_bits.mpy │ │ │ │ ├── i2c_struct.mpy │ │ │ │ └── i2c_struct_array.mpy │ │ │ ├── adafruit_simplemath.mpy │ │ │ └── adafruit_ticks.mpy │ │ ├── ltc2632.py │ │ ├── scales │ │ │ ├── 00-chromatic.txt │ │ │ ├── 01-major.txt │ │ │ ├── 02-minor.txt │ │ │ ├── 03-mixolydian.txt │ │ │ ├── 04-enigmatic.txt │ │ │ ├── 05-acoustic.txt │ │ │ ├── 06-altered.txt │ │ │ ├── 07-augmented.txt │ │ │ ├── 08-bebop.txt │ │ │ ├── 09-blues.txt │ │ │ ├── 10-dorian.txt │ │ │ ├── 11-double-harmonic.txt │ │ │ ├── 12-flamenco.txt │ │ │ ├── 13-gypsy.txt │ │ │ ├── 14-half-diminished.txt │ │ │ ├── 15-harmonic-major.txt │ │ │ ├── 16-harmonic-minor.txt │ │ │ ├── 17-hirajoshi.txt │ │ │ ├── 18-hungarian-major.txt │ │ │ ├── 18-hungarian-minor.txt │ │ │ ├── 19-in.txt │ │ │ ├── 20-insen.txt │ │ │ ├── 21-istrian.txt │ │ │ ├── 22-iwato.txt │ │ │ ├── 23-locrian.txt │ │ │ ├── 24-lydian-augmented.txt │ │ │ ├── 25-lydian-diminished.txt │ │ │ ├── 26-lydian.txt │ │ │ ├── 27-bebop-major.txt │ │ │ ├── 28-locrian-major.txt │ │ │ ├── 29-pentatonic-major.txt │ │ │ ├── 30-pentatonic-minor.txt │ │ │ ├── 31-neopolitan-major.txt │ │ │ ├── 32-neopolitan-minor.txt │ │ │ ├── 33-octatonic.txt │ │ │ ├── 34-persian.txt │ │ │ ├── 35-phrygian-dominant.txt │ │ │ ├── 36-phrygian.txt │ │ │ ├── 37-prometheus.txt │ │ │ ├── 38-harmonics.txt │ │ │ ├── 39-tritone.txt │ │ │ ├── 40-tritone-two.txt │ │ │ ├── 41-slava-ukraini.txt │ │ │ ├── 42-whole-tone.txt │ │ │ ├── 43-yo.txt │ │ │ └── 44-gamelan.txt │ │ ├── settings.toml │ │ ├── settings.txt │ │ └── simplemcp3208.py │ ├── 1.3 │ │ ├── README.md │ │ ├── boot_out.txt │ │ ├── code.py │ │ ├── debug.py │ │ ├── deque.py │ │ ├── ledcontrol.py │ │ ├── lib │ │ │ ├── adafruit_debouncer.mpy │ │ │ ├── adafruit_pca9685.mpy │ │ │ ├── adafruit_register │ │ │ │ ├── __init__.py │ │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ │ ├── i2c_bit.mpy │ │ │ │ ├── i2c_bits.mpy │ │ │ │ ├── i2c_struct.mpy │ │ │ │ └── i2c_struct_array.mpy │ │ │ ├── adafruit_simplemath.mpy │ │ │ └── adafruit_ticks.mpy │ │ ├── ltc2632.py │ │ ├── scales │ │ │ ├── 00-chromatic.txt │ │ │ ├── 01-major.txt │ │ │ ├── 02-minor.txt │ │ │ ├── 03-mixolydian.txt │ │ │ ├── 04-enigmatic.txt │ │ │ ├── 05-acoustic.txt │ │ │ ├── 06-altered.txt │ │ │ ├── 07-augmented.txt │ │ │ ├── 08-bebop.txt │ │ │ ├── 09-blues.txt │ │ │ ├── 10-dorian.txt │ │ │ ├── 11-double-harmonic.txt │ │ │ ├── 12-flamenco.txt │ │ │ ├── 13-gypsy.txt │ │ │ ├── 14-half-diminished.txt │ │ │ ├── 15-harmonic-major.txt │ │ │ ├── 16-harmonic-minor.txt │ │ │ ├── 17-hirajoshi.txt │ │ │ ├── 18-hungarian-major.txt │ │ │ ├── 18-hungarian-minor.txt │ │ │ ├── 19-in.txt │ │ │ ├── 20-insen.txt │ │ │ ├── 21-istrian.txt │ │ │ ├── 22-iwato.txt │ │ │ ├── 23-locrian.txt │ │ │ ├── 24-lydian-augmented.txt │ │ │ ├── 25-lydian-diminished.txt │ │ │ ├── 26-lydian.txt │ │ │ ├── 27-bebop-major.txt │ │ │ ├── 28-locrian-major.txt │ │ │ ├── 29-pentatonic-major.txt │ │ │ ├── 30-pentatonic-minor.txt │ │ │ ├── 31-neopolitan-major.txt │ │ │ ├── 32-neopolitan-minor.txt │ │ │ ├── 33-octatonic.txt │ │ │ ├── 34-persian.txt │ │ │ ├── 35-phrygian-dominant.txt │ │ │ ├── 36-phrygian.txt │ │ │ ├── 37-prometheus.txt │ │ │ ├── 38-harmonics.txt │ │ │ ├── 39-tritone.txt │ │ │ ├── 40-tritone-two.txt │ │ │ ├── 41-slava-ukraini.txt │ │ │ ├── 42-whole-tone.txt │ │ │ ├── 43-yo.txt │ │ │ └── 44-gamelan.txt │ │ ├── settings.toml │ │ ├── settings.txt │ │ └── simplemcp3208.py │ ├── 1.4 │ │ ├── .Trashes │ │ ├── .fseventsd │ │ │ └── no_log │ │ ├── .metadata_never_index │ │ ├── README.md │ │ ├── boot_out.txt │ │ ├── code.py │ │ ├── debug.py │ │ ├── deque.py │ │ ├── ledcontrol.py │ │ ├── lib │ │ │ ├── adafruit_debouncer.mpy │ │ │ ├── adafruit_pca9685.mpy │ │ │ ├── adafruit_register │ │ │ │ ├── __init__.py │ │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ │ ├── i2c_bit.mpy │ │ │ │ ├── i2c_bits.mpy │ │ │ │ ├── i2c_struct.mpy │ │ │ │ └── i2c_struct_array.mpy │ │ │ ├── adafruit_simplemath.mpy │ │ │ └── adafruit_ticks.mpy │ │ ├── ltc2632.py │ │ ├── scales │ │ │ ├── 00-chromatic.txt │ │ │ ├── 01-major.txt │ │ │ ├── 02-minor.txt │ │ │ ├── 03-mixolydian.txt │ │ │ ├── 04-enigmatic.txt │ │ │ ├── 05-acoustic.txt │ │ │ ├── 06-altered.txt │ │ │ ├── 07-augmented.txt │ │ │ ├── 08-bebop.txt │ │ │ ├── 09-blues.txt │ │ │ ├── 10-dorian.txt │ │ │ ├── 11-double-harmonic.txt │ │ │ ├── 12-flamenco.txt │ │ │ ├── 13-gypsy.txt │ │ │ ├── 14-half-diminished.txt │ │ │ ├── 15-harmonic-major.txt │ │ │ ├── 16-harmonic-minor.txt │ │ │ ├── 17-hirajoshi.txt │ │ │ ├── 18-hungarian-major.txt │ │ │ ├── 18-hungarian-minor.txt │ │ │ ├── 19-in.txt │ │ │ ├── 20-insen.txt │ │ │ ├── 21-istrian.txt │ │ │ ├── 22-iwato.txt │ │ │ ├── 23-locrian.txt │ │ │ ├── 24-lydian-augmented.txt │ │ │ ├── 25-lydian-diminished.txt │ │ │ ├── 26-lydian.txt │ │ │ ├── 27-bebop-major.txt │ │ │ ├── 28-locrian-major.txt │ │ │ ├── 29-pentatonic-major.txt │ │ │ ├── 30-pentatonic-minor.txt │ │ │ ├── 31-neopolitan-major.txt │ │ │ ├── 32-neopolitan-minor.txt │ │ │ ├── 33-octatonic.txt │ │ │ ├── 34-persian.txt │ │ │ ├── 35-phrygian-dominant.txt │ │ │ ├── 36-phrygian.txt │ │ │ ├── 37-prometheus.txt │ │ │ ├── 38-harmonics.txt │ │ │ ├── 39-tritone.txt │ │ │ ├── 40-tritone-two.txt │ │ │ ├── 41-slava-ukraini.txt │ │ │ ├── 42-whole-tone.txt │ │ │ ├── 43-yo.txt │ │ │ └── 44-gamelan.txt │ │ ├── settings.toml │ │ ├── settings.txt │ │ └── simplemcp3208.py │ ├── 1.5 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── boot_out.txt │ │ ├── code.py │ │ ├── config.py │ │ ├── debug.py │ │ ├── deque.py │ │ ├── ledcontrol.py │ │ ├── lib │ │ │ ├── adafruit_debouncer.mpy │ │ │ ├── adafruit_pca9685.mpy │ │ │ ├── adafruit_register │ │ │ │ ├── __init__.py │ │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ │ ├── i2c_bit.mpy │ │ │ │ ├── i2c_bits.mpy │ │ │ │ ├── i2c_struct.mpy │ │ │ │ └── i2c_struct_array.mpy │ │ │ ├── adafruit_simplemath.mpy │ │ │ └── adafruit_ticks.mpy │ │ ├── ltc2632.py │ │ ├── oak.py │ │ ├── quantizer.py │ │ ├── rowan.py │ │ ├── scales │ │ │ ├── 00-chromatic.txt │ │ │ ├── 01-major.txt │ │ │ ├── 02-minor.txt │ │ │ ├── 03-mixolydian.txt │ │ │ ├── 04-enigmatic.txt │ │ │ ├── 05-acoustic.txt │ │ │ ├── 06-altered.txt │ │ │ ├── 07-augmented.txt │ │ │ ├── 08-bebop.txt │ │ │ ├── 09-blues.txt │ │ │ ├── 10-dorian.txt │ │ │ ├── 11-double-harmonic.txt │ │ │ ├── 12-flamenco.txt │ │ │ ├── 13-gypsy.txt │ │ │ ├── 14-half-diminished.txt │ │ │ ├── 15-harmonic-major.txt │ │ │ ├── 16-harmonic-minor.txt │ │ │ ├── 17-hirajoshi.txt │ │ │ ├── 18-hungarian-major.txt │ │ │ ├── 18-hungarian-minor.txt │ │ │ ├── 19-in.txt │ │ │ ├── 20-insen.txt │ │ │ ├── 21-istrian.txt │ │ │ ├── 22-iwato.txt │ │ │ ├── 23-locrian.txt │ │ │ ├── 24-lydian-augmented.txt │ │ │ ├── 25-lydian-diminished.txt │ │ │ ├── 26-lydian.txt │ │ │ ├── 27-bebop-major.txt │ │ │ ├── 28-locrian-major.txt │ │ │ ├── 29-pentatonic-major.txt │ │ │ ├── 30-pentatonic-minor.txt │ │ │ ├── 31-neopolitan-major.txt │ │ │ ├── 32-neopolitan-minor.txt │ │ │ ├── 33-octatonic.txt │ │ │ ├── 34-persian.txt │ │ │ ├── 35-phrygian-dominant.txt │ │ │ ├── 36-phrygian.txt │ │ │ ├── 37-prometheus.txt │ │ │ ├── 38-harmonics.txt │ │ │ ├── 39-tritone.txt │ │ │ ├── 40-tritone-two.txt │ │ │ ├── 41-slava-ukraini.txt │ │ │ ├── 42-whole-tone.txt │ │ │ ├── 43-yo.txt │ │ │ └── 44-gamelan.txt │ │ ├── scales2.py │ │ ├── sequence.py │ │ ├── settings.toml │ │ ├── settings.txt │ │ ├── simplemcp3208.py │ │ └── sycamore_gc.py │ ├── sycamore-1.0.zip │ ├── sycamore-1.1.zip │ ├── sycamore-1.2.zip │ ├── sycamore-1.3.zip │ ├── sycamore-1.4.zip │ ├── sycamore-1.5.zip │ └── sycamore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── boot_out.txt │ │ ├── code.py │ │ ├── config.py │ │ ├── debug.py │ │ ├── deque.py │ │ ├── ledcontrol.py │ │ ├── lib │ │ ├── adafruit_debouncer.mpy │ │ ├── adafruit_pca9685.mpy │ │ ├── adafruit_register │ │ │ ├── __init__.py │ │ │ ├── i2c_bcd_alarm.mpy │ │ │ ├── i2c_bcd_datetime.mpy │ │ │ ├── i2c_bit.mpy │ │ │ ├── i2c_bits.mpy │ │ │ ├── i2c_struct.mpy │ │ │ └── i2c_struct_array.mpy │ │ ├── adafruit_simplemath.mpy │ │ └── adafruit_ticks.mpy │ │ ├── ltc2632.py │ │ ├── oak.py │ │ ├── quantizer.py │ │ ├── rowan.py │ │ ├── scales │ │ ├── 00-chromatic.txt │ │ ├── 01-major.txt │ │ ├── 02-minor.txt │ │ ├── 03-mixolydian.txt │ │ ├── 04-enigmatic.txt │ │ ├── 05-acoustic.txt │ │ ├── 06-altered.txt │ │ ├── 07-augmented.txt │ │ ├── 08-bebop.txt │ │ ├── 09-blues.txt │ │ ├── 10-dorian.txt │ │ ├── 11-double-harmonic.txt │ │ ├── 12-flamenco.txt │ │ ├── 13-gypsy.txt │ │ ├── 14-half-diminished.txt │ │ ├── 15-harmonic-major.txt │ │ ├── 16-harmonic-minor.txt │ │ ├── 17-hirajoshi.txt │ │ ├── 18-hungarian-major.txt │ │ ├── 18-hungarian-minor.txt │ │ ├── 19-in.txt │ │ ├── 20-insen.txt │ │ ├── 21-istrian.txt │ │ ├── 22-iwato.txt │ │ ├── 23-locrian.txt │ │ ├── 24-lydian-augmented.txt │ │ ├── 25-lydian-diminished.txt │ │ ├── 26-lydian.txt │ │ ├── 27-bebop-major.txt │ │ ├── 28-locrian-major.txt │ │ ├── 29-pentatonic-major.txt │ │ ├── 30-pentatonic-minor.txt │ │ ├── 31-neopolitan-major.txt │ │ ├── 32-neopolitan-minor.txt │ │ ├── 33-octatonic.txt │ │ ├── 34-persian.txt │ │ ├── 35-phrygian-dominant.txt │ │ ├── 36-phrygian.txt │ │ ├── 37-prometheus.txt │ │ ├── 38-harmonics.txt │ │ ├── 39-tritone.txt │ │ ├── 40-tritone-two.txt │ │ ├── 41-slava-ukraini.txt │ │ ├── 42-whole-tone.txt │ │ ├── 43-yo.txt │ │ └── 44-gamelan.txt │ │ ├── scales2.py │ │ ├── sequence.py │ │ ├── settings.toml │ │ ├── settings.txt │ │ ├── simplemcp3208.py │ │ └── sycamore_gc.py ├── images │ ├── 1-parts.jpg │ ├── 1.2-production-cut-trace.png │ ├── 10-7seg.jpg │ ├── 11-stuffed-pcb.jpg │ ├── 12-washer.jpg │ ├── 13-press-fit.jpg │ ├── 14-press-fit.jpg │ ├── 15-front-panel-no-led.jpg │ ├── 15-front-panel.jpg │ ├── 15a-7-seg-rear.jpg │ ├── 15b-7-seg-top.jpg │ ├── 16-front-panel.jpg │ ├── 17-done.jpg │ ├── 2-pico.jpg │ ├── 3-pico.jpg │ ├── 4-led.jpg │ ├── 5-led.jpg │ ├── 5a-light-pipe.jpg │ ├── 6-power.jpg │ ├── 7-pico.jpg │ ├── 8-even-more-pico.jpg │ ├── 9-more-pico.jpg │ ├── firmware.png │ └── panel.jpg ├── sycamore-backups │ ├── sycamore-2025-02-15_125657.zip │ └── sycamore-2025-02-20_144925.zip ├── sycamore.kicad_pcb ├── sycamore.kicad_pro ├── sycamore.kicad_sch ├── sycamore.pro ├── sycamore │ └── sycamore-backups │ │ └── sycamore-2024-03-19_191908.zip ├── sycamore_front_panel.kicad_sch └── sycamore_io.kicad_sch ├── template └── README.md ├── through ├── README.md ├── images │ └── through.png ├── through-cache.lib ├── through-logic.kicad_pcb ├── through-panel.kicad_pcb ├── through.kicad_pcb ├── through.pro └── through.sch ├── turing-machine-panels ├── README.md ├── clock.kicad_mod ├── edit.kicad_mod ├── fp-lib-table ├── function.kicad_mod ├── icons │ ├── clock.PNG │ ├── edit.PNG │ ├── function.PNG │ ├── lock.PNG │ ├── noise.PNG │ ├── note.PNG │ ├── pulse.PNG │ ├── scale.PNG │ ├── steps.PNG │ └── unlock.PNG ├── images │ └── panels.png ├── locked.kicad_mod ├── noise.kicad_mod ├── note.kicad_mod ├── pulse.kicad_mod ├── pulses.kicad_pcb ├── scale.kicad_mod ├── steps.kicad_mod ├── time.kicad_mod ├── turing-machine-panels.kicad_pcb ├── turing-machine-panels.pro ├── turing-machine-panels.sch ├── turing-machine.kicad_pcb ├── unlocked.kicad_mod └── volts.kicad_pcb ├── twoshot ├── .gitignore ├── README.md ├── images │ └── panel.jpg ├── twoshot.kicad_pcb ├── twoshot.kicad_pro ├── twoshot.kicad_sch ├── twoshot.pro └── twoshot.sch ├── vcadsr ├── .gitignore ├── ASSEMBLY.md ├── README.md ├── VCADSR.lib ├── ibom.html ├── images │ ├── 1-parts.jpg │ ├── 10-panel.jpg │ ├── 11-spacer.jpg │ ├── 12-rear.jpg │ ├── 13-ic.jpg │ ├── 2-diodes.jpg │ ├── 3-ic.jpg │ ├── 4-ic.jpg │ ├── 5-regulator.jpg │ ├── 6-caps.jpg │ ├── 7-power.jpg │ ├── 8-power.jpg │ ├── 9-front.jpg │ ├── trace-cut-1.PNG │ ├── trace-cut-2.PNG │ └── vcadsr.PNG ├── sym-lib-table ├── vcadsr-board.kicad_pcb ├── vcadsr-panel.kicad_pcb ├── vcadsr.kicad_pcb ├── vcadsr.kicad_pro ├── vcadsr.pro └── vcadsr.sch ├── yarmplus ├── ASSEMBLY.md ├── README.md ├── ibom.html ├── images │ ├── 1-parts.jpg │ ├── 10-power.jpg │ ├── 11-trimmers.jpg │ ├── 12-sockets.jpg │ ├── 13-ics.jpg │ ├── 2-diodes.jpg │ ├── 3-resistors.jpg │ ├── 4-resistors.jpg │ ├── 5-caps.jpg │ ├── 6-ic.jpg │ ├── 7-ic.jpg │ ├── 8-ic.jpg │ ├── 9-power.jpg │ ├── yarmplus-logic.png │ └── yarmplus-panel.png ├── yarmplus-logic.kicad_pcb ├── yarmplus-panel.kicad_pcb ├── yarmplus.lib ├── yarmplus.pro └── yarmplus.sch └── yash ├── .gitignore ├── README.md ├── images ├── yash-board.png └── yash-panel.png ├── yash-board.kicad_pcb ├── yash-panel.kicad_pcb ├── yash.kicad_pcb ├── yash.pro └── yash.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/.gitignore -------------------------------------------------------------------------------- /3-phase-lfo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/3-phase-lfo/.gitignore -------------------------------------------------------------------------------- /3-phase-lfo/3-phase-lfo.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/3-phase-lfo/3-phase-lfo.kicad_pcb -------------------------------------------------------------------------------- /3-phase-lfo/3-phase-lfo.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/3-phase-lfo/3-phase-lfo.kicad_pro -------------------------------------------------------------------------------- /3-phase-lfo/3-phase-lfo.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/3-phase-lfo/3-phase-lfo.kicad_sch -------------------------------------------------------------------------------- /3-phase-lfo/3-phase-lfo.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/3-phase-lfo/3-phase-lfo.sch -------------------------------------------------------------------------------- /3-phase-lfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/3-phase-lfo/README.md -------------------------------------------------------------------------------- /3-phase-lfo/images/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/3-phase-lfo/images/panel.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/README.md -------------------------------------------------------------------------------- /VCA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCA/README.md -------------------------------------------------------------------------------- /VCA/images/vca-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCA/images/vca-board.png -------------------------------------------------------------------------------- /VCA/images/vca-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCA/images/vca-panel.png -------------------------------------------------------------------------------- /VCA/vca-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCA/vca-board.kicad_pcb -------------------------------------------------------------------------------- /VCA/vca-board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCA/vca-board.sch -------------------------------------------------------------------------------- /VCA/vca-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCA/vca-panel.kicad_pcb -------------------------------------------------------------------------------- /VCA/vca.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCA/vca.pro -------------------------------------------------------------------------------- /VCDO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/README.md -------------------------------------------------------------------------------- /VCDO/images/vcdo-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/images/vcdo-panel.png -------------------------------------------------------------------------------- /VCDO/images/vcdo-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/images/vcdo-pcb.png -------------------------------------------------------------------------------- /VCDO/vcvco-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco-board.kicad_pcb -------------------------------------------------------------------------------- /VCDO/vcvco-board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco-board.pro -------------------------------------------------------------------------------- /VCDO/vcvco-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco-cache.lib -------------------------------------------------------------------------------- /VCDO/vcvco-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco-panel.kicad_pcb -------------------------------------------------------------------------------- /VCDO/vcvco-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco-panel.pro -------------------------------------------------------------------------------- /VCDO/vcvco.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco.kicad_pcb -------------------------------------------------------------------------------- /VCDO/vcvco.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco.pro -------------------------------------------------------------------------------- /VCDO/vcvco.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/VCDO/vcvco.sch -------------------------------------------------------------------------------- /cornucopia/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/.gitignore -------------------------------------------------------------------------------- /cornucopia/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/LICENSE.md -------------------------------------------------------------------------------- /cornucopia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/README.md -------------------------------------------------------------------------------- /cornucopia/divergent-waves.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/divergent-waves.kicad_wks -------------------------------------------------------------------------------- /cornucopia/hardware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/hardware/.gitignore -------------------------------------------------------------------------------- /cornucopia/hardware/cornucopia/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/hardware/cornucopia/LICENSE -------------------------------------------------------------------------------- /cornucopia/hardware/cornucopia/board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/hardware/cornucopia/board.kicad_pcb -------------------------------------------------------------------------------- /cornucopia/hardware/cornucopia/board.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/hardware/cornucopia/board.kicad_pro -------------------------------------------------------------------------------- /cornucopia/hardware/cornucopia/board.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/hardware/cornucopia/board.kicad_sch -------------------------------------------------------------------------------- /cornucopia/hardware/cornucopia/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/hardware/cornucopia/fp-lib-table -------------------------------------------------------------------------------- /cornucopia/hardware/divergent-waves.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/hardware/divergent-waves.kicad_wks -------------------------------------------------------------------------------- /cornucopia/images/cornucopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/cornucopia/images/cornucopia.png -------------------------------------------------------------------------------- /d6/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/ASSEMBLY.md -------------------------------------------------------------------------------- /d6/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/BOM.md -------------------------------------------------------------------------------- /d6/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/MANUAL.md -------------------------------------------------------------------------------- /d6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/README.md -------------------------------------------------------------------------------- /d6/d6.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/d6.kicad_pcb -------------------------------------------------------------------------------- /d6/d6.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/d6.kicad_pro -------------------------------------------------------------------------------- /d6/d6.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/d6.kicad_sch -------------------------------------------------------------------------------- /d6/firmware/Dice-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/Dice-1.0.zip -------------------------------------------------------------------------------- /d6/firmware/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/LICENSE.md -------------------------------------------------------------------------------- /d6/firmware/d6.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/d6.ino -------------------------------------------------------------------------------- /d6/firmware/libraries/LedControl/LedControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/libraries/LedControl/LedControl.cpp -------------------------------------------------------------------------------- /d6/firmware/libraries/LedControl/LedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/libraries/LedControl/LedControl.h -------------------------------------------------------------------------------- /d6/firmware/pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/pins.h -------------------------------------------------------------------------------- /d6/firmware/pins_pipico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/pins_pipico.h -------------------------------------------------------------------------------- /d6/firmware/pins_teensy4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/firmware/pins_teensy4.h -------------------------------------------------------------------------------- /d6/images/1-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/1-parts.jpg -------------------------------------------------------------------------------- /d6/images/10-trimmers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/10-trimmers.jpg -------------------------------------------------------------------------------- /d6/images/11-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/11-front.jpg -------------------------------------------------------------------------------- /d6/images/12-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/12-panel.jpg -------------------------------------------------------------------------------- /d6/images/13-7-seg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/13-7-seg.jpg -------------------------------------------------------------------------------- /d6/images/14-pot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/14-pot.jpg -------------------------------------------------------------------------------- /d6/images/2-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/2-headers.jpg -------------------------------------------------------------------------------- /d6/images/3-pi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/3-pi.jpg -------------------------------------------------------------------------------- /d6/images/4-ds1882.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/4-ds1882.jpg -------------------------------------------------------------------------------- /d6/images/5-diodes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/5-diodes.jpg -------------------------------------------------------------------------------- /d6/images/6-regulators.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/6-regulators.jpg -------------------------------------------------------------------------------- /d6/images/7-caps-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/7-caps-power.jpg -------------------------------------------------------------------------------- /d6/images/8-pi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/8-pi.jpg -------------------------------------------------------------------------------- /d6/images/9-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/9-header.jpg -------------------------------------------------------------------------------- /d6/images/panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/d6/images/panel.jpg -------------------------------------------------------------------------------- /drumfiend/.gitignore: -------------------------------------------------------------------------------- 1 | gerbers/ -------------------------------------------------------------------------------- /drumfiend/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/ASSEMBLY.md -------------------------------------------------------------------------------- /drumfiend/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/BOM.md -------------------------------------------------------------------------------- /drumfiend/FIRMWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/FIRMWARE.md -------------------------------------------------------------------------------- /drumfiend/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/MANUAL.md -------------------------------------------------------------------------------- /drumfiend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/README.md -------------------------------------------------------------------------------- /drumfiend/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/bom/ibom.html -------------------------------------------------------------------------------- /drumfiend/firmware/drumfiend/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/drumfiend/code.py -------------------------------------------------------------------------------- /drumfiend/firmware/drumfiend/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/drumfiend/config.txt -------------------------------------------------------------------------------- /drumfiend/firmware/drumfiend/drum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/drumfiend/drum.py -------------------------------------------------------------------------------- /drumfiend/firmware/drumfiend/drum_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/drumfiend/drum_config.py -------------------------------------------------------------------------------- /drumfiend/firmware/drumfiend/drummer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/drumfiend/drummer.py -------------------------------------------------------------------------------- /drumfiend/firmware/drumfiend/firmware.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/drumfiend/firmware.zip -------------------------------------------------------------------------------- /drumfiend/firmware/prototype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/prototype/README.md -------------------------------------------------------------------------------- /drumfiend/firmware/prototype/drumfiend.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/firmware/prototype/drumfiend.ino -------------------------------------------------------------------------------- /drumfiend/images/1-tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/1-tools.jpg -------------------------------------------------------------------------------- /drumfiend/images/10-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/10-teensy.jpg -------------------------------------------------------------------------------- /drumfiend/images/11-midi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/11-midi.jpg -------------------------------------------------------------------------------- /drumfiend/images/12-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/12-power.jpg -------------------------------------------------------------------------------- /drumfiend/images/13-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/13-power.jpg -------------------------------------------------------------------------------- /drumfiend/images/14-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/14-teensy.jpg -------------------------------------------------------------------------------- /drumfiend/images/15-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/15-teensy.jpg -------------------------------------------------------------------------------- /drumfiend/images/16-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/16-back.jpg -------------------------------------------------------------------------------- /drumfiend/images/17-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/17-headers.jpg -------------------------------------------------------------------------------- /drumfiend/images/18-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/18-headers.jpg -------------------------------------------------------------------------------- /drumfiend/images/19-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/19-headers.jpg -------------------------------------------------------------------------------- /drumfiend/images/2-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/2-teensy.jpg -------------------------------------------------------------------------------- /drumfiend/images/20-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/20-headers.jpg -------------------------------------------------------------------------------- /drumfiend/images/21-sockets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/21-sockets.jpg -------------------------------------------------------------------------------- /drumfiend/images/22-sockets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/22-sockets.jpg -------------------------------------------------------------------------------- /drumfiend/images/23-sockets-and-leds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/23-sockets-and-leds.jpg -------------------------------------------------------------------------------- /drumfiend/images/24-sockets-and-leds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/24-sockets-and-leds.jpg -------------------------------------------------------------------------------- /drumfiend/images/25-final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/25-final.jpg -------------------------------------------------------------------------------- /drumfiend/images/26-final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/26-final.jpg -------------------------------------------------------------------------------- /drumfiend/images/3-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/3-teensy.jpg -------------------------------------------------------------------------------- /drumfiend/images/4-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/4-power.jpg -------------------------------------------------------------------------------- /drumfiend/images/5-midi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/5-midi.jpg -------------------------------------------------------------------------------- /drumfiend/images/6-caps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/6-caps.jpg -------------------------------------------------------------------------------- /drumfiend/images/7-5v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/7-5v.jpg -------------------------------------------------------------------------------- /drumfiend/images/8-5v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/8-5v.jpg -------------------------------------------------------------------------------- /drumfiend/images/9-caps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/9-caps.jpg -------------------------------------------------------------------------------- /drumfiend/images/drumfiend-midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/drumfiend-midi.png -------------------------------------------------------------------------------- /drumfiend/images/drumfiend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/drumfiend.png -------------------------------------------------------------------------------- /drumfiend/images/firmware-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/firmware-1.png -------------------------------------------------------------------------------- /drumfiend/images/firmware-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/images/firmware-2.png -------------------------------------------------------------------------------- /drumfiend/impact-main.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-main.kicad_pcb -------------------------------------------------------------------------------- /drumfiend/impact-pal-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-pal-cache.lib -------------------------------------------------------------------------------- /drumfiend/impact-pal.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-pal.kicad_pcb -------------------------------------------------------------------------------- /drumfiend/impact-pal.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-pal.kicad_pro -------------------------------------------------------------------------------- /drumfiend/impact-pal.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-pal.kicad_sch -------------------------------------------------------------------------------- /drumfiend/impact-pal.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-pal.pro -------------------------------------------------------------------------------- /drumfiend/impact-pal.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-pal.sch -------------------------------------------------------------------------------- /drumfiend/impact-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-panel.kicad_pcb -------------------------------------------------------------------------------- /drumfiend/impact-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-panel.pro -------------------------------------------------------------------------------- /drumfiend/impact-sub.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-sub.kicad_pcb -------------------------------------------------------------------------------- /drumfiend/impact-sub.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/drumfiend/impact-sub.pro -------------------------------------------------------------------------------- /kinky-lynx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/kinky-lynx/README.md -------------------------------------------------------------------------------- /kinky-lynx/images/kinky-lynx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/kinky-lynx/images/kinky-lynx.png -------------------------------------------------------------------------------- /kinky-lynx/kinky-lynx-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/kinky-lynx/kinky-lynx-cache.lib -------------------------------------------------------------------------------- /kinky-lynx/kinky-lynx.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/kinky-lynx/kinky-lynx.kicad_pcb -------------------------------------------------------------------------------- /kinky-lynx/kinky-lynx.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/kinky-lynx/kinky-lynx.pro -------------------------------------------------------------------------------- /kinky-lynx/kinky-lynx.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/kinky-lynx/kinky-lynx.sch -------------------------------------------------------------------------------- /lattice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lattice/README.md -------------------------------------------------------------------------------- /lattice/lattice/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lattice/lattice/bom/ibom.html -------------------------------------------------------------------------------- /lattice/lattice/lattice-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lattice/lattice/lattice-cache.lib -------------------------------------------------------------------------------- /lattice/lattice/lattice.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lattice/lattice/lattice.kicad_pcb -------------------------------------------------------------------------------- /lattice/lattice/lattice.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lattice/lattice/lattice.pro -------------------------------------------------------------------------------- /lattice/lattice/lattice.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lattice/lattice/lattice.sch -------------------------------------------------------------------------------- /leaky-bucket/.gitignore: -------------------------------------------------------------------------------- 1 | leaky-bucket-* -------------------------------------------------------------------------------- /leaky-bucket/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/leaky-bucket/BOM.md -------------------------------------------------------------------------------- /leaky-bucket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/leaky-bucket/README.md -------------------------------------------------------------------------------- /leaky-bucket/delay-stage.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/leaky-bucket/delay-stage.kicad_sch -------------------------------------------------------------------------------- /leaky-bucket/images/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/leaky-bucket/images/panel.png -------------------------------------------------------------------------------- /leaky-bucket/leaky-bucket.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/leaky-bucket/leaky-bucket.kicad_pcb -------------------------------------------------------------------------------- /leaky-bucket/leaky-bucket.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/leaky-bucket/leaky-bucket.kicad_pro -------------------------------------------------------------------------------- /leaky-bucket/leaky-bucket.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/leaky-bucket/leaky-bucket.kicad_sch -------------------------------------------------------------------------------- /logic/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/ASSEMBLY.md -------------------------------------------------------------------------------- /logic/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/BOM.md -------------------------------------------------------------------------------- /logic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/README.md -------------------------------------------------------------------------------- /logic/images/1-tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/1-tools.jpg -------------------------------------------------------------------------------- /logic/images/2-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/2-parts.jpg -------------------------------------------------------------------------------- /logic/images/3-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/3-power.jpg -------------------------------------------------------------------------------- /logic/images/3-power2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/3-power2.jpg -------------------------------------------------------------------------------- /logic/images/3-power3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/3-power3.jpg -------------------------------------------------------------------------------- /logic/images/4-ic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/4-ic.jpg -------------------------------------------------------------------------------- /logic/images/4-ic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/4-ic2.jpg -------------------------------------------------------------------------------- /logic/images/4-ic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/4-ic3.jpg -------------------------------------------------------------------------------- /logic/images/4-ic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/4-ic4.jpg -------------------------------------------------------------------------------- /logic/images/4-ic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/4-ic5.jpg -------------------------------------------------------------------------------- /logic/images/4-ic6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/4-ic6.jpg -------------------------------------------------------------------------------- /logic/images/4-ic7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/4-ic7.jpg -------------------------------------------------------------------------------- /logic/images/5-jacks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/5-jacks.jpg -------------------------------------------------------------------------------- /logic/images/5-jacks2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/5-jacks2.jpg -------------------------------------------------------------------------------- /logic/images/5-jacks3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/5-jacks3.jpg -------------------------------------------------------------------------------- /logic/images/5-jacks4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/5-jacks4.jpg -------------------------------------------------------------------------------- /logic/images/5-jacks5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/5-jacks5.jpg -------------------------------------------------------------------------------- /logic/images/6-indicators.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/6-indicators.jpg -------------------------------------------------------------------------------- /logic/images/7-indicators2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/7-indicators2.jpg -------------------------------------------------------------------------------- /logic/images/7-indicators3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/7-indicators3.jpg -------------------------------------------------------------------------------- /logic/images/8-finish1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/8-finish1.jpg -------------------------------------------------------------------------------- /logic/images/8-finish2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/8-finish2.jpg -------------------------------------------------------------------------------- /logic/images/8-finish3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/8-finish3.jpg -------------------------------------------------------------------------------- /logic/images/8-finish4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/8-finish4.jpg -------------------------------------------------------------------------------- /logic/images/8-finish5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/8-finish5.jpg -------------------------------------------------------------------------------- /logic/images/8-finish6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/8-finish6.jpg -------------------------------------------------------------------------------- /logic/images/logic-back.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/logic-back.PNG -------------------------------------------------------------------------------- /logic/images/logic-front.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/images/logic-front.PNG -------------------------------------------------------------------------------- /logic/logic.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/logic.pro -------------------------------------------------------------------------------- /logic/logic.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/logic.sch -------------------------------------------------------------------------------- /logic/main.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/main.kicad_pcb -------------------------------------------------------------------------------- /logic/mini-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/mini-board.kicad_pcb -------------------------------------------------------------------------------- /logic/panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/logic/panel.kicad_pcb -------------------------------------------------------------------------------- /lpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/README.md -------------------------------------------------------------------------------- /lpg/images/lpg-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/images/lpg-board.png -------------------------------------------------------------------------------- /lpg/images/lpg-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/images/lpg-panel.png -------------------------------------------------------------------------------- /lpg/lpg-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/lpg-board.kicad_pcb -------------------------------------------------------------------------------- /lpg/lpg-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/lpg-cache.lib -------------------------------------------------------------------------------- /lpg/lpg-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/lpg-panel.kicad_pcb -------------------------------------------------------------------------------- /lpg/lpg-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/lpg-panel.pro -------------------------------------------------------------------------------- /lpg/lpg.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/lpg.kicad_pcb -------------------------------------------------------------------------------- /lpg/lpg.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/lpg.pro -------------------------------------------------------------------------------- /lpg/lpg.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/lpg/lpg.sch -------------------------------------------------------------------------------- /mix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/README.md -------------------------------------------------------------------------------- /mix/images/mix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/images/mix.png -------------------------------------------------------------------------------- /mix/mix-logic.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/mix-logic.kicad_pcb -------------------------------------------------------------------------------- /mix/mix-logic.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/mix-logic.pro -------------------------------------------------------------------------------- /mix/mix-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/mix-panel.kicad_pcb -------------------------------------------------------------------------------- /mix/mix-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/mix-panel.pro -------------------------------------------------------------------------------- /mix/mix.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/mix.kicad_pcb -------------------------------------------------------------------------------- /mix/mix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/mix.pro -------------------------------------------------------------------------------- /mix/mix.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mix/mix.sch -------------------------------------------------------------------------------- /mult-casino/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/ASSEMBLY.md -------------------------------------------------------------------------------- /mult-casino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/README.md -------------------------------------------------------------------------------- /mult-casino/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/ibom.html -------------------------------------------------------------------------------- /mult-casino/images/1-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/1-parts.jpg -------------------------------------------------------------------------------- /mult-casino/images/10-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/10-power.jpg -------------------------------------------------------------------------------- /mult-casino/images/11-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/11-teensy.jpg -------------------------------------------------------------------------------- /mult-casino/images/12-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/12-teensy.jpg -------------------------------------------------------------------------------- /mult-casino/images/13-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/13-teensy.jpg -------------------------------------------------------------------------------- /mult-casino/images/14-trimmer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/14-trimmer.jpg -------------------------------------------------------------------------------- /mult-casino/images/15-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/15-front.jpg -------------------------------------------------------------------------------- /mult-casino/images/16-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/16-front.jpg -------------------------------------------------------------------------------- /mult-casino/images/17-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/17-front.jpg -------------------------------------------------------------------------------- /mult-casino/images/18-fix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/18-fix.jpg -------------------------------------------------------------------------------- /mult-casino/images/19-fix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/19-fix.jpg -------------------------------------------------------------------------------- /mult-casino/images/2-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/2-teensy.jpg -------------------------------------------------------------------------------- /mult-casino/images/20-fix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/20-fix.jpg -------------------------------------------------------------------------------- /mult-casino/images/21-finish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/21-finish.jpg -------------------------------------------------------------------------------- /mult-casino/images/3-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/3-teensy.jpg -------------------------------------------------------------------------------- /mult-casino/images/4-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/4-teensy.jpg -------------------------------------------------------------------------------- /mult-casino/images/5-digipots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/5-digipots.jpg -------------------------------------------------------------------------------- /mult-casino/images/6-digipots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/6-digipots.jpg -------------------------------------------------------------------------------- /mult-casino/images/7-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/7-power.jpg -------------------------------------------------------------------------------- /mult-casino/images/8-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/8-power.jpg -------------------------------------------------------------------------------- /mult-casino/images/9-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/mult-casino/images/9-power.jpg -------------------------------------------------------------------------------- /multimult/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/README.md -------------------------------------------------------------------------------- /multimult/images/multmult-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/images/multmult-panel.png -------------------------------------------------------------------------------- /multimult/multimult-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multimult-board.kicad_pcb -------------------------------------------------------------------------------- /multimult/multimult-board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multimult-board.pro -------------------------------------------------------------------------------- /multimult/multimult-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multimult-cache.lib -------------------------------------------------------------------------------- /multimult/multimult.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multimult.kicad_pcb -------------------------------------------------------------------------------- /multimult/multimult.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multimult.pro -------------------------------------------------------------------------------- /multimult/multimult.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multimult.sch -------------------------------------------------------------------------------- /multimult/multmult-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multmult-panel.kicad_pcb -------------------------------------------------------------------------------- /multimult/multmult-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/multimult/multmult-panel.pro -------------------------------------------------------------------------------- /oak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/.gitignore -------------------------------------------------------------------------------- /oak/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/ASSEMBLY.md -------------------------------------------------------------------------------- /oak/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/BOM.md -------------------------------------------------------------------------------- /oak/FIRMWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/FIRMWARE.md -------------------------------------------------------------------------------- /oak/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/MANUAL.md -------------------------------------------------------------------------------- /oak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/README.md -------------------------------------------------------------------------------- /oak/firmware/hardware-test/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/firmware/hardware-test/code.py -------------------------------------------------------------------------------- /oak/firmware/oak/.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /oak/firmware/oak/oak-1.0.ino.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/firmware/oak/oak-1.0.ino.uf2 -------------------------------------------------------------------------------- /oak/firmware/oak/oak-1.1.ino.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/firmware/oak/oak-1.1.ino.uf2 -------------------------------------------------------------------------------- /oak/firmware/oak/oak.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/firmware/oak/oak.ino -------------------------------------------------------------------------------- /oak/images/.gitignore: -------------------------------------------------------------------------------- 1 | assembly.zip -------------------------------------------------------------------------------- /oak/images/1-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/1-parts.jpg -------------------------------------------------------------------------------- /oak/images/10-thonkiconn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/10-thonkiconn.jpg -------------------------------------------------------------------------------- /oak/images/11-led-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/11-led-buttons.jpg -------------------------------------------------------------------------------- /oak/images/12-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/12-buttons.jpg -------------------------------------------------------------------------------- /oak/images/13-leds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/13-leds.jpg -------------------------------------------------------------------------------- /oak/images/14-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/14-panel.jpg -------------------------------------------------------------------------------- /oak/images/2-jst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/2-jst.jpg -------------------------------------------------------------------------------- /oak/images/3-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/3-power.jpg -------------------------------------------------------------------------------- /oak/images/4-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/4-header.jpg -------------------------------------------------------------------------------- /oak/images/5-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/5-button.jpg -------------------------------------------------------------------------------- /oak/images/6-standoffs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/6-standoffs.jpg -------------------------------------------------------------------------------- /oak/images/7-thonkiconn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/7-thonkiconn.jpg -------------------------------------------------------------------------------- /oak/images/8-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/8-buttons.jpg -------------------------------------------------------------------------------- /oak/images/8b-leds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/8b-leds.jpg -------------------------------------------------------------------------------- /oak/images/9-standoffs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/9-standoffs.jpg -------------------------------------------------------------------------------- /oak/images/oak-annotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/oak-annotated.jpg -------------------------------------------------------------------------------- /oak/images/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/images/panel.png -------------------------------------------------------------------------------- /oak/oak.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/oak.kicad_pcb -------------------------------------------------------------------------------- /oak/oak.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/oak.kicad_pro -------------------------------------------------------------------------------- /oak/oak.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oak/oak.kicad_sch -------------------------------------------------------------------------------- /oneshot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/.gitignore -------------------------------------------------------------------------------- /oneshot/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/ASSEMBLY.md -------------------------------------------------------------------------------- /oneshot/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/BOM.md -------------------------------------------------------------------------------- /oneshot/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/MANUAL.md -------------------------------------------------------------------------------- /oneshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/README.md -------------------------------------------------------------------------------- /oneshot/cv-and-pot.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/cv-and-pot.kicad_sch -------------------------------------------------------------------------------- /oneshot/images/1-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/1-parts.jpg -------------------------------------------------------------------------------- /oneshot/images/10-jst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/10-jst.jpg -------------------------------------------------------------------------------- /oneshot/images/11-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/11-panel.jpg -------------------------------------------------------------------------------- /oneshot/images/12-led.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/12-led.jpg -------------------------------------------------------------------------------- /oneshot/images/13-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/13-panel.jpg -------------------------------------------------------------------------------- /oneshot/images/14-solder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/14-solder.jpg -------------------------------------------------------------------------------- /oneshot/images/15-finish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/15-finish.jpg -------------------------------------------------------------------------------- /oneshot/images/16-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/16-button.jpg -------------------------------------------------------------------------------- /oneshot/images/17-done.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/17-done.jpg -------------------------------------------------------------------------------- /oneshot/images/18-reallydone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/18-reallydone.jpg -------------------------------------------------------------------------------- /oneshot/images/2-cut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/2-cut.jpg -------------------------------------------------------------------------------- /oneshot/images/3-solder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/3-solder.jpg -------------------------------------------------------------------------------- /oneshot/images/4-jst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/4-jst.jpg -------------------------------------------------------------------------------- /oneshot/images/5-socket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/5-socket.jpg -------------------------------------------------------------------------------- /oneshot/images/6-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/6-power.jpg -------------------------------------------------------------------------------- /oneshot/images/7-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/7-headers.jpg -------------------------------------------------------------------------------- /oneshot/images/8-stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/8-stack.jpg -------------------------------------------------------------------------------- /oneshot/images/9-resist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/images/9-resist.jpg -------------------------------------------------------------------------------- /oneshot/led-driver.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/led-driver.kicad_sch -------------------------------------------------------------------------------- /oneshot/oneshot.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/oneshot.kicad_pcb -------------------------------------------------------------------------------- /oneshot/oneshot.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/oneshot.kicad_pro -------------------------------------------------------------------------------- /oneshot/oneshot.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/oneshot/oneshot.kicad_sch -------------------------------------------------------------------------------- /pentanoise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/README.md -------------------------------------------------------------------------------- /pentanoise/images/pentanoise-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/images/pentanoise-board.png -------------------------------------------------------------------------------- /pentanoise/images/pentanoise-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/images/pentanoise-panel.png -------------------------------------------------------------------------------- /pentanoise/pentanoise-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise-board.kicad_pcb -------------------------------------------------------------------------------- /pentanoise/pentanoise-board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise-board.pro -------------------------------------------------------------------------------- /pentanoise/pentanoise-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise-panel.kicad_pcb -------------------------------------------------------------------------------- /pentanoise/pentanoise-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise-panel.pro -------------------------------------------------------------------------------- /pentanoise/pentanoise-white-noise.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise-white-noise.kicad_mod -------------------------------------------------------------------------------- /pentanoise/pentanoise.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise.kicad_pcb -------------------------------------------------------------------------------- /pentanoise/pentanoise.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise.lib -------------------------------------------------------------------------------- /pentanoise/pentanoise.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise.pro -------------------------------------------------------------------------------- /pentanoise/pentanoise.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pentanoise/pentanoise.sch -------------------------------------------------------------------------------- /pirate-radio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pirate-radio/README.md -------------------------------------------------------------------------------- /pirate-radio/images/pirate-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pirate-radio/images/pirate-panel.png -------------------------------------------------------------------------------- /pirate-radio/pirate-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pirate-radio/pirate-panel.kicad_pcb -------------------------------------------------------------------------------- /pirate-radio/pirate-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/pirate-radio/pirate-panel.pro -------------------------------------------------------------------------------- /rowan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/.gitignore -------------------------------------------------------------------------------- /rowan/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/ASSEMBLY.md -------------------------------------------------------------------------------- /rowan/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/BOM.md -------------------------------------------------------------------------------- /rowan/FIRMWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/FIRMWARE.md -------------------------------------------------------------------------------- /rowan/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/MANUAL.md -------------------------------------------------------------------------------- /rowan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/README.md -------------------------------------------------------------------------------- /rowan/firmware/rowan/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .theia/ -------------------------------------------------------------------------------- /rowan/firmware/rowan/rowan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/firmware/rowan/rowan.ino -------------------------------------------------------------------------------- /rowan/firmware/rowan/rowan.ino.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/firmware/rowan/rowan.ino.uf2 -------------------------------------------------------------------------------- /rowan/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/fp-lib-table -------------------------------------------------------------------------------- /rowan/images/.gitignore: -------------------------------------------------------------------------------- 1 | raw/ 2 | -------------------------------------------------------------------------------- /rowan/images/01-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/01-parts.jpg -------------------------------------------------------------------------------- /rowan/images/02-depanel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/02-depanel.jpg -------------------------------------------------------------------------------- /rowan/images/03-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/03-headers.jpg -------------------------------------------------------------------------------- /rowan/images/04-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/04-headers.jpg -------------------------------------------------------------------------------- /rowan/images/05-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/05-headers.jpg -------------------------------------------------------------------------------- /rowan/images/06-split.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/06-split.jpg -------------------------------------------------------------------------------- /rowan/images/07-lightpipes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/07-lightpipes.jpg -------------------------------------------------------------------------------- /rowan/images/08-sockets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/08-sockets.jpg -------------------------------------------------------------------------------- /rowan/images/09-mount.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/09-mount.jpg -------------------------------------------------------------------------------- /rowan/images/10-sockets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/10-sockets.jpg -------------------------------------------------------------------------------- /rowan/images/11-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/11-header.jpg -------------------------------------------------------------------------------- /rowan/images/12-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/12-button.jpg -------------------------------------------------------------------------------- /rowan/images/13-jst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/13-jst.jpg -------------------------------------------------------------------------------- /rowan/images/14-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/14-power.jpg -------------------------------------------------------------------------------- /rowan/images/15-join.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/15-join.jpg -------------------------------------------------------------------------------- /rowan/images/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/images/panel.png -------------------------------------------------------------------------------- /rowan/rowan.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/rowan.kicad_pcb -------------------------------------------------------------------------------- /rowan/rowan.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/rowan.kicad_pro -------------------------------------------------------------------------------- /rowan/rowan.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/rowan.kicad_sch -------------------------------------------------------------------------------- /rowan/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/rowan/sym-lib-table -------------------------------------------------------------------------------- /slew-limiter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/README.md -------------------------------------------------------------------------------- /slew-limiter/images/slew-limiter-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/images/slew-limiter-board.png -------------------------------------------------------------------------------- /slew-limiter/images/slew-limiter-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/images/slew-limiter-panel.png -------------------------------------------------------------------------------- /slew-limiter/slew-limiter-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/slew-limiter-board.kicad_pcb -------------------------------------------------------------------------------- /slew-limiter/slew-limiter-board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/slew-limiter-board.pro -------------------------------------------------------------------------------- /slew-limiter/slew-limiter-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/slew-limiter-panel.kicad_pcb -------------------------------------------------------------------------------- /slew-limiter/slew-limiter-panel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/slew-limiter-panel.pro -------------------------------------------------------------------------------- /slew-limiter/slew-limiter.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/slew-limiter.kicad_pcb -------------------------------------------------------------------------------- /slew-limiter/slew-limiter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/slew-limiter.pro -------------------------------------------------------------------------------- /slew-limiter/slew-limiter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/slew-limiter/slew-limiter.sch -------------------------------------------------------------------------------- /sycamore/ASSEMBLY-7-SEG-ALT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/ASSEMBLY-7-SEG-ALT.md -------------------------------------------------------------------------------- /sycamore/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/ASSEMBLY.md -------------------------------------------------------------------------------- /sycamore/BOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/BOM.md -------------------------------------------------------------------------------- /sycamore/FIRMWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/FIRMWARE.md -------------------------------------------------------------------------------- /sycamore/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/MANUAL.md -------------------------------------------------------------------------------- /sycamore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/README.md -------------------------------------------------------------------------------- /sycamore/firmware/1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/README.md -------------------------------------------------------------------------------- /sycamore/firmware/1.0/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/boot_out.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/code.py -------------------------------------------------------------------------------- /sycamore/firmware/1.0/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/deque.py -------------------------------------------------------------------------------- /sycamore/firmware/1.0/ledcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/ledcontrol.py -------------------------------------------------------------------------------- /sycamore/firmware/1.0/lib/adafruit_debouncer.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/lib/adafruit_debouncer.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.0/lib/adafruit_pca9685.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/lib/adafruit_pca9685.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.0/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.0/lib/adafruit_simplemath.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/lib/adafruit_simplemath.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.0/lib/adafruit_ticks.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/lib/adafruit_ticks.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.0/ltc2632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/ltc2632.py -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/00-chromatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/00-chromatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/01-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/01-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/02-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/02-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/03-mixolydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/03-mixolydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/04-enigmatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/04-enigmatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/05-acoustic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/05-acoustic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/06-altered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/06-altered.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/07-augmented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/07-augmented.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/08-bebop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/08-bebop.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/09-blues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/09-blues.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/10-dorian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/10-dorian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/11-double-harmonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/11-double-harmonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/12-flamenco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/12-flamenco.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/13-gypsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/13-gypsy.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/14-half-diminished.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/14-half-diminished.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/15-harmonic-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/15-harmonic-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/16-harmonic-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/16-harmonic-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/17-hirajoshi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/17-hirajoshi.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/18-hungarian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/18-hungarian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/18-hungarian-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/18-hungarian-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/19-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/19-in.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/20-insen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/20-insen.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/21-istrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/21-istrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/22-iwato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/22-iwato.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/23-locrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/23-locrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/26-lydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/26-lydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/27-bebop-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/27-bebop-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/28-locrian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/28-locrian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/33-octatonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/33-octatonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/34-persian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/34-persian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/36-phrygian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/36-phrygian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/37-prometheus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/37-prometheus.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/38-harmonics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/38-harmonics.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/39-tritone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/39-tritone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/40-tritone-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/40-tritone-two.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/41-slava-ukraini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/41-slava-ukraini.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/42-whole-tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/42-whole-tone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/43-yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/43-yo.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/scales/44-gamelan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/scales/44-gamelan.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/settings.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.0/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/settings.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.0/simplemcp3208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.0/simplemcp3208.py -------------------------------------------------------------------------------- /sycamore/firmware/1.1/.Trashes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.1/.fseventsd/no_log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.1/.metadata_never_index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/README.md -------------------------------------------------------------------------------- /sycamore/firmware/1.1/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/boot_out.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/code.py -------------------------------------------------------------------------------- /sycamore/firmware/1.1/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/debug.py -------------------------------------------------------------------------------- /sycamore/firmware/1.1/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/deque.py -------------------------------------------------------------------------------- /sycamore/firmware/1.1/ledcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/ledcontrol.py -------------------------------------------------------------------------------- /sycamore/firmware/1.1/lib/adafruit_debouncer.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/lib/adafruit_debouncer.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.1/lib/adafruit_pca9685.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/lib/adafruit_pca9685.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.1/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.1/lib/adafruit_simplemath.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/lib/adafruit_simplemath.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.1/lib/adafruit_ticks.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/lib/adafruit_ticks.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.1/ltc2632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/ltc2632.py -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/00-chromatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/00-chromatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/01-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/01-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/02-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/02-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/03-mixolydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/03-mixolydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/04-enigmatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/04-enigmatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/05-acoustic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/05-acoustic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/06-altered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/06-altered.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/07-augmented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/07-augmented.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/08-bebop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/08-bebop.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/09-blues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/09-blues.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/10-dorian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/10-dorian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/11-double-harmonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/11-double-harmonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/12-flamenco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/12-flamenco.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/13-gypsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/13-gypsy.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/14-half-diminished.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/14-half-diminished.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/15-harmonic-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/15-harmonic-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/16-harmonic-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/16-harmonic-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/17-hirajoshi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/17-hirajoshi.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/18-hungarian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/18-hungarian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/18-hungarian-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/18-hungarian-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/19-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/19-in.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/20-insen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/20-insen.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/21-istrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/21-istrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/22-iwato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/22-iwato.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/23-locrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/23-locrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/26-lydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/26-lydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/27-bebop-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/27-bebop-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/28-locrian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/28-locrian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/33-octatonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/33-octatonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/34-persian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/34-persian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/36-phrygian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/36-phrygian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/37-prometheus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/37-prometheus.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/38-harmonics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/38-harmonics.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/39-tritone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/39-tritone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/40-tritone-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/40-tritone-two.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/41-slava-ukraini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/41-slava-ukraini.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/42-whole-tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/42-whole-tone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/43-yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/43-yo.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/scales/44-gamelan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/scales/44-gamelan.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/settings.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.1/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/settings.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.1/simplemcp3208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.1/simplemcp3208.py -------------------------------------------------------------------------------- /sycamore/firmware/1.2/.Trashes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.2/.fseventsd/no_log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.2/.metadata_never_index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/README.md -------------------------------------------------------------------------------- /sycamore/firmware/1.2/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/boot_out.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/code.py -------------------------------------------------------------------------------- /sycamore/firmware/1.2/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/debug.py -------------------------------------------------------------------------------- /sycamore/firmware/1.2/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/deque.py -------------------------------------------------------------------------------- /sycamore/firmware/1.2/ledcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/ledcontrol.py -------------------------------------------------------------------------------- /sycamore/firmware/1.2/lib/adafruit_debouncer.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/lib/adafruit_debouncer.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.2/lib/adafruit_pca9685.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/lib/adafruit_pca9685.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.2/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.2/lib/adafruit_simplemath.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/lib/adafruit_simplemath.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.2/lib/adafruit_ticks.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/lib/adafruit_ticks.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.2/ltc2632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/ltc2632.py -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/00-chromatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/00-chromatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/01-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/01-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/02-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/02-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/03-mixolydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/03-mixolydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/04-enigmatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/04-enigmatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/05-acoustic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/05-acoustic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/06-altered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/06-altered.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/07-augmented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/07-augmented.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/08-bebop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/08-bebop.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/09-blues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/09-blues.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/10-dorian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/10-dorian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/11-double-harmonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/11-double-harmonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/12-flamenco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/12-flamenco.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/13-gypsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/13-gypsy.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/14-half-diminished.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/14-half-diminished.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/17-hirajoshi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/17-hirajoshi.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/19-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/19-in.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/20-insen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/20-insen.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/21-istrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/21-istrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/22-iwato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/22-iwato.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/23-locrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/23-locrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/26-lydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/26-lydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/27-bebop-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/27-bebop-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/28-locrian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/28-locrian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/33-octatonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/33-octatonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/34-persian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/34-persian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/36-phrygian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/36-phrygian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/37-prometheus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/37-prometheus.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/38-harmonics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/38-harmonics.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/39-tritone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/39-tritone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/40-tritone-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/40-tritone-two.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/41-slava-ukraini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/41-slava-ukraini.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/42-whole-tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/42-whole-tone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/43-yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/43-yo.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/scales/44-gamelan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/scales/44-gamelan.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/settings.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.2/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/settings.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.2/simplemcp3208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.2/simplemcp3208.py -------------------------------------------------------------------------------- /sycamore/firmware/1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/README.md -------------------------------------------------------------------------------- /sycamore/firmware/1.3/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/boot_out.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/code.py -------------------------------------------------------------------------------- /sycamore/firmware/1.3/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/debug.py -------------------------------------------------------------------------------- /sycamore/firmware/1.3/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/deque.py -------------------------------------------------------------------------------- /sycamore/firmware/1.3/ledcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/ledcontrol.py -------------------------------------------------------------------------------- /sycamore/firmware/1.3/lib/adafruit_debouncer.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/lib/adafruit_debouncer.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.3/lib/adafruit_pca9685.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/lib/adafruit_pca9685.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.3/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.3/lib/adafruit_simplemath.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/lib/adafruit_simplemath.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.3/lib/adafruit_ticks.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/lib/adafruit_ticks.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.3/ltc2632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/ltc2632.py -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/00-chromatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/00-chromatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/01-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/01-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/02-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/02-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/03-mixolydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/03-mixolydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/04-enigmatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/04-enigmatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/05-acoustic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/05-acoustic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/06-altered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/06-altered.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/07-augmented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/07-augmented.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/08-bebop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/08-bebop.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/09-blues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/09-blues.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/10-dorian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/10-dorian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/12-flamenco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/12-flamenco.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/13-gypsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/13-gypsy.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/17-hirajoshi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/17-hirajoshi.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/19-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/19-in.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/20-insen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/20-insen.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/21-istrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/21-istrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/22-iwato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/22-iwato.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/23-locrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/23-locrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/26-lydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/26-lydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/27-bebop-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/27-bebop-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/28-locrian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/28-locrian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/33-octatonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/33-octatonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/34-persian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/34-persian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/36-phrygian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/36-phrygian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/37-prometheus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/37-prometheus.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/38-harmonics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/38-harmonics.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/39-tritone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/39-tritone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/40-tritone-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/40-tritone-two.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/41-slava-ukraini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/41-slava-ukraini.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/42-whole-tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/42-whole-tone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/43-yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/43-yo.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/scales/44-gamelan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/scales/44-gamelan.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/settings.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.3/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/settings.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.3/simplemcp3208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.3/simplemcp3208.py -------------------------------------------------------------------------------- /sycamore/firmware/1.4/.Trashes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.4/.fseventsd/no_log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.4/.metadata_never_index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/README.md -------------------------------------------------------------------------------- /sycamore/firmware/1.4/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/boot_out.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/code.py -------------------------------------------------------------------------------- /sycamore/firmware/1.4/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/debug.py -------------------------------------------------------------------------------- /sycamore/firmware/1.4/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/deque.py -------------------------------------------------------------------------------- /sycamore/firmware/1.4/ledcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/ledcontrol.py -------------------------------------------------------------------------------- /sycamore/firmware/1.4/lib/adafruit_debouncer.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/lib/adafruit_debouncer.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.4/lib/adafruit_pca9685.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/lib/adafruit_pca9685.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.4/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.4/lib/adafruit_simplemath.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/lib/adafruit_simplemath.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.4/lib/adafruit_ticks.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/lib/adafruit_ticks.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.4/ltc2632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/ltc2632.py -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/00-chromatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/00-chromatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/01-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/01-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/02-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/02-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/03-mixolydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/03-mixolydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/04-enigmatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/04-enigmatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/05-acoustic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/05-acoustic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/06-altered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/06-altered.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/07-augmented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/07-augmented.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/08-bebop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/08-bebop.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/09-blues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/09-blues.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/10-dorian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/10-dorian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/12-flamenco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/12-flamenco.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/13-gypsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/13-gypsy.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/17-hirajoshi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/17-hirajoshi.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/19-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/19-in.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/20-insen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/20-insen.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/21-istrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/21-istrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/22-iwato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/22-iwato.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/23-locrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/23-locrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/26-lydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/26-lydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/27-bebop-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/27-bebop-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/28-locrian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/28-locrian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/33-octatonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/33-octatonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/34-persian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/34-persian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/36-phrygian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/36-phrygian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/37-prometheus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/37-prometheus.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/38-harmonics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/38-harmonics.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/39-tritone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/39-tritone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/40-tritone-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/40-tritone-two.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/41-slava-ukraini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/41-slava-ukraini.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/42-whole-tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/42-whole-tone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/43-yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/43-yo.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/scales/44-gamelan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/scales/44-gamelan.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/settings.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.4/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/settings.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.4/simplemcp3208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.4/simplemcp3208.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sycamore/firmware/1.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/README.md -------------------------------------------------------------------------------- /sycamore/firmware/1.5/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/boot_out.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/code.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/config.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/debug.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/deque.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/ledcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/ledcontrol.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/lib/adafruit_debouncer.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/lib/adafruit_debouncer.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.5/lib/adafruit_pca9685.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/lib/adafruit_pca9685.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.5/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.5/lib/adafruit_simplemath.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/lib/adafruit_simplemath.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.5/lib/adafruit_ticks.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/lib/adafruit_ticks.mpy -------------------------------------------------------------------------------- /sycamore/firmware/1.5/ltc2632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/ltc2632.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/oak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/oak.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/quantizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/quantizer.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/rowan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/rowan.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/00-chromatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/00-chromatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/01-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/01-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/02-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/02-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/03-mixolydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/03-mixolydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/04-enigmatic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/04-enigmatic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/05-acoustic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/05-acoustic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/06-altered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/06-altered.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/07-augmented.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/07-augmented.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/08-bebop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/08-bebop.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/09-blues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/09-blues.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/10-dorian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/10-dorian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/12-flamenco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/12-flamenco.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/13-gypsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/13-gypsy.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/17-hirajoshi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/17-hirajoshi.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/19-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/19-in.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/20-insen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/20-insen.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/21-istrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/21-istrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/22-iwato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/22-iwato.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/23-locrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/23-locrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/26-lydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/26-lydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/27-bebop-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/27-bebop-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/28-locrian-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/28-locrian-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/33-octatonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/33-octatonic.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/34-persian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/34-persian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/36-phrygian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/36-phrygian.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/37-prometheus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/37-prometheus.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/38-harmonics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/38-harmonics.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/39-tritone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/39-tritone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/40-tritone-two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/40-tritone-two.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/41-slava-ukraini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/41-slava-ukraini.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/42-whole-tone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/42-whole-tone.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/43-yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/43-yo.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales/44-gamelan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales/44-gamelan.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/scales2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/scales2.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/sequence.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/settings.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/1.5/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/settings.txt -------------------------------------------------------------------------------- /sycamore/firmware/1.5/simplemcp3208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/simplemcp3208.py -------------------------------------------------------------------------------- /sycamore/firmware/1.5/sycamore_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/1.5/sycamore_gc.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore-1.0.zip -------------------------------------------------------------------------------- /sycamore/firmware/sycamore-1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore-1.1.zip -------------------------------------------------------------------------------- /sycamore/firmware/sycamore-1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore-1.2.zip -------------------------------------------------------------------------------- /sycamore/firmware/sycamore-1.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore-1.3.zip -------------------------------------------------------------------------------- /sycamore/firmware/sycamore-1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore-1.4.zip -------------------------------------------------------------------------------- /sycamore/firmware/sycamore-1.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore-1.5.zip -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/README.md -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/boot_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/boot_out.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/code.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/config.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/debug.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/deque.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/ledcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/ledcontrol.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/lib/adafruit_register/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/lib/adafruit_ticks.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/lib/adafruit_ticks.mpy -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/ltc2632.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/ltc2632.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/oak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/oak.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/quantizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/quantizer.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/rowan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/rowan.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/01-major.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/01-major.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/02-minor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/02-minor.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/05-acoustic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/05-acoustic.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/06-altered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/06-altered.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/08-bebop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/08-bebop.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/09-blues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/09-blues.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/10-dorian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/10-dorian.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/12-flamenco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/12-flamenco.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/13-gypsy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/13-gypsy.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/19-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/19-in.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/20-insen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/20-insen.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/21-istrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/21-istrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/22-iwato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/22-iwato.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/23-locrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/23-locrian.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/26-lydian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/26-lydian.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/34-persian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/34-persian.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/36-phrygian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/36-phrygian.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/39-tritone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/39-tritone.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/43-yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/43-yo.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales/44-gamelan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales/44-gamelan.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/scales2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/scales2.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/sequence.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/settings.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/settings.txt -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/simplemcp3208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/simplemcp3208.py -------------------------------------------------------------------------------- /sycamore/firmware/sycamore/sycamore_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/firmware/sycamore/sycamore_gc.py -------------------------------------------------------------------------------- /sycamore/images/1-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/1-parts.jpg -------------------------------------------------------------------------------- /sycamore/images/1.2-production-cut-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/1.2-production-cut-trace.png -------------------------------------------------------------------------------- /sycamore/images/10-7seg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/10-7seg.jpg -------------------------------------------------------------------------------- /sycamore/images/11-stuffed-pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/11-stuffed-pcb.jpg -------------------------------------------------------------------------------- /sycamore/images/12-washer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/12-washer.jpg -------------------------------------------------------------------------------- /sycamore/images/13-press-fit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/13-press-fit.jpg -------------------------------------------------------------------------------- /sycamore/images/14-press-fit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/14-press-fit.jpg -------------------------------------------------------------------------------- /sycamore/images/15-front-panel-no-led.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/15-front-panel-no-led.jpg -------------------------------------------------------------------------------- /sycamore/images/15-front-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/15-front-panel.jpg -------------------------------------------------------------------------------- /sycamore/images/15a-7-seg-rear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/15a-7-seg-rear.jpg -------------------------------------------------------------------------------- /sycamore/images/15b-7-seg-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/15b-7-seg-top.jpg -------------------------------------------------------------------------------- /sycamore/images/16-front-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/16-front-panel.jpg -------------------------------------------------------------------------------- /sycamore/images/17-done.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/17-done.jpg -------------------------------------------------------------------------------- /sycamore/images/2-pico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/2-pico.jpg -------------------------------------------------------------------------------- /sycamore/images/3-pico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/3-pico.jpg -------------------------------------------------------------------------------- /sycamore/images/4-led.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/4-led.jpg -------------------------------------------------------------------------------- /sycamore/images/5-led.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/5-led.jpg -------------------------------------------------------------------------------- /sycamore/images/5a-light-pipe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/5a-light-pipe.jpg -------------------------------------------------------------------------------- /sycamore/images/6-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/6-power.jpg -------------------------------------------------------------------------------- /sycamore/images/7-pico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/7-pico.jpg -------------------------------------------------------------------------------- /sycamore/images/8-even-more-pico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/8-even-more-pico.jpg -------------------------------------------------------------------------------- /sycamore/images/9-more-pico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/9-more-pico.jpg -------------------------------------------------------------------------------- /sycamore/images/firmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/firmware.png -------------------------------------------------------------------------------- /sycamore/images/panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/images/panel.jpg -------------------------------------------------------------------------------- /sycamore/sycamore.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/sycamore.kicad_pcb -------------------------------------------------------------------------------- /sycamore/sycamore.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/sycamore.kicad_pro -------------------------------------------------------------------------------- /sycamore/sycamore.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/sycamore.kicad_sch -------------------------------------------------------------------------------- /sycamore/sycamore.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/sycamore.pro -------------------------------------------------------------------------------- /sycamore/sycamore_front_panel.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/sycamore_front_panel.kicad_sch -------------------------------------------------------------------------------- /sycamore/sycamore_io.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/sycamore/sycamore_io.kicad_sch -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/template/README.md -------------------------------------------------------------------------------- /through/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/README.md -------------------------------------------------------------------------------- /through/images/through.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/images/through.png -------------------------------------------------------------------------------- /through/through-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/through-cache.lib -------------------------------------------------------------------------------- /through/through-logic.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/through-logic.kicad_pcb -------------------------------------------------------------------------------- /through/through-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/through-panel.kicad_pcb -------------------------------------------------------------------------------- /through/through.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/through.kicad_pcb -------------------------------------------------------------------------------- /through/through.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/through.pro -------------------------------------------------------------------------------- /through/through.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/through/through.sch -------------------------------------------------------------------------------- /turing-machine-panels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/README.md -------------------------------------------------------------------------------- /turing-machine-panels/clock.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/clock.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/edit.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/edit.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/fp-lib-table -------------------------------------------------------------------------------- /turing-machine-panels/function.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/function.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/icons/clock.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/clock.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/edit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/edit.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/function.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/function.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/lock.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/lock.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/noise.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/noise.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/note.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/note.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/pulse.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/pulse.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/scale.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/scale.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/steps.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/steps.PNG -------------------------------------------------------------------------------- /turing-machine-panels/icons/unlock.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/icons/unlock.PNG -------------------------------------------------------------------------------- /turing-machine-panels/images/panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/images/panels.png -------------------------------------------------------------------------------- /turing-machine-panels/locked.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/locked.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/noise.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/noise.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/note.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/note.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/pulse.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/pulse.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/pulses.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/pulses.kicad_pcb -------------------------------------------------------------------------------- /turing-machine-panels/scale.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/scale.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/steps.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/steps.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/time.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/time.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/turing-machine-panels.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/turing-machine-panels.pro -------------------------------------------------------------------------------- /turing-machine-panels/turing-machine-panels.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/turing-machine-panels.sch -------------------------------------------------------------------------------- /turing-machine-panels/turing-machine.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/turing-machine.kicad_pcb -------------------------------------------------------------------------------- /turing-machine-panels/unlocked.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/unlocked.kicad_mod -------------------------------------------------------------------------------- /turing-machine-panels/volts.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/turing-machine-panels/volts.kicad_pcb -------------------------------------------------------------------------------- /twoshot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/.gitignore -------------------------------------------------------------------------------- /twoshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/README.md -------------------------------------------------------------------------------- /twoshot/images/panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/images/panel.jpg -------------------------------------------------------------------------------- /twoshot/twoshot.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/twoshot.kicad_pcb -------------------------------------------------------------------------------- /twoshot/twoshot.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/twoshot.kicad_pro -------------------------------------------------------------------------------- /twoshot/twoshot.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/twoshot.kicad_sch -------------------------------------------------------------------------------- /twoshot/twoshot.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/twoshot.pro -------------------------------------------------------------------------------- /twoshot/twoshot.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/twoshot/twoshot.sch -------------------------------------------------------------------------------- /vcadsr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/.gitignore -------------------------------------------------------------------------------- /vcadsr/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/ASSEMBLY.md -------------------------------------------------------------------------------- /vcadsr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/README.md -------------------------------------------------------------------------------- /vcadsr/VCADSR.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/VCADSR.lib -------------------------------------------------------------------------------- /vcadsr/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/ibom.html -------------------------------------------------------------------------------- /vcadsr/images/1-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/1-parts.jpg -------------------------------------------------------------------------------- /vcadsr/images/10-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/10-panel.jpg -------------------------------------------------------------------------------- /vcadsr/images/11-spacer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/11-spacer.jpg -------------------------------------------------------------------------------- /vcadsr/images/12-rear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/12-rear.jpg -------------------------------------------------------------------------------- /vcadsr/images/13-ic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/13-ic.jpg -------------------------------------------------------------------------------- /vcadsr/images/2-diodes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/2-diodes.jpg -------------------------------------------------------------------------------- /vcadsr/images/3-ic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/3-ic.jpg -------------------------------------------------------------------------------- /vcadsr/images/4-ic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/4-ic.jpg -------------------------------------------------------------------------------- /vcadsr/images/5-regulator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/5-regulator.jpg -------------------------------------------------------------------------------- /vcadsr/images/6-caps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/6-caps.jpg -------------------------------------------------------------------------------- /vcadsr/images/7-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/7-power.jpg -------------------------------------------------------------------------------- /vcadsr/images/8-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/8-power.jpg -------------------------------------------------------------------------------- /vcadsr/images/9-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/9-front.jpg -------------------------------------------------------------------------------- /vcadsr/images/trace-cut-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/trace-cut-1.PNG -------------------------------------------------------------------------------- /vcadsr/images/trace-cut-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/trace-cut-2.PNG -------------------------------------------------------------------------------- /vcadsr/images/vcadsr.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/images/vcadsr.PNG -------------------------------------------------------------------------------- /vcadsr/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/sym-lib-table -------------------------------------------------------------------------------- /vcadsr/vcadsr-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/vcadsr-board.kicad_pcb -------------------------------------------------------------------------------- /vcadsr/vcadsr-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/vcadsr-panel.kicad_pcb -------------------------------------------------------------------------------- /vcadsr/vcadsr.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/vcadsr.kicad_pcb -------------------------------------------------------------------------------- /vcadsr/vcadsr.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/vcadsr.kicad_pro -------------------------------------------------------------------------------- /vcadsr/vcadsr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/vcadsr.pro -------------------------------------------------------------------------------- /vcadsr/vcadsr.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/vcadsr/vcadsr.sch -------------------------------------------------------------------------------- /yarmplus/ASSEMBLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/ASSEMBLY.md -------------------------------------------------------------------------------- /yarmplus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/README.md -------------------------------------------------------------------------------- /yarmplus/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/ibom.html -------------------------------------------------------------------------------- /yarmplus/images/1-parts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/1-parts.jpg -------------------------------------------------------------------------------- /yarmplus/images/10-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/10-power.jpg -------------------------------------------------------------------------------- /yarmplus/images/11-trimmers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/11-trimmers.jpg -------------------------------------------------------------------------------- /yarmplus/images/12-sockets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/12-sockets.jpg -------------------------------------------------------------------------------- /yarmplus/images/13-ics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/13-ics.jpg -------------------------------------------------------------------------------- /yarmplus/images/2-diodes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/2-diodes.jpg -------------------------------------------------------------------------------- /yarmplus/images/3-resistors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/3-resistors.jpg -------------------------------------------------------------------------------- /yarmplus/images/4-resistors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/4-resistors.jpg -------------------------------------------------------------------------------- /yarmplus/images/5-caps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/5-caps.jpg -------------------------------------------------------------------------------- /yarmplus/images/6-ic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/6-ic.jpg -------------------------------------------------------------------------------- /yarmplus/images/7-ic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/7-ic.jpg -------------------------------------------------------------------------------- /yarmplus/images/8-ic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/8-ic.jpg -------------------------------------------------------------------------------- /yarmplus/images/9-power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/9-power.jpg -------------------------------------------------------------------------------- /yarmplus/images/yarmplus-logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/yarmplus-logic.png -------------------------------------------------------------------------------- /yarmplus/images/yarmplus-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/images/yarmplus-panel.png -------------------------------------------------------------------------------- /yarmplus/yarmplus-logic.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/yarmplus-logic.kicad_pcb -------------------------------------------------------------------------------- /yarmplus/yarmplus-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/yarmplus-panel.kicad_pcb -------------------------------------------------------------------------------- /yarmplus/yarmplus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/yarmplus.lib -------------------------------------------------------------------------------- /yarmplus/yarmplus.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/yarmplus.pro -------------------------------------------------------------------------------- /yarmplus/yarmplus.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yarmplus/yarmplus.sch -------------------------------------------------------------------------------- /yash/.gitignore: -------------------------------------------------------------------------------- 1 | yash-*.pro -------------------------------------------------------------------------------- /yash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/README.md -------------------------------------------------------------------------------- /yash/images/yash-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/images/yash-board.png -------------------------------------------------------------------------------- /yash/images/yash-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/images/yash-panel.png -------------------------------------------------------------------------------- /yash/yash-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/yash-board.kicad_pcb -------------------------------------------------------------------------------- /yash/yash-panel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/yash-panel.kicad_pcb -------------------------------------------------------------------------------- /yash/yash.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/yash.kicad_pcb -------------------------------------------------------------------------------- /yash/yash.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/yash.pro -------------------------------------------------------------------------------- /yash/yash.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarlson/synth-diy/HEAD/yash/yash.sch --------------------------------------------------------------------------------