├── .gitignore ├── Alchemist ├── Alchemist Getting Started.pdf ├── Alchemist_Getting_Started.md └── README.md ├── CNAME ├── CPlusPlus └── README.md ├── Faust ├── 00Bypass.dsp ├── 01Message.dsp ├── 02Input.dsp ├── 03Harmonics.dsp ├── 04Output.dsp ├── 05MIDI.dsp ├── 06VoctIn.dsp ├── 07VoctOut.dsp ├── README.md ├── Tutorial │ ├── 01_GettingStarted │ │ ├── FilteredStereoNoise.dsp │ │ └── README.md │ └── 02_DualVCA │ │ ├── DualVCA.dsp │ │ └── README.md └── upload.py ├── LICENSE ├── Lich └── README.md ├── Magus ├── Magus Desktop Getting Started.pdf ├── Magus Eurorack Getting Started.pdf ├── Magus_Desktop_Getting_Started.md ├── Magus_Eurorack_Getting_Started.md └── README.md ├── MaxGen └── README.md ├── OWL_Digital └── Legacy │ ├── OWLDigitalBoardRev05.jpg │ ├── OWL_DFU_BOOT.png │ ├── Owl-digital-pinout.pdf │ ├── Owl-digital-rev04-bom.pdf │ ├── Owl-digital-rev04-schematic.pdf │ ├── Owl-digital-rev04-schematic.png │ ├── Owl-pin-mappings.pdf │ └── index.html ├── OWL_Modular ├── Legacy │ ├── OWL-modular-rev02-bom.pdf │ ├── OWL-modular-rev02-schematic.pdf │ └── index.html ├── OWL Modular Getting Started v12.pdf ├── OWL_Modular_Getting_Started.md └── README.md ├── OWL_Pedal ├── Legacy │ ├── Owl-analog-rev04-bom.pdf │ ├── Owl-analog-rev04-schematic.pdf │ ├── Owl-analog-rev04-schematic.png │ ├── OwlRev04InsideDFU.jpg │ ├── OwlRev05Inside.jpg │ ├── OwlRev05InsideDFU.jpg │ ├── Stomp-rev04-schematic.pdf │ ├── Stomp-rev04-schematic.png │ └── index.html ├── OWL Pedal Getting Started v12.pdf ├── OWL_Pedal_Getting_Started.md └── README.md ├── PureData ├── README.md └── SupportedObjects.md ├── README.md ├── Tools ├── OpenWareMidiControl.js ├── README.md ├── calibration.html ├── calibration.js ├── firmware.html ├── firmware.js ├── jquery.min.js ├── midiclient.js └── owlcmd.js ├── Wizard ├── README.md ├── Wizard Getting Started.pdf └── Wizard_Getting_Started.md └── _config.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/.gitignore -------------------------------------------------------------------------------- /Alchemist/Alchemist Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Alchemist/Alchemist Getting Started.pdf -------------------------------------------------------------------------------- /Alchemist/Alchemist_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Alchemist/Alchemist_Getting_Started.md -------------------------------------------------------------------------------- /Alchemist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Alchemist/README.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.openwarelab.org -------------------------------------------------------------------------------- /CPlusPlus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/CPlusPlus/README.md -------------------------------------------------------------------------------- /Faust/00Bypass.dsp: -------------------------------------------------------------------------------- 1 | process = _; 2 | -------------------------------------------------------------------------------- /Faust/01Message.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/01Message.dsp -------------------------------------------------------------------------------- /Faust/02Input.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/02Input.dsp -------------------------------------------------------------------------------- /Faust/03Harmonics.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/03Harmonics.dsp -------------------------------------------------------------------------------- /Faust/04Output.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/04Output.dsp -------------------------------------------------------------------------------- /Faust/05MIDI.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/05MIDI.dsp -------------------------------------------------------------------------------- /Faust/06VoctIn.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/06VoctIn.dsp -------------------------------------------------------------------------------- /Faust/07VoctOut.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/07VoctOut.dsp -------------------------------------------------------------------------------- /Faust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/README.md -------------------------------------------------------------------------------- /Faust/Tutorial/01_GettingStarted/FilteredStereoNoise.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/Tutorial/01_GettingStarted/FilteredStereoNoise.dsp -------------------------------------------------------------------------------- /Faust/Tutorial/01_GettingStarted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/Tutorial/01_GettingStarted/README.md -------------------------------------------------------------------------------- /Faust/Tutorial/02_DualVCA/DualVCA.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/Tutorial/02_DualVCA/DualVCA.dsp -------------------------------------------------------------------------------- /Faust/Tutorial/02_DualVCA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/Tutorial/02_DualVCA/README.md -------------------------------------------------------------------------------- /Faust/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Faust/upload.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/LICENSE -------------------------------------------------------------------------------- /Lich/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Lich/README.md -------------------------------------------------------------------------------- /Magus/Magus Desktop Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Magus/Magus Desktop Getting Started.pdf -------------------------------------------------------------------------------- /Magus/Magus Eurorack Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Magus/Magus Eurorack Getting Started.pdf -------------------------------------------------------------------------------- /Magus/Magus_Desktop_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Magus/Magus_Desktop_Getting_Started.md -------------------------------------------------------------------------------- /Magus/Magus_Eurorack_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Magus/Magus_Eurorack_Getting_Started.md -------------------------------------------------------------------------------- /Magus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Magus/README.md -------------------------------------------------------------------------------- /MaxGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/MaxGen/README.md -------------------------------------------------------------------------------- /OWL_Digital/Legacy/OWLDigitalBoardRev05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/OWLDigitalBoardRev05.jpg -------------------------------------------------------------------------------- /OWL_Digital/Legacy/OWL_DFU_BOOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/OWL_DFU_BOOT.png -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-pinout.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-rev04-bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-rev04-bom.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-rev04-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-rev04-schematic.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-digital-rev04-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-digital-rev04-schematic.png -------------------------------------------------------------------------------- /OWL_Digital/Legacy/Owl-pin-mappings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/Owl-pin-mappings.pdf -------------------------------------------------------------------------------- /OWL_Digital/Legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Digital/Legacy/index.html -------------------------------------------------------------------------------- /OWL_Modular/Legacy/OWL-modular-rev02-bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Modular/Legacy/OWL-modular-rev02-bom.pdf -------------------------------------------------------------------------------- /OWL_Modular/Legacy/OWL-modular-rev02-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Modular/Legacy/OWL-modular-rev02-schematic.pdf -------------------------------------------------------------------------------- /OWL_Modular/Legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Modular/Legacy/index.html -------------------------------------------------------------------------------- /OWL_Modular/OWL Modular Getting Started v12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Modular/OWL Modular Getting Started v12.pdf -------------------------------------------------------------------------------- /OWL_Modular/OWL_Modular_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Modular/OWL_Modular_Getting_Started.md -------------------------------------------------------------------------------- /OWL_Modular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Modular/README.md -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Owl-analog-rev04-bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/Owl-analog-rev04-bom.pdf -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Owl-analog-rev04-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/Owl-analog-rev04-schematic.pdf -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Owl-analog-rev04-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/Owl-analog-rev04-schematic.png -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/OwlRev04InsideDFU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/OwlRev04InsideDFU.jpg -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/OwlRev05Inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/OwlRev05Inside.jpg -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/OwlRev05InsideDFU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/OwlRev05InsideDFU.jpg -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Stomp-rev04-schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/Stomp-rev04-schematic.pdf -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/Stomp-rev04-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/Stomp-rev04-schematic.png -------------------------------------------------------------------------------- /OWL_Pedal/Legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/Legacy/index.html -------------------------------------------------------------------------------- /OWL_Pedal/OWL Pedal Getting Started v12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/OWL Pedal Getting Started v12.pdf -------------------------------------------------------------------------------- /OWL_Pedal/OWL_Pedal_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/OWL_Pedal_Getting_Started.md -------------------------------------------------------------------------------- /OWL_Pedal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/OWL_Pedal/README.md -------------------------------------------------------------------------------- /PureData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/PureData/README.md -------------------------------------------------------------------------------- /PureData/SupportedObjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/PureData/SupportedObjects.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/README.md -------------------------------------------------------------------------------- /Tools/OpenWareMidiControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/OpenWareMidiControl.js -------------------------------------------------------------------------------- /Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/README.md -------------------------------------------------------------------------------- /Tools/calibration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/calibration.html -------------------------------------------------------------------------------- /Tools/calibration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/calibration.js -------------------------------------------------------------------------------- /Tools/firmware.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/firmware.html -------------------------------------------------------------------------------- /Tools/firmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/firmware.js -------------------------------------------------------------------------------- /Tools/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/jquery.min.js -------------------------------------------------------------------------------- /Tools/midiclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/midiclient.js -------------------------------------------------------------------------------- /Tools/owlcmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Tools/owlcmd.js -------------------------------------------------------------------------------- /Wizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Wizard/README.md -------------------------------------------------------------------------------- /Wizard/Wizard Getting Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Wizard/Wizard Getting Started.pdf -------------------------------------------------------------------------------- /Wizard/Wizard_Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/Wizard/Wizard_Getting_Started.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antisvin/OpenWareLab/HEAD/_config.yml --------------------------------------------------------------------------------