├── .gitignore ├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md ├── parasites ├── .gitignore ├── .gitmodules ├── README.md ├── __init__.py ├── braids │ ├── __init__.py │ ├── analog_oscillator.cc │ ├── analog_oscillator.h │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ ├── characters.cc │ │ ├── characters.h │ │ └── makefile │ ├── braids.cc │ ├── data │ │ ├── map.bin │ │ └── waves.bin │ ├── digital_oscillator.cc │ ├── digital_oscillator.h │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── dac.cc │ │ ├── dac.h │ │ ├── debug_pin.cc │ │ ├── debug_pin.h │ │ ├── display.cc │ │ ├── display.h │ │ ├── encoder.cc │ │ ├── encoder.h │ │ ├── gate_input.cc │ │ ├── gate_input.h │ │ ├── internal_adc.cc │ │ ├── internal_adc.h │ │ ├── system.cc │ │ ├── system.h │ │ ├── uart_logger.cc │ │ └── uart_logger.h │ ├── envelope.h │ ├── excitation.h │ ├── hardware_design │ │ ├── Braids.xlsx │ │ ├── panel │ │ │ ├── braids.ai │ │ │ └── braids.dwg │ │ └── pcb │ │ │ ├── braids_v50.brd │ │ │ └── braids_v50.sch │ ├── macro_oscillator.cc │ ├── macro_oscillator.h │ ├── makefile │ ├── parameter_interpolation.h │ ├── quantizer.cc │ ├── quantizer.h │ ├── quantizer_scales.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── characters.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ ├── waveforms.py │ │ └── waveshapers.py │ ├── settings.cc │ ├── settings.h │ ├── signature_waveshaper.h │ ├── svf.h │ ├── test │ │ ├── braids_test.cc │ │ └── makefile │ ├── ui.cc │ ├── ui.h │ └── vco_jitter_source.h ├── branches │ ├── bootloader │ │ ├── bootloader.cc │ │ └── makefile │ ├── branches.cc │ ├── hardware_design │ │ ├── Branches.xlsx │ │ ├── panel │ │ │ ├── branches.ai │ │ │ └── branches.dwg │ │ └── pcb │ │ │ ├── branches_v40.brd │ │ │ └── branches_v40.sch │ └── makefile ├── clouds │ ├── __init__.py │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ └── makefile │ ├── clouds.cc │ ├── cv_scaler.cc │ ├── cv_scaler.h │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── codec.cc │ │ ├── codec.h │ │ ├── debug_pin.h │ │ ├── debug_port.cc │ │ ├── debug_port.h │ │ ├── gate_input.cc │ │ ├── gate_input.h │ │ ├── leds.cc │ │ ├── leds.h │ │ ├── switches.cc │ │ ├── switches.h │ │ ├── system.cc │ │ ├── system.h │ │ └── version.h │ ├── dsp │ │ ├── audio_buffer.h │ │ ├── correlator.cc │ │ ├── correlator.h │ │ ├── frame.h │ │ ├── fx │ │ │ ├── diffuser.h │ │ │ ├── fx_engine.h │ │ │ ├── oliverb.h │ │ │ ├── pitch_shifter.h │ │ │ └── reverb.h │ │ ├── grain.h │ │ ├── granular_processor.cc │ │ ├── granular_processor.h │ │ ├── granular_sample_player.h │ │ ├── looping_sample_player.h │ │ ├── mu_law.cc │ │ ├── mu_law.h │ │ ├── parameters.h │ │ ├── pvoc │ │ │ ├── frame_transformation.cc │ │ │ ├── frame_transformation.h │ │ │ ├── phase_vocoder.cc │ │ │ ├── phase_vocoder.h │ │ │ ├── stft.cc │ │ │ └── stft.h │ │ ├── random_oscillator.h │ │ ├── resonestor.h │ │ ├── sample_rate_converter.h │ │ ├── window.h │ │ └── wsola_sample_player.h │ ├── hardware_design │ │ ├── Clouds.xlsx │ │ ├── panel │ │ │ ├── clouds.ai │ │ │ └── clouds.dwg │ │ └── pcb │ │ │ ├── clouds_v30.brd │ │ │ └── clouds_v30.sch │ ├── makefile │ ├── meter.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ └── src_filters.py │ ├── settings.cc │ ├── settings.h │ ├── test │ │ ├── clouds_test.cc │ │ └── makefile │ ├── ui.cc │ └── ui.h ├── edges │ ├── __init__.py │ ├── adc_acquisition.cc │ ├── adc_acquisition.h │ ├── audio_buffer.cc │ ├── audio_buffer.h │ ├── bootloader │ │ ├── bootloader.cc │ │ └── makefile │ ├── digital_oscillator.cc │ ├── digital_oscillator.h │ ├── edges.cc │ ├── hardware_config.h │ ├── hardware_design │ │ ├── Edges.xlsx │ │ ├── panel │ │ │ ├── edges.ai │ │ │ └── edges.dwg │ │ └── pcb │ │ │ ├── edges_expander_v01.brd │ │ │ ├── edges_expander_v01.sch │ │ │ ├── edges_v20.brd │ │ │ └── edges_v20.sch │ ├── makefile │ ├── midi.h │ ├── midi_handler.cc │ ├── midi_handler.h │ ├── note_stack.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ └── waveforms.py │ ├── settings.cc │ ├── settings.h │ ├── storage.h │ ├── timer_oscillator.cc │ ├── timer_oscillator.h │ ├── ui.cc │ ├── ui.h │ ├── voice_allocator.cc │ └── voice_allocator.h ├── elements │ ├── __init__.py │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ └── makefile │ ├── cv_scaler.cc │ ├── cv_scaler.h │ ├── drivers │ │ ├── codec.cc │ │ ├── codec.h │ │ ├── cv_adc.cc │ │ ├── cv_adc.h │ │ ├── debug_pin.h │ │ ├── debug_port.cc │ │ ├── debug_port.h │ │ ├── gate_input.cc │ │ ├── gate_input.h │ │ ├── leds.cc │ │ ├── leds.h │ │ ├── pots_adc.cc │ │ ├── pots_adc.h │ │ ├── switch.cc │ │ ├── switch.h │ │ ├── system.cc │ │ └── system.h │ ├── dsp │ │ ├── dsp.h │ │ ├── exciter.cc │ │ ├── exciter.h │ │ ├── fx │ │ │ ├── diffuser.h │ │ │ ├── fx_engine.h │ │ │ └── reverb.h │ │ ├── multistage_envelope.cc │ │ ├── multistage_envelope.h │ │ ├── ominous_voice.cc │ │ ├── ominous_voice.h │ │ ├── part.cc │ │ ├── part.h │ │ ├── patch.h │ │ ├── resonator.cc │ │ ├── resonator.h │ │ ├── tube.cc │ │ ├── tube.h │ │ ├── voice.cc │ │ └── voice.h │ ├── elements.cc │ ├── hardware_design │ │ ├── Elements.xlsx │ │ ├── panel │ │ │ ├── elements.ai │ │ │ └── elements.dwg │ │ └── pcb │ │ │ ├── elements_v02.brd │ │ │ └── elements_v02.sch │ ├── makefile │ ├── meter.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── audio_io.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ └── samples.py │ ├── samples │ │ ├── hit_01.wav │ │ ├── hit_02.wav │ │ ├── hit_03.wav │ │ ├── hit_04.wav │ │ ├── hit_05.wav │ │ ├── hit_06.wav │ │ ├── hit_07.wav │ │ ├── hit_08.wav │ │ ├── hit_09.wav │ │ └── noise.wav │ ├── test │ │ ├── elements_test.cc │ │ └── makefile │ ├── ui.cc │ └── ui.h ├── frames │ ├── __init__.py │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ └── makefile │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── channel_leds.cc │ │ ├── channel_leds.h │ │ ├── dac.cc │ │ ├── dac.h │ │ ├── factory_testing_switch.h │ │ ├── keyframe_led.cc │ │ ├── keyframe_led.h │ │ ├── rgb_led.cc │ │ ├── rgb_led.h │ │ ├── switches.cc │ │ ├── switches.h │ │ ├── system.cc │ │ ├── system.h │ │ ├── trigger_output.cc │ │ ├── trigger_output.h │ │ ├── uart_logger.cc │ │ └── uart_logger.h │ ├── euclidean.cc │ ├── euclidean.h │ ├── frames.cc │ ├── hardware_design │ │ ├── Frames.xlsx │ │ ├── panel │ │ │ ├── frames.ai │ │ │ └── frames.dwg │ │ └── pcb │ │ │ ├── frames_v03.brd │ │ │ └── frames_v03.sch │ ├── keyframer.cc │ ├── keyframer.h │ ├── makefile │ ├── poly_lfo.cc │ ├── poly_lfo.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ └── waveforms.py │ ├── ui.cc │ └── ui.h ├── grids │ ├── __init__.py │ ├── bootloader │ │ ├── bootloader.cc │ │ └── makefile │ ├── clock.cc │ ├── clock.h │ ├── grids.cc │ ├── hardware_config.h │ ├── hardware_design │ │ ├── Grids.xlsx │ │ ├── panel │ │ │ ├── grids.ai │ │ │ └── grids.dwg │ │ └── pcb │ │ │ ├── grids_v02.brd │ │ │ └── grids_v02.sch │ ├── makefile │ ├── pattern_generator.cc │ ├── pattern_generator.h │ ├── resources.cc │ ├── resources.h │ └── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ └── resources.py ├── links │ └── hardware_design │ │ ├── Links.xlsx │ │ ├── panel │ │ ├── links.ai │ │ └── links.dwg │ │ └── pcb │ │ ├── links_v40.brd │ │ └── links_v40.sch ├── peaks │ ├── __init__.py │ ├── bootloader │ │ ├── bootloader.cc │ │ └── makefile │ ├── data │ │ └── digits.bin │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── dac.cc │ │ ├── dac.h │ │ ├── gate_input.cc │ │ ├── gate_input.h │ │ ├── leds.cc │ │ ├── leds.h │ │ ├── switches.cc │ │ ├── switches.h │ │ ├── system.cc │ │ └── system.h │ ├── drums │ │ ├── bass_drum.cc │ │ ├── bass_drum.h │ │ ├── excitation.h │ │ ├── fm_drum.cc │ │ ├── fm_drum.h │ │ ├── high_hat.cc │ │ ├── high_hat.h │ │ ├── snare_drum.cc │ │ ├── snare_drum.h │ │ ├── svf.cc │ │ └── svf.h │ ├── gate_processor.h │ ├── hardware_design │ │ ├── Peaks.xlsx │ │ ├── panel │ │ │ ├── peaks.ai │ │ │ └── peaks.dwg │ │ └── pcb │ │ │ ├── peaks_v30.brd │ │ │ └── peaks_v30.sch │ ├── makefile │ ├── modulations │ │ ├── bouncing_ball.h │ │ ├── lfo.cc │ │ ├── lfo.h │ │ ├── mini_sequencer.h │ │ ├── multistage_envelope.cc │ │ └── multistage_envelope.h │ ├── number_station │ │ ├── number_station.cc │ │ └── number_station.h │ ├── peaks.cc │ ├── processors.cc │ ├── processors.h │ ├── pulse_processor │ │ ├── pulse_randomizer.cc │ │ ├── pulse_randomizer.h │ │ ├── pulse_shaper.cc │ │ └── pulse_shaper.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ └── waveforms.py │ ├── test │ │ ├── makefile │ │ └── peaks_test.cc │ ├── ui.cc │ └── ui.h ├── presentation.org ├── rings │ ├── __init__.py │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ └── makefile │ ├── cv_scaler.cc │ ├── cv_scaler.h │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── codec.cc │ │ ├── codec.h │ │ ├── debug_pin.h │ │ ├── debug_port.cc │ │ ├── debug_port.h │ │ ├── leds.cc │ │ ├── leds.h │ │ ├── normalization_probe.h │ │ ├── switches.cc │ │ ├── switches.h │ │ ├── system.cc │ │ ├── system.h │ │ ├── trigger_input.cc │ │ ├── trigger_input.h │ │ └── version.h │ ├── dsp │ │ ├── dsp.h │ │ ├── fm_voice.cc │ │ ├── fm_voice.h │ │ ├── follower.h │ │ ├── fx │ │ │ ├── chorus.h │ │ │ ├── ensemble.h │ │ │ ├── fx_engine.h │ │ │ └── reverb.h │ │ ├── limiter.h │ │ ├── note_filter.h │ │ ├── onset_detector.h │ │ ├── part.cc │ │ ├── part.h │ │ ├── patch.h │ │ ├── performance_state.h │ │ ├── plucker.h │ │ ├── resonator.cc │ │ ├── resonator.h │ │ ├── string.cc │ │ ├── string.h │ │ ├── string_synth_envelope.h │ │ ├── string_synth_oscillator.h │ │ ├── string_synth_part.cc │ │ ├── string_synth_part.h │ │ ├── string_synth_voice.h │ │ └── strummer.h │ ├── hardware_design │ │ ├── Rings.xlsx │ │ ├── panel │ │ │ ├── rings.ai │ │ │ └── rings.dwg │ │ └── pcb │ │ │ ├── rings_v30.brd │ │ │ └── rings_v30.sch │ ├── makefile │ ├── meter.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ └── resources.py │ ├── rings.cc │ ├── settings.cc │ ├── settings.h │ ├── test │ │ ├── makefile │ │ └── rings_test.cc │ ├── ui.cc │ └── ui.h ├── ripples │ └── hardware_design │ │ ├── Ripples.xlsx │ │ ├── panel │ │ ├── ripples.ai │ │ └── ripples.dwg │ │ └── pcb │ │ ├── ripples_v40.brd │ │ └── ripples_v40.sch ├── shades │ └── hardware_design │ │ ├── Shades.xlsx │ │ ├── panel │ │ ├── shades.ai │ │ └── shades.dwg │ │ └── pcb │ │ ├── shades_v30.brd │ │ └── shades_v30.sch ├── shelves │ └── hardware_design │ │ ├── Shelves.xlsx │ │ ├── ShelvesExpander.xlsx │ │ ├── panel │ │ ├── shelves.ai │ │ ├── shelves.dwg │ │ ├── shelves_expander.ai │ │ └── shelves_expander.dwg │ │ └── pcb │ │ ├── shelves_expander_v10.brd │ │ ├── shelves_expander_v10.sch │ │ ├── shelves_v05.brd │ │ └── shelves_v05.sch ├── streams │ ├── __init__.py │ ├── audio_cv_meter.h │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ └── makefile │ ├── compressor.cc │ ├── compressor.h │ ├── cv_scaler.cc │ ├── cv_scaler.h │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── dac.cc │ │ ├── dac.h │ │ ├── leds.cc │ │ ├── leds.h │ │ ├── pwm.cc │ │ ├── pwm.h │ │ ├── switches.cc │ │ ├── switches.h │ │ ├── system.cc │ │ └── system.h │ ├── envelope.cc │ ├── envelope.h │ ├── filter_controller.h │ ├── follower.cc │ ├── follower.h │ ├── gain.h │ ├── hardware_design │ │ ├── Streams.xlsx │ │ ├── panel │ │ │ ├── streams.ai │ │ │ └── streams.dwg │ │ └── pcb │ │ │ ├── streams_v02_bargraph.brd │ │ │ ├── streams_v02_bargraph.sch │ │ │ ├── streams_v05.brd │ │ │ └── streams_v05.sch │ ├── lorenz_generator.cc │ ├── lorenz_generator.h │ ├── makefile │ ├── meta_parameters.h │ ├── processor.cc │ ├── processor.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ └── waveforms.py │ ├── streams.cc │ ├── svf.cc │ ├── svf.h │ ├── ui.cc │ ├── ui.h │ ├── vactrol.cc │ └── vactrol.h ├── tides │ ├── __init__.py │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ └── makefile │ ├── cv_scaler.cc │ ├── cv_scaler.h │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── dac.cc │ │ ├── dac.h │ │ ├── factory_testing_switch.h │ │ ├── gate_input.cc │ │ ├── gate_input.h │ │ ├── gate_output.cc │ │ ├── gate_output.h │ │ ├── leds.cc │ │ ├── leds.h │ │ ├── switches.cc │ │ ├── switches.h │ │ ├── system.cc │ │ ├── system.h │ │ ├── uart_logger.cc │ │ └── uart_logger.h │ ├── easter_egg │ │ └── plotter_program.h │ ├── generator.cc │ ├── generator.h │ ├── hardware_design │ │ ├── Tides.xlsx │ │ ├── panel │ │ │ ├── sheep.ai │ │ │ ├── tides.ai │ │ │ └── tides.dwg │ │ └── pcb │ │ │ ├── tides_v40.brd │ │ │ └── tides_v40.sch │ ├── makefile │ ├── plotter.cc │ ├── plotter.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ ├── waveforms.py │ │ ├── waves.bin │ │ └── wavetables.py │ ├── test │ │ ├── generator_test.cc │ │ └── makefile │ ├── tides.cc │ ├── ui.cc │ └── ui.h ├── tools │ ├── __init__.py │ ├── hex2sysex │ │ ├── __init__.py │ │ └── hex2sysex.py │ ├── hexfile │ │ ├── __init__.py │ │ └── hexfile.py │ ├── learning │ │ ├── __init__.py │ │ └── som.py │ ├── midi │ │ ├── __init__.py │ │ └── midifile.py │ └── optimization │ │ ├── __init__.py │ │ └── munkres.py ├── volts │ └── hardware_design │ │ └── pcb │ │ ├── volts_v01.brd │ │ └── volts_v01.sch ├── warps │ ├── __init__.py │ ├── bootloader │ │ ├── __init__.py │ │ ├── bootloader.cc │ │ └── makefile │ ├── cv_scaler.cc │ ├── cv_scaler.h │ ├── drivers │ │ ├── adc.cc │ │ ├── adc.h │ │ ├── codec.cc │ │ ├── codec.h │ │ ├── debug_pin.h │ │ ├── debug_port.cc │ │ ├── debug_port.h │ │ ├── leds.cc │ │ ├── leds.h │ │ ├── normalization_probe.h │ │ ├── switches.cc │ │ ├── switches.h │ │ ├── system.cc │ │ ├── system.h │ │ └── version.h │ ├── dsp │ │ ├── filter_bank.cc │ │ ├── filter_bank.h │ │ ├── limiter.h │ │ ├── modulator.cc │ │ ├── modulator.h │ │ ├── oscillator.cc │ │ ├── oscillator.h │ │ ├── parameters.h │ │ ├── quadrature_oscillator.h │ │ ├── quadrature_transform.h │ │ ├── sample_rate_conversion_filters.h │ │ ├── sample_rate_converter.h │ │ ├── vocoder.cc │ │ └── vocoder.h │ ├── hardware_design │ │ ├── Warps.xlsx │ │ ├── panel │ │ │ ├── warps.ai │ │ │ └── warps.dwg │ │ └── pcb │ │ │ ├── warps_v30.brd │ │ │ └── warps_v30.sch │ ├── makefile │ ├── meter.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ │ ├── __init__.py │ │ ├── filter_bank.py │ │ ├── lookup_tables.py │ │ ├── resources.py │ │ ├── timbre.raw │ │ └── waveforms.py │ ├── settings.cc │ ├── settings.h │ ├── test │ │ ├── makefile │ │ └── warps_test.cc │ ├── tools │ │ └── generate_src_filters.py │ ├── ui.cc │ ├── ui.h │ └── warps.cc └── yarns │ ├── __init__.py │ ├── bootloader │ ├── bootloader.cc │ ├── characters.cc │ ├── characters.h │ └── makefile │ ├── drivers │ ├── channel_leds.cc │ ├── channel_leds.h │ ├── dac.cc │ ├── dac.h │ ├── display.cc │ ├── display.h │ ├── encoder.cc │ ├── encoder.h │ ├── gate_output.cc │ ├── gate_output.h │ ├── midi_io.cc │ ├── midi_io.h │ ├── switches.cc │ ├── switches.h │ ├── system.cc │ └── system.h │ ├── hardware_design │ ├── Yarns.xlsx │ ├── panel │ │ ├── yarns.ai │ │ └── yarns.dwg │ └── pcb │ │ ├── yarns_v03.brd │ │ └── yarns_v03.sch │ ├── internal_clock.h │ ├── just_intonation_processor.cc │ ├── just_intonation_processor.h │ ├── layout_configurator.cc │ ├── layout_configurator.h │ ├── makefile │ ├── midi_handler.cc │ ├── midi_handler.h │ ├── multi.cc │ ├── multi.h │ ├── part.cc │ ├── part.h │ ├── resources.cc │ ├── resources.h │ ├── resources │ ├── __init__.py │ ├── characters.py │ ├── lookup_tables.py │ ├── resources.py │ └── waveforms.py │ ├── scale_editor │ ├── README │ ├── __init__.py │ ├── app.yaml │ ├── index.yaml │ ├── main.py │ ├── music │ │ ├── __init__.py │ │ └── scala │ │ │ ├── __init__.py │ │ │ └── scala.py │ ├── static │ │ ├── bg_main.jpg │ │ ├── db_yarns.png │ │ ├── divider_big.jpg │ │ ├── favicon.ico │ │ ├── logo.jpg │ │ └── main.css │ └── templates │ │ ├── base.html │ │ └── index.html │ ├── settings.cc │ ├── settings.h │ ├── song │ └── song.h │ ├── storage_manager.cc │ ├── storage_manager.h │ ├── ui.cc │ ├── ui.h │ ├── voice.cc │ ├── voice.h │ └── yarns.cc ├── res ├── Cycles.png ├── Tapeworm.png └── Wasp.png └── src ├── AepelzensParasites.cpp ├── AepelzensParasites.hpp ├── Tapeworm.cpp ├── Tides.cpp └── Warps.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist 3 | plugin.* 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/README.md -------------------------------------------------------------------------------- /parasites/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/.gitignore -------------------------------------------------------------------------------- /parasites/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/.gitmodules -------------------------------------------------------------------------------- /parasites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/README.md -------------------------------------------------------------------------------- /parasites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/braids/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/braids/analog_oscillator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/analog_oscillator.cc -------------------------------------------------------------------------------- /parasites/braids/analog_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/analog_oscillator.h -------------------------------------------------------------------------------- /parasites/braids/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/braids/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/braids/bootloader/characters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/bootloader/characters.cc -------------------------------------------------------------------------------- /parasites/braids/bootloader/characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/bootloader/characters.h -------------------------------------------------------------------------------- /parasites/braids/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/bootloader/makefile -------------------------------------------------------------------------------- /parasites/braids/braids.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/braids.cc -------------------------------------------------------------------------------- /parasites/braids/data/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/data/map.bin -------------------------------------------------------------------------------- /parasites/braids/data/waves.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/data/waves.bin -------------------------------------------------------------------------------- /parasites/braids/digital_oscillator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/digital_oscillator.cc -------------------------------------------------------------------------------- /parasites/braids/digital_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/digital_oscillator.h -------------------------------------------------------------------------------- /parasites/braids/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/adc.h -------------------------------------------------------------------------------- /parasites/braids/drivers/dac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/dac.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/dac.h -------------------------------------------------------------------------------- /parasites/braids/drivers/debug_pin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/debug_pin.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/debug_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/debug_pin.h -------------------------------------------------------------------------------- /parasites/braids/drivers/display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/display.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/display.h -------------------------------------------------------------------------------- /parasites/braids/drivers/encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/encoder.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/encoder.h -------------------------------------------------------------------------------- /parasites/braids/drivers/gate_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/gate_input.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/gate_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/gate_input.h -------------------------------------------------------------------------------- /parasites/braids/drivers/internal_adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/internal_adc.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/internal_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/internal_adc.h -------------------------------------------------------------------------------- /parasites/braids/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/system.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/system.h -------------------------------------------------------------------------------- /parasites/braids/drivers/uart_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/uart_logger.cc -------------------------------------------------------------------------------- /parasites/braids/drivers/uart_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/drivers/uart_logger.h -------------------------------------------------------------------------------- /parasites/braids/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/envelope.h -------------------------------------------------------------------------------- /parasites/braids/excitation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/excitation.h -------------------------------------------------------------------------------- /parasites/braids/hardware_design/Braids.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/hardware_design/Braids.xlsx -------------------------------------------------------------------------------- /parasites/braids/hardware_design/panel/braids.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/hardware_design/panel/braids.ai -------------------------------------------------------------------------------- /parasites/braids/hardware_design/panel/braids.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/hardware_design/panel/braids.dwg -------------------------------------------------------------------------------- /parasites/braids/hardware_design/pcb/braids_v50.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/hardware_design/pcb/braids_v50.brd -------------------------------------------------------------------------------- /parasites/braids/hardware_design/pcb/braids_v50.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/hardware_design/pcb/braids_v50.sch -------------------------------------------------------------------------------- /parasites/braids/macro_oscillator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/macro_oscillator.cc -------------------------------------------------------------------------------- /parasites/braids/macro_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/macro_oscillator.h -------------------------------------------------------------------------------- /parasites/braids/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/makefile -------------------------------------------------------------------------------- /parasites/braids/parameter_interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/parameter_interpolation.h -------------------------------------------------------------------------------- /parasites/braids/quantizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/quantizer.cc -------------------------------------------------------------------------------- /parasites/braids/quantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/quantizer.h -------------------------------------------------------------------------------- /parasites/braids/quantizer_scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/quantizer_scales.h -------------------------------------------------------------------------------- /parasites/braids/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/resources.cc -------------------------------------------------------------------------------- /parasites/braids/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/resources.h -------------------------------------------------------------------------------- /parasites/braids/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/braids/resources/characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/resources/characters.py -------------------------------------------------------------------------------- /parasites/braids/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/braids/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/resources/resources.py -------------------------------------------------------------------------------- /parasites/braids/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/braids/resources/waveshapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/resources/waveshapers.py -------------------------------------------------------------------------------- /parasites/braids/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/settings.cc -------------------------------------------------------------------------------- /parasites/braids/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/settings.h -------------------------------------------------------------------------------- /parasites/braids/signature_waveshaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/signature_waveshaper.h -------------------------------------------------------------------------------- /parasites/braids/svf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/svf.h -------------------------------------------------------------------------------- /parasites/braids/test/braids_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/test/braids_test.cc -------------------------------------------------------------------------------- /parasites/braids/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/test/makefile -------------------------------------------------------------------------------- /parasites/braids/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/ui.cc -------------------------------------------------------------------------------- /parasites/braids/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/ui.h -------------------------------------------------------------------------------- /parasites/braids/vco_jitter_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/braids/vco_jitter_source.h -------------------------------------------------------------------------------- /parasites/branches/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/branches/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/bootloader/makefile -------------------------------------------------------------------------------- /parasites/branches/branches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/branches.cc -------------------------------------------------------------------------------- /parasites/branches/hardware_design/Branches.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/hardware_design/Branches.xlsx -------------------------------------------------------------------------------- /parasites/branches/hardware_design/panel/branches.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/hardware_design/panel/branches.ai -------------------------------------------------------------------------------- /parasites/branches/hardware_design/panel/branches.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/hardware_design/panel/branches.dwg -------------------------------------------------------------------------------- /parasites/branches/hardware_design/pcb/branches_v40.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/hardware_design/pcb/branches_v40.brd -------------------------------------------------------------------------------- /parasites/branches/hardware_design/pcb/branches_v40.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/hardware_design/pcb/branches_v40.sch -------------------------------------------------------------------------------- /parasites/branches/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/branches/makefile -------------------------------------------------------------------------------- /parasites/clouds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/clouds/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/clouds/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/clouds/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/bootloader/makefile -------------------------------------------------------------------------------- /parasites/clouds/clouds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/clouds.cc -------------------------------------------------------------------------------- /parasites/clouds/cv_scaler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/cv_scaler.cc -------------------------------------------------------------------------------- /parasites/clouds/cv_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/cv_scaler.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/clouds/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/adc.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/codec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/codec.cc -------------------------------------------------------------------------------- /parasites/clouds/drivers/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/codec.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/debug_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/debug_pin.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/debug_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/debug_port.cc -------------------------------------------------------------------------------- /parasites/clouds/drivers/debug_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/debug_port.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/gate_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/gate_input.cc -------------------------------------------------------------------------------- /parasites/clouds/drivers/gate_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/gate_input.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/leds.cc -------------------------------------------------------------------------------- /parasites/clouds/drivers/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/leds.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/clouds/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/switches.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/system.cc -------------------------------------------------------------------------------- /parasites/clouds/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/system.h -------------------------------------------------------------------------------- /parasites/clouds/drivers/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/drivers/version.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/audio_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/audio_buffer.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/correlator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/correlator.cc -------------------------------------------------------------------------------- /parasites/clouds/dsp/correlator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/correlator.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/frame.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/fx/diffuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/fx/diffuser.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/fx/fx_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/fx/fx_engine.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/fx/oliverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/fx/oliverb.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/fx/pitch_shifter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/fx/pitch_shifter.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/fx/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/fx/reverb.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/grain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/grain.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/granular_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/granular_processor.cc -------------------------------------------------------------------------------- /parasites/clouds/dsp/granular_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/granular_processor.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/granular_sample_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/granular_sample_player.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/looping_sample_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/looping_sample_player.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/mu_law.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/mu_law.cc -------------------------------------------------------------------------------- /parasites/clouds/dsp/mu_law.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/mu_law.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/parameters.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/pvoc/frame_transformation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/pvoc/frame_transformation.cc -------------------------------------------------------------------------------- /parasites/clouds/dsp/pvoc/frame_transformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/pvoc/frame_transformation.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/pvoc/phase_vocoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/pvoc/phase_vocoder.cc -------------------------------------------------------------------------------- /parasites/clouds/dsp/pvoc/phase_vocoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/pvoc/phase_vocoder.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/pvoc/stft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/pvoc/stft.cc -------------------------------------------------------------------------------- /parasites/clouds/dsp/pvoc/stft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/pvoc/stft.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/random_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/random_oscillator.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/resonestor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/resonestor.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/sample_rate_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/sample_rate_converter.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/window.h -------------------------------------------------------------------------------- /parasites/clouds/dsp/wsola_sample_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/dsp/wsola_sample_player.h -------------------------------------------------------------------------------- /parasites/clouds/hardware_design/Clouds.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/hardware_design/Clouds.xlsx -------------------------------------------------------------------------------- /parasites/clouds/hardware_design/panel/clouds.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/hardware_design/panel/clouds.ai -------------------------------------------------------------------------------- /parasites/clouds/hardware_design/panel/clouds.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/hardware_design/panel/clouds.dwg -------------------------------------------------------------------------------- /parasites/clouds/hardware_design/pcb/clouds_v30.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/hardware_design/pcb/clouds_v30.brd -------------------------------------------------------------------------------- /parasites/clouds/hardware_design/pcb/clouds_v30.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/hardware_design/pcb/clouds_v30.sch -------------------------------------------------------------------------------- /parasites/clouds/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/makefile -------------------------------------------------------------------------------- /parasites/clouds/meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/meter.h -------------------------------------------------------------------------------- /parasites/clouds/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/resources.cc -------------------------------------------------------------------------------- /parasites/clouds/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/resources.h -------------------------------------------------------------------------------- /parasites/clouds/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/clouds/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/clouds/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/resources/resources.py -------------------------------------------------------------------------------- /parasites/clouds/resources/src_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/resources/src_filters.py -------------------------------------------------------------------------------- /parasites/clouds/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/settings.cc -------------------------------------------------------------------------------- /parasites/clouds/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/settings.h -------------------------------------------------------------------------------- /parasites/clouds/test/clouds_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/test/clouds_test.cc -------------------------------------------------------------------------------- /parasites/clouds/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/test/makefile -------------------------------------------------------------------------------- /parasites/clouds/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/ui.cc -------------------------------------------------------------------------------- /parasites/clouds/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/clouds/ui.h -------------------------------------------------------------------------------- /parasites/edges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/edges/adc_acquisition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/adc_acquisition.cc -------------------------------------------------------------------------------- /parasites/edges/adc_acquisition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/adc_acquisition.h -------------------------------------------------------------------------------- /parasites/edges/audio_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/audio_buffer.cc -------------------------------------------------------------------------------- /parasites/edges/audio_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/audio_buffer.h -------------------------------------------------------------------------------- /parasites/edges/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/edges/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/bootloader/makefile -------------------------------------------------------------------------------- /parasites/edges/digital_oscillator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/digital_oscillator.cc -------------------------------------------------------------------------------- /parasites/edges/digital_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/digital_oscillator.h -------------------------------------------------------------------------------- /parasites/edges/edges.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/edges.cc -------------------------------------------------------------------------------- /parasites/edges/hardware_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_config.h -------------------------------------------------------------------------------- /parasites/edges/hardware_design/Edges.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_design/Edges.xlsx -------------------------------------------------------------------------------- /parasites/edges/hardware_design/panel/edges.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_design/panel/edges.ai -------------------------------------------------------------------------------- /parasites/edges/hardware_design/panel/edges.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_design/panel/edges.dwg -------------------------------------------------------------------------------- /parasites/edges/hardware_design/pcb/edges_expander_v01.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_design/pcb/edges_expander_v01.brd -------------------------------------------------------------------------------- /parasites/edges/hardware_design/pcb/edges_expander_v01.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_design/pcb/edges_expander_v01.sch -------------------------------------------------------------------------------- /parasites/edges/hardware_design/pcb/edges_v20.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_design/pcb/edges_v20.brd -------------------------------------------------------------------------------- /parasites/edges/hardware_design/pcb/edges_v20.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/hardware_design/pcb/edges_v20.sch -------------------------------------------------------------------------------- /parasites/edges/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/makefile -------------------------------------------------------------------------------- /parasites/edges/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/midi.h -------------------------------------------------------------------------------- /parasites/edges/midi_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/midi_handler.cc -------------------------------------------------------------------------------- /parasites/edges/midi_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/midi_handler.h -------------------------------------------------------------------------------- /parasites/edges/note_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/note_stack.h -------------------------------------------------------------------------------- /parasites/edges/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/resources.cc -------------------------------------------------------------------------------- /parasites/edges/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/resources.h -------------------------------------------------------------------------------- /parasites/edges/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/edges/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/edges/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/resources/resources.py -------------------------------------------------------------------------------- /parasites/edges/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/edges/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/settings.cc -------------------------------------------------------------------------------- /parasites/edges/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/settings.h -------------------------------------------------------------------------------- /parasites/edges/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/storage.h -------------------------------------------------------------------------------- /parasites/edges/timer_oscillator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/timer_oscillator.cc -------------------------------------------------------------------------------- /parasites/edges/timer_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/timer_oscillator.h -------------------------------------------------------------------------------- /parasites/edges/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/ui.cc -------------------------------------------------------------------------------- /parasites/edges/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/ui.h -------------------------------------------------------------------------------- /parasites/edges/voice_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/voice_allocator.cc -------------------------------------------------------------------------------- /parasites/edges/voice_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/edges/voice_allocator.h -------------------------------------------------------------------------------- /parasites/elements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/elements/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/elements/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/elements/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/bootloader/makefile -------------------------------------------------------------------------------- /parasites/elements/cv_scaler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/cv_scaler.cc -------------------------------------------------------------------------------- /parasites/elements/cv_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/cv_scaler.h -------------------------------------------------------------------------------- /parasites/elements/drivers/codec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/codec.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/codec.h -------------------------------------------------------------------------------- /parasites/elements/drivers/cv_adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/cv_adc.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/cv_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/cv_adc.h -------------------------------------------------------------------------------- /parasites/elements/drivers/debug_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/debug_pin.h -------------------------------------------------------------------------------- /parasites/elements/drivers/debug_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/debug_port.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/debug_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/debug_port.h -------------------------------------------------------------------------------- /parasites/elements/drivers/gate_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/gate_input.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/gate_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/gate_input.h -------------------------------------------------------------------------------- /parasites/elements/drivers/leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/leds.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/leds.h -------------------------------------------------------------------------------- /parasites/elements/drivers/pots_adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/pots_adc.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/pots_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/pots_adc.h -------------------------------------------------------------------------------- /parasites/elements/drivers/switch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/switch.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/switch.h -------------------------------------------------------------------------------- /parasites/elements/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/system.cc -------------------------------------------------------------------------------- /parasites/elements/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/drivers/system.h -------------------------------------------------------------------------------- /parasites/elements/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/dsp.h -------------------------------------------------------------------------------- /parasites/elements/dsp/exciter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/exciter.cc -------------------------------------------------------------------------------- /parasites/elements/dsp/exciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/exciter.h -------------------------------------------------------------------------------- /parasites/elements/dsp/fx/diffuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/fx/diffuser.h -------------------------------------------------------------------------------- /parasites/elements/dsp/fx/fx_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/fx/fx_engine.h -------------------------------------------------------------------------------- /parasites/elements/dsp/fx/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/fx/reverb.h -------------------------------------------------------------------------------- /parasites/elements/dsp/multistage_envelope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/multistage_envelope.cc -------------------------------------------------------------------------------- /parasites/elements/dsp/multistage_envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/multistage_envelope.h -------------------------------------------------------------------------------- /parasites/elements/dsp/ominous_voice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/ominous_voice.cc -------------------------------------------------------------------------------- /parasites/elements/dsp/ominous_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/ominous_voice.h -------------------------------------------------------------------------------- /parasites/elements/dsp/part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/part.cc -------------------------------------------------------------------------------- /parasites/elements/dsp/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/part.h -------------------------------------------------------------------------------- /parasites/elements/dsp/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/patch.h -------------------------------------------------------------------------------- /parasites/elements/dsp/resonator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/resonator.cc -------------------------------------------------------------------------------- /parasites/elements/dsp/resonator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/resonator.h -------------------------------------------------------------------------------- /parasites/elements/dsp/tube.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/tube.cc -------------------------------------------------------------------------------- /parasites/elements/dsp/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/tube.h -------------------------------------------------------------------------------- /parasites/elements/dsp/voice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/voice.cc -------------------------------------------------------------------------------- /parasites/elements/dsp/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/dsp/voice.h -------------------------------------------------------------------------------- /parasites/elements/elements.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/elements.cc -------------------------------------------------------------------------------- /parasites/elements/hardware_design/Elements.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/hardware_design/Elements.xlsx -------------------------------------------------------------------------------- /parasites/elements/hardware_design/panel/elements.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/hardware_design/panel/elements.ai -------------------------------------------------------------------------------- /parasites/elements/hardware_design/panel/elements.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/hardware_design/panel/elements.dwg -------------------------------------------------------------------------------- /parasites/elements/hardware_design/pcb/elements_v02.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/hardware_design/pcb/elements_v02.brd -------------------------------------------------------------------------------- /parasites/elements/hardware_design/pcb/elements_v02.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/hardware_design/pcb/elements_v02.sch -------------------------------------------------------------------------------- /parasites/elements/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/makefile -------------------------------------------------------------------------------- /parasites/elements/meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/meter.h -------------------------------------------------------------------------------- /parasites/elements/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/resources.cc -------------------------------------------------------------------------------- /parasites/elements/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/resources.h -------------------------------------------------------------------------------- /parasites/elements/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/elements/resources/audio_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/resources/audio_io.py -------------------------------------------------------------------------------- /parasites/elements/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/elements/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/resources/resources.py -------------------------------------------------------------------------------- /parasites/elements/resources/samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/resources/samples.py -------------------------------------------------------------------------------- /parasites/elements/samples/hit_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_01.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_02.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_03.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_04.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_05.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_06.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_07.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_08.wav -------------------------------------------------------------------------------- /parasites/elements/samples/hit_09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/hit_09.wav -------------------------------------------------------------------------------- /parasites/elements/samples/noise.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/samples/noise.wav -------------------------------------------------------------------------------- /parasites/elements/test/elements_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/test/elements_test.cc -------------------------------------------------------------------------------- /parasites/elements/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/test/makefile -------------------------------------------------------------------------------- /parasites/elements/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/ui.cc -------------------------------------------------------------------------------- /parasites/elements/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/elements/ui.h -------------------------------------------------------------------------------- /parasites/frames/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/frames/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/frames/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/frames/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/bootloader/makefile -------------------------------------------------------------------------------- /parasites/frames/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/adc.h -------------------------------------------------------------------------------- /parasites/frames/drivers/channel_leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/channel_leds.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/channel_leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/channel_leds.h -------------------------------------------------------------------------------- /parasites/frames/drivers/dac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/dac.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/dac.h -------------------------------------------------------------------------------- /parasites/frames/drivers/factory_testing_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/factory_testing_switch.h -------------------------------------------------------------------------------- /parasites/frames/drivers/keyframe_led.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/keyframe_led.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/keyframe_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/keyframe_led.h -------------------------------------------------------------------------------- /parasites/frames/drivers/rgb_led.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/rgb_led.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/rgb_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/rgb_led.h -------------------------------------------------------------------------------- /parasites/frames/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/switches.h -------------------------------------------------------------------------------- /parasites/frames/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/system.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/system.h -------------------------------------------------------------------------------- /parasites/frames/drivers/trigger_output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/trigger_output.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/trigger_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/trigger_output.h -------------------------------------------------------------------------------- /parasites/frames/drivers/uart_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/uart_logger.cc -------------------------------------------------------------------------------- /parasites/frames/drivers/uart_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/drivers/uart_logger.h -------------------------------------------------------------------------------- /parasites/frames/euclidean.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/euclidean.cc -------------------------------------------------------------------------------- /parasites/frames/euclidean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/euclidean.h -------------------------------------------------------------------------------- /parasites/frames/frames.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/frames.cc -------------------------------------------------------------------------------- /parasites/frames/hardware_design/Frames.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/hardware_design/Frames.xlsx -------------------------------------------------------------------------------- /parasites/frames/hardware_design/panel/frames.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/hardware_design/panel/frames.ai -------------------------------------------------------------------------------- /parasites/frames/hardware_design/panel/frames.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/hardware_design/panel/frames.dwg -------------------------------------------------------------------------------- /parasites/frames/hardware_design/pcb/frames_v03.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/hardware_design/pcb/frames_v03.brd -------------------------------------------------------------------------------- /parasites/frames/hardware_design/pcb/frames_v03.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/hardware_design/pcb/frames_v03.sch -------------------------------------------------------------------------------- /parasites/frames/keyframer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/keyframer.cc -------------------------------------------------------------------------------- /parasites/frames/keyframer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/keyframer.h -------------------------------------------------------------------------------- /parasites/frames/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/makefile -------------------------------------------------------------------------------- /parasites/frames/poly_lfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/poly_lfo.cc -------------------------------------------------------------------------------- /parasites/frames/poly_lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/poly_lfo.h -------------------------------------------------------------------------------- /parasites/frames/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/resources.cc -------------------------------------------------------------------------------- /parasites/frames/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/resources.h -------------------------------------------------------------------------------- /parasites/frames/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/frames/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/frames/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/resources/resources.py -------------------------------------------------------------------------------- /parasites/frames/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/frames/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/ui.cc -------------------------------------------------------------------------------- /parasites/frames/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/frames/ui.h -------------------------------------------------------------------------------- /parasites/grids/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/grids/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/grids/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/bootloader/makefile -------------------------------------------------------------------------------- /parasites/grids/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/clock.cc -------------------------------------------------------------------------------- /parasites/grids/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/clock.h -------------------------------------------------------------------------------- /parasites/grids/grids.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/grids.cc -------------------------------------------------------------------------------- /parasites/grids/hardware_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/hardware_config.h -------------------------------------------------------------------------------- /parasites/grids/hardware_design/Grids.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/hardware_design/Grids.xlsx -------------------------------------------------------------------------------- /parasites/grids/hardware_design/panel/grids.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/hardware_design/panel/grids.ai -------------------------------------------------------------------------------- /parasites/grids/hardware_design/panel/grids.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/hardware_design/panel/grids.dwg -------------------------------------------------------------------------------- /parasites/grids/hardware_design/pcb/grids_v02.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/hardware_design/pcb/grids_v02.brd -------------------------------------------------------------------------------- /parasites/grids/hardware_design/pcb/grids_v02.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/hardware_design/pcb/grids_v02.sch -------------------------------------------------------------------------------- /parasites/grids/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/makefile -------------------------------------------------------------------------------- /parasites/grids/pattern_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/pattern_generator.cc -------------------------------------------------------------------------------- /parasites/grids/pattern_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/pattern_generator.h -------------------------------------------------------------------------------- /parasites/grids/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/resources.cc -------------------------------------------------------------------------------- /parasites/grids/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/resources.h -------------------------------------------------------------------------------- /parasites/grids/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/grids/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/grids/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/grids/resources/resources.py -------------------------------------------------------------------------------- /parasites/links/hardware_design/Links.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/links/hardware_design/Links.xlsx -------------------------------------------------------------------------------- /parasites/links/hardware_design/panel/links.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/links/hardware_design/panel/links.ai -------------------------------------------------------------------------------- /parasites/links/hardware_design/panel/links.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/links/hardware_design/panel/links.dwg -------------------------------------------------------------------------------- /parasites/links/hardware_design/pcb/links_v40.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/links/hardware_design/pcb/links_v40.brd -------------------------------------------------------------------------------- /parasites/links/hardware_design/pcb/links_v40.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/links/hardware_design/pcb/links_v40.sch -------------------------------------------------------------------------------- /parasites/peaks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/peaks/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/peaks/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/bootloader/makefile -------------------------------------------------------------------------------- /parasites/peaks/data/digits.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/data/digits.bin -------------------------------------------------------------------------------- /parasites/peaks/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/peaks/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/adc.h -------------------------------------------------------------------------------- /parasites/peaks/drivers/dac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/dac.cc -------------------------------------------------------------------------------- /parasites/peaks/drivers/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/dac.h -------------------------------------------------------------------------------- /parasites/peaks/drivers/gate_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/gate_input.cc -------------------------------------------------------------------------------- /parasites/peaks/drivers/gate_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/gate_input.h -------------------------------------------------------------------------------- /parasites/peaks/drivers/leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/leds.cc -------------------------------------------------------------------------------- /parasites/peaks/drivers/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/leds.h -------------------------------------------------------------------------------- /parasites/peaks/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/peaks/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/switches.h -------------------------------------------------------------------------------- /parasites/peaks/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/system.cc -------------------------------------------------------------------------------- /parasites/peaks/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drivers/system.h -------------------------------------------------------------------------------- /parasites/peaks/drums/bass_drum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/bass_drum.cc -------------------------------------------------------------------------------- /parasites/peaks/drums/bass_drum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/bass_drum.h -------------------------------------------------------------------------------- /parasites/peaks/drums/excitation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/excitation.h -------------------------------------------------------------------------------- /parasites/peaks/drums/fm_drum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/fm_drum.cc -------------------------------------------------------------------------------- /parasites/peaks/drums/fm_drum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/fm_drum.h -------------------------------------------------------------------------------- /parasites/peaks/drums/high_hat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/high_hat.cc -------------------------------------------------------------------------------- /parasites/peaks/drums/high_hat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/high_hat.h -------------------------------------------------------------------------------- /parasites/peaks/drums/snare_drum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/snare_drum.cc -------------------------------------------------------------------------------- /parasites/peaks/drums/snare_drum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/snare_drum.h -------------------------------------------------------------------------------- /parasites/peaks/drums/svf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/svf.cc -------------------------------------------------------------------------------- /parasites/peaks/drums/svf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/drums/svf.h -------------------------------------------------------------------------------- /parasites/peaks/gate_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/gate_processor.h -------------------------------------------------------------------------------- /parasites/peaks/hardware_design/Peaks.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/hardware_design/Peaks.xlsx -------------------------------------------------------------------------------- /parasites/peaks/hardware_design/panel/peaks.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/hardware_design/panel/peaks.ai -------------------------------------------------------------------------------- /parasites/peaks/hardware_design/panel/peaks.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/hardware_design/panel/peaks.dwg -------------------------------------------------------------------------------- /parasites/peaks/hardware_design/pcb/peaks_v30.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/hardware_design/pcb/peaks_v30.brd -------------------------------------------------------------------------------- /parasites/peaks/hardware_design/pcb/peaks_v30.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/hardware_design/pcb/peaks_v30.sch -------------------------------------------------------------------------------- /parasites/peaks/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/makefile -------------------------------------------------------------------------------- /parasites/peaks/modulations/bouncing_ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/modulations/bouncing_ball.h -------------------------------------------------------------------------------- /parasites/peaks/modulations/lfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/modulations/lfo.cc -------------------------------------------------------------------------------- /parasites/peaks/modulations/lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/modulations/lfo.h -------------------------------------------------------------------------------- /parasites/peaks/modulations/mini_sequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/modulations/mini_sequencer.h -------------------------------------------------------------------------------- /parasites/peaks/modulations/multistage_envelope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/modulations/multistage_envelope.cc -------------------------------------------------------------------------------- /parasites/peaks/modulations/multistage_envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/modulations/multistage_envelope.h -------------------------------------------------------------------------------- /parasites/peaks/number_station/number_station.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/number_station/number_station.cc -------------------------------------------------------------------------------- /parasites/peaks/number_station/number_station.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/number_station/number_station.h -------------------------------------------------------------------------------- /parasites/peaks/peaks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/peaks.cc -------------------------------------------------------------------------------- /parasites/peaks/processors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/processors.cc -------------------------------------------------------------------------------- /parasites/peaks/processors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/processors.h -------------------------------------------------------------------------------- /parasites/peaks/pulse_processor/pulse_randomizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/pulse_processor/pulse_randomizer.cc -------------------------------------------------------------------------------- /parasites/peaks/pulse_processor/pulse_randomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/pulse_processor/pulse_randomizer.h -------------------------------------------------------------------------------- /parasites/peaks/pulse_processor/pulse_shaper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/pulse_processor/pulse_shaper.cc -------------------------------------------------------------------------------- /parasites/peaks/pulse_processor/pulse_shaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/pulse_processor/pulse_shaper.h -------------------------------------------------------------------------------- /parasites/peaks/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/resources.cc -------------------------------------------------------------------------------- /parasites/peaks/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/resources.h -------------------------------------------------------------------------------- /parasites/peaks/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/peaks/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/peaks/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/resources/resources.py -------------------------------------------------------------------------------- /parasites/peaks/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/peaks/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/test/makefile -------------------------------------------------------------------------------- /parasites/peaks/test/peaks_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/test/peaks_test.cc -------------------------------------------------------------------------------- /parasites/peaks/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/ui.cc -------------------------------------------------------------------------------- /parasites/peaks/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/peaks/ui.h -------------------------------------------------------------------------------- /parasites/presentation.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/presentation.org -------------------------------------------------------------------------------- /parasites/rings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/rings/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/rings/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/rings/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/bootloader/makefile -------------------------------------------------------------------------------- /parasites/rings/cv_scaler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/cv_scaler.cc -------------------------------------------------------------------------------- /parasites/rings/cv_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/cv_scaler.h -------------------------------------------------------------------------------- /parasites/rings/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/rings/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/adc.h -------------------------------------------------------------------------------- /parasites/rings/drivers/codec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/codec.cc -------------------------------------------------------------------------------- /parasites/rings/drivers/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/codec.h -------------------------------------------------------------------------------- /parasites/rings/drivers/debug_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/debug_pin.h -------------------------------------------------------------------------------- /parasites/rings/drivers/debug_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/debug_port.cc -------------------------------------------------------------------------------- /parasites/rings/drivers/debug_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/debug_port.h -------------------------------------------------------------------------------- /parasites/rings/drivers/leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/leds.cc -------------------------------------------------------------------------------- /parasites/rings/drivers/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/leds.h -------------------------------------------------------------------------------- /parasites/rings/drivers/normalization_probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/normalization_probe.h -------------------------------------------------------------------------------- /parasites/rings/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/rings/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/switches.h -------------------------------------------------------------------------------- /parasites/rings/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/system.cc -------------------------------------------------------------------------------- /parasites/rings/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/system.h -------------------------------------------------------------------------------- /parasites/rings/drivers/trigger_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/trigger_input.cc -------------------------------------------------------------------------------- /parasites/rings/drivers/trigger_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/trigger_input.h -------------------------------------------------------------------------------- /parasites/rings/drivers/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/drivers/version.h -------------------------------------------------------------------------------- /parasites/rings/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/dsp.h -------------------------------------------------------------------------------- /parasites/rings/dsp/fm_voice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/fm_voice.cc -------------------------------------------------------------------------------- /parasites/rings/dsp/fm_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/fm_voice.h -------------------------------------------------------------------------------- /parasites/rings/dsp/follower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/follower.h -------------------------------------------------------------------------------- /parasites/rings/dsp/fx/chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/fx/chorus.h -------------------------------------------------------------------------------- /parasites/rings/dsp/fx/ensemble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/fx/ensemble.h -------------------------------------------------------------------------------- /parasites/rings/dsp/fx/fx_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/fx/fx_engine.h -------------------------------------------------------------------------------- /parasites/rings/dsp/fx/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/fx/reverb.h -------------------------------------------------------------------------------- /parasites/rings/dsp/limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/limiter.h -------------------------------------------------------------------------------- /parasites/rings/dsp/note_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/note_filter.h -------------------------------------------------------------------------------- /parasites/rings/dsp/onset_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/onset_detector.h -------------------------------------------------------------------------------- /parasites/rings/dsp/part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/part.cc -------------------------------------------------------------------------------- /parasites/rings/dsp/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/part.h -------------------------------------------------------------------------------- /parasites/rings/dsp/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/patch.h -------------------------------------------------------------------------------- /parasites/rings/dsp/performance_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/performance_state.h -------------------------------------------------------------------------------- /parasites/rings/dsp/plucker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/plucker.h -------------------------------------------------------------------------------- /parasites/rings/dsp/resonator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/resonator.cc -------------------------------------------------------------------------------- /parasites/rings/dsp/resonator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/resonator.h -------------------------------------------------------------------------------- /parasites/rings/dsp/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/string.cc -------------------------------------------------------------------------------- /parasites/rings/dsp/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/string.h -------------------------------------------------------------------------------- /parasites/rings/dsp/string_synth_envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/string_synth_envelope.h -------------------------------------------------------------------------------- /parasites/rings/dsp/string_synth_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/string_synth_oscillator.h -------------------------------------------------------------------------------- /parasites/rings/dsp/string_synth_part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/string_synth_part.cc -------------------------------------------------------------------------------- /parasites/rings/dsp/string_synth_part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/string_synth_part.h -------------------------------------------------------------------------------- /parasites/rings/dsp/string_synth_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/string_synth_voice.h -------------------------------------------------------------------------------- /parasites/rings/dsp/strummer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/dsp/strummer.h -------------------------------------------------------------------------------- /parasites/rings/hardware_design/Rings.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/hardware_design/Rings.xlsx -------------------------------------------------------------------------------- /parasites/rings/hardware_design/panel/rings.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/hardware_design/panel/rings.ai -------------------------------------------------------------------------------- /parasites/rings/hardware_design/panel/rings.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/hardware_design/panel/rings.dwg -------------------------------------------------------------------------------- /parasites/rings/hardware_design/pcb/rings_v30.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/hardware_design/pcb/rings_v30.brd -------------------------------------------------------------------------------- /parasites/rings/hardware_design/pcb/rings_v30.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/hardware_design/pcb/rings_v30.sch -------------------------------------------------------------------------------- /parasites/rings/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/makefile -------------------------------------------------------------------------------- /parasites/rings/meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/meter.h -------------------------------------------------------------------------------- /parasites/rings/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/resources.cc -------------------------------------------------------------------------------- /parasites/rings/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/resources.h -------------------------------------------------------------------------------- /parasites/rings/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/rings/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/rings/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/resources/resources.py -------------------------------------------------------------------------------- /parasites/rings/rings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/rings.cc -------------------------------------------------------------------------------- /parasites/rings/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/settings.cc -------------------------------------------------------------------------------- /parasites/rings/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/settings.h -------------------------------------------------------------------------------- /parasites/rings/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/test/makefile -------------------------------------------------------------------------------- /parasites/rings/test/rings_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/test/rings_test.cc -------------------------------------------------------------------------------- /parasites/rings/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/ui.cc -------------------------------------------------------------------------------- /parasites/rings/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/rings/ui.h -------------------------------------------------------------------------------- /parasites/ripples/hardware_design/Ripples.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/ripples/hardware_design/Ripples.xlsx -------------------------------------------------------------------------------- /parasites/ripples/hardware_design/panel/ripples.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/ripples/hardware_design/panel/ripples.ai -------------------------------------------------------------------------------- /parasites/ripples/hardware_design/panel/ripples.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/ripples/hardware_design/panel/ripples.dwg -------------------------------------------------------------------------------- /parasites/ripples/hardware_design/pcb/ripples_v40.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/ripples/hardware_design/pcb/ripples_v40.brd -------------------------------------------------------------------------------- /parasites/ripples/hardware_design/pcb/ripples_v40.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/ripples/hardware_design/pcb/ripples_v40.sch -------------------------------------------------------------------------------- /parasites/shades/hardware_design/Shades.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shades/hardware_design/Shades.xlsx -------------------------------------------------------------------------------- /parasites/shades/hardware_design/panel/shades.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shades/hardware_design/panel/shades.ai -------------------------------------------------------------------------------- /parasites/shades/hardware_design/panel/shades.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shades/hardware_design/panel/shades.dwg -------------------------------------------------------------------------------- /parasites/shades/hardware_design/pcb/shades_v30.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shades/hardware_design/pcb/shades_v30.brd -------------------------------------------------------------------------------- /parasites/shades/hardware_design/pcb/shades_v30.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shades/hardware_design/pcb/shades_v30.sch -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/Shelves.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/Shelves.xlsx -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/ShelvesExpander.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/ShelvesExpander.xlsx -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/panel/shelves.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/panel/shelves.ai -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/panel/shelves.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/panel/shelves.dwg -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/panel/shelves_expander.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/panel/shelves_expander.ai -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/panel/shelves_expander.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/panel/shelves_expander.dwg -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/pcb/shelves_expander_v10.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/pcb/shelves_expander_v10.brd -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/pcb/shelves_expander_v10.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/pcb/shelves_expander_v10.sch -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/pcb/shelves_v05.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/pcb/shelves_v05.brd -------------------------------------------------------------------------------- /parasites/shelves/hardware_design/pcb/shelves_v05.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/shelves/hardware_design/pcb/shelves_v05.sch -------------------------------------------------------------------------------- /parasites/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/streams/audio_cv_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/audio_cv_meter.h -------------------------------------------------------------------------------- /parasites/streams/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/streams/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/streams/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/bootloader/makefile -------------------------------------------------------------------------------- /parasites/streams/compressor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/compressor.cc -------------------------------------------------------------------------------- /parasites/streams/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/compressor.h -------------------------------------------------------------------------------- /parasites/streams/cv_scaler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/cv_scaler.cc -------------------------------------------------------------------------------- /parasites/streams/cv_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/cv_scaler.h -------------------------------------------------------------------------------- /parasites/streams/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/streams/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/adc.h -------------------------------------------------------------------------------- /parasites/streams/drivers/dac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/dac.cc -------------------------------------------------------------------------------- /parasites/streams/drivers/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/dac.h -------------------------------------------------------------------------------- /parasites/streams/drivers/leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/leds.cc -------------------------------------------------------------------------------- /parasites/streams/drivers/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/leds.h -------------------------------------------------------------------------------- /parasites/streams/drivers/pwm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/pwm.cc -------------------------------------------------------------------------------- /parasites/streams/drivers/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/pwm.h -------------------------------------------------------------------------------- /parasites/streams/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/streams/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/switches.h -------------------------------------------------------------------------------- /parasites/streams/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/system.cc -------------------------------------------------------------------------------- /parasites/streams/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/drivers/system.h -------------------------------------------------------------------------------- /parasites/streams/envelope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/envelope.cc -------------------------------------------------------------------------------- /parasites/streams/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/envelope.h -------------------------------------------------------------------------------- /parasites/streams/filter_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/filter_controller.h -------------------------------------------------------------------------------- /parasites/streams/follower.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/follower.cc -------------------------------------------------------------------------------- /parasites/streams/follower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/follower.h -------------------------------------------------------------------------------- /parasites/streams/gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/gain.h -------------------------------------------------------------------------------- /parasites/streams/hardware_design/Streams.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/hardware_design/Streams.xlsx -------------------------------------------------------------------------------- /parasites/streams/hardware_design/panel/streams.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/hardware_design/panel/streams.ai -------------------------------------------------------------------------------- /parasites/streams/hardware_design/panel/streams.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/hardware_design/panel/streams.dwg -------------------------------------------------------------------------------- /parasites/streams/hardware_design/pcb/streams_v02_bargraph.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/hardware_design/pcb/streams_v02_bargraph.brd -------------------------------------------------------------------------------- /parasites/streams/hardware_design/pcb/streams_v02_bargraph.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/hardware_design/pcb/streams_v02_bargraph.sch -------------------------------------------------------------------------------- /parasites/streams/hardware_design/pcb/streams_v05.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/hardware_design/pcb/streams_v05.brd -------------------------------------------------------------------------------- /parasites/streams/hardware_design/pcb/streams_v05.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/hardware_design/pcb/streams_v05.sch -------------------------------------------------------------------------------- /parasites/streams/lorenz_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/lorenz_generator.cc -------------------------------------------------------------------------------- /parasites/streams/lorenz_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/lorenz_generator.h -------------------------------------------------------------------------------- /parasites/streams/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/makefile -------------------------------------------------------------------------------- /parasites/streams/meta_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/meta_parameters.h -------------------------------------------------------------------------------- /parasites/streams/processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/processor.cc -------------------------------------------------------------------------------- /parasites/streams/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/processor.h -------------------------------------------------------------------------------- /parasites/streams/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/resources.cc -------------------------------------------------------------------------------- /parasites/streams/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/resources.h -------------------------------------------------------------------------------- /parasites/streams/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/streams/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/streams/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/resources/resources.py -------------------------------------------------------------------------------- /parasites/streams/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/streams/streams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/streams.cc -------------------------------------------------------------------------------- /parasites/streams/svf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/svf.cc -------------------------------------------------------------------------------- /parasites/streams/svf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/svf.h -------------------------------------------------------------------------------- /parasites/streams/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/ui.cc -------------------------------------------------------------------------------- /parasites/streams/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/ui.h -------------------------------------------------------------------------------- /parasites/streams/vactrol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/vactrol.cc -------------------------------------------------------------------------------- /parasites/streams/vactrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/streams/vactrol.h -------------------------------------------------------------------------------- /parasites/tides/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tides/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tides/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/tides/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/bootloader/makefile -------------------------------------------------------------------------------- /parasites/tides/cv_scaler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/cv_scaler.cc -------------------------------------------------------------------------------- /parasites/tides/cv_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/cv_scaler.h -------------------------------------------------------------------------------- /parasites/tides/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/adc.h -------------------------------------------------------------------------------- /parasites/tides/drivers/dac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/dac.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/dac.h -------------------------------------------------------------------------------- /parasites/tides/drivers/factory_testing_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/factory_testing_switch.h -------------------------------------------------------------------------------- /parasites/tides/drivers/gate_input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/gate_input.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/gate_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/gate_input.h -------------------------------------------------------------------------------- /parasites/tides/drivers/gate_output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/gate_output.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/gate_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/gate_output.h -------------------------------------------------------------------------------- /parasites/tides/drivers/leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/leds.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/leds.h -------------------------------------------------------------------------------- /parasites/tides/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/switches.h -------------------------------------------------------------------------------- /parasites/tides/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/system.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/system.h -------------------------------------------------------------------------------- /parasites/tides/drivers/uart_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/uart_logger.cc -------------------------------------------------------------------------------- /parasites/tides/drivers/uart_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/drivers/uart_logger.h -------------------------------------------------------------------------------- /parasites/tides/easter_egg/plotter_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/easter_egg/plotter_program.h -------------------------------------------------------------------------------- /parasites/tides/generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/generator.cc -------------------------------------------------------------------------------- /parasites/tides/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/generator.h -------------------------------------------------------------------------------- /parasites/tides/hardware_design/Tides.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/hardware_design/Tides.xlsx -------------------------------------------------------------------------------- /parasites/tides/hardware_design/panel/sheep.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/hardware_design/panel/sheep.ai -------------------------------------------------------------------------------- /parasites/tides/hardware_design/panel/tides.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/hardware_design/panel/tides.ai -------------------------------------------------------------------------------- /parasites/tides/hardware_design/panel/tides.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/hardware_design/panel/tides.dwg -------------------------------------------------------------------------------- /parasites/tides/hardware_design/pcb/tides_v40.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/hardware_design/pcb/tides_v40.brd -------------------------------------------------------------------------------- /parasites/tides/hardware_design/pcb/tides_v40.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/hardware_design/pcb/tides_v40.sch -------------------------------------------------------------------------------- /parasites/tides/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/makefile -------------------------------------------------------------------------------- /parasites/tides/plotter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/plotter.cc -------------------------------------------------------------------------------- /parasites/tides/plotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/plotter.h -------------------------------------------------------------------------------- /parasites/tides/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/resources.cc -------------------------------------------------------------------------------- /parasites/tides/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/resources.h -------------------------------------------------------------------------------- /parasites/tides/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tides/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/tides/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/resources/resources.py -------------------------------------------------------------------------------- /parasites/tides/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/tides/resources/waves.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/resources/waves.bin -------------------------------------------------------------------------------- /parasites/tides/resources/wavetables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/resources/wavetables.py -------------------------------------------------------------------------------- /parasites/tides/test/generator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/test/generator_test.cc -------------------------------------------------------------------------------- /parasites/tides/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/test/makefile -------------------------------------------------------------------------------- /parasites/tides/tides.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/tides.cc -------------------------------------------------------------------------------- /parasites/tides/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/ui.cc -------------------------------------------------------------------------------- /parasites/tides/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tides/ui.h -------------------------------------------------------------------------------- /parasites/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tools/hex2sysex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tools/hex2sysex/hex2sysex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tools/hex2sysex/hex2sysex.py -------------------------------------------------------------------------------- /parasites/tools/hexfile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tools/hexfile/hexfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tools/hexfile/hexfile.py -------------------------------------------------------------------------------- /parasites/tools/learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tools/learning/som.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tools/learning/som.py -------------------------------------------------------------------------------- /parasites/tools/midi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tools/midi/midifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tools/midi/midifile.py -------------------------------------------------------------------------------- /parasites/tools/optimization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/tools/optimization/munkres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/tools/optimization/munkres.py -------------------------------------------------------------------------------- /parasites/volts/hardware_design/pcb/volts_v01.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/volts/hardware_design/pcb/volts_v01.brd -------------------------------------------------------------------------------- /parasites/volts/hardware_design/pcb/volts_v01.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/volts/hardware_design/pcb/volts_v01.sch -------------------------------------------------------------------------------- /parasites/warps/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /parasites/warps/bootloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/warps/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/warps/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/bootloader/makefile -------------------------------------------------------------------------------- /parasites/warps/cv_scaler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/cv_scaler.cc -------------------------------------------------------------------------------- /parasites/warps/cv_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/cv_scaler.h -------------------------------------------------------------------------------- /parasites/warps/drivers/adc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/adc.cc -------------------------------------------------------------------------------- /parasites/warps/drivers/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/adc.h -------------------------------------------------------------------------------- /parasites/warps/drivers/codec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/codec.cc -------------------------------------------------------------------------------- /parasites/warps/drivers/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/codec.h -------------------------------------------------------------------------------- /parasites/warps/drivers/debug_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/debug_pin.h -------------------------------------------------------------------------------- /parasites/warps/drivers/debug_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/debug_port.cc -------------------------------------------------------------------------------- /parasites/warps/drivers/debug_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/debug_port.h -------------------------------------------------------------------------------- /parasites/warps/drivers/leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/leds.cc -------------------------------------------------------------------------------- /parasites/warps/drivers/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/leds.h -------------------------------------------------------------------------------- /parasites/warps/drivers/normalization_probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/normalization_probe.h -------------------------------------------------------------------------------- /parasites/warps/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/warps/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/switches.h -------------------------------------------------------------------------------- /parasites/warps/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/system.cc -------------------------------------------------------------------------------- /parasites/warps/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/system.h -------------------------------------------------------------------------------- /parasites/warps/drivers/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/drivers/version.h -------------------------------------------------------------------------------- /parasites/warps/dsp/filter_bank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/filter_bank.cc -------------------------------------------------------------------------------- /parasites/warps/dsp/filter_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/filter_bank.h -------------------------------------------------------------------------------- /parasites/warps/dsp/limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/limiter.h -------------------------------------------------------------------------------- /parasites/warps/dsp/modulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/modulator.cc -------------------------------------------------------------------------------- /parasites/warps/dsp/modulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/modulator.h -------------------------------------------------------------------------------- /parasites/warps/dsp/oscillator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/oscillator.cc -------------------------------------------------------------------------------- /parasites/warps/dsp/oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/oscillator.h -------------------------------------------------------------------------------- /parasites/warps/dsp/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/parameters.h -------------------------------------------------------------------------------- /parasites/warps/dsp/quadrature_oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/quadrature_oscillator.h -------------------------------------------------------------------------------- /parasites/warps/dsp/quadrature_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/quadrature_transform.h -------------------------------------------------------------------------------- /parasites/warps/dsp/sample_rate_conversion_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/sample_rate_conversion_filters.h -------------------------------------------------------------------------------- /parasites/warps/dsp/sample_rate_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/sample_rate_converter.h -------------------------------------------------------------------------------- /parasites/warps/dsp/vocoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/vocoder.cc -------------------------------------------------------------------------------- /parasites/warps/dsp/vocoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/dsp/vocoder.h -------------------------------------------------------------------------------- /parasites/warps/hardware_design/Warps.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/hardware_design/Warps.xlsx -------------------------------------------------------------------------------- /parasites/warps/hardware_design/panel/warps.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/hardware_design/panel/warps.ai -------------------------------------------------------------------------------- /parasites/warps/hardware_design/panel/warps.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/hardware_design/panel/warps.dwg -------------------------------------------------------------------------------- /parasites/warps/hardware_design/pcb/warps_v30.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/hardware_design/pcb/warps_v30.brd -------------------------------------------------------------------------------- /parasites/warps/hardware_design/pcb/warps_v30.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/hardware_design/pcb/warps_v30.sch -------------------------------------------------------------------------------- /parasites/warps/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/makefile -------------------------------------------------------------------------------- /parasites/warps/meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/meter.h -------------------------------------------------------------------------------- /parasites/warps/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/resources.cc -------------------------------------------------------------------------------- /parasites/warps/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/resources.h -------------------------------------------------------------------------------- /parasites/warps/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/warps/resources/filter_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/resources/filter_bank.py -------------------------------------------------------------------------------- /parasites/warps/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/warps/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/resources/resources.py -------------------------------------------------------------------------------- /parasites/warps/resources/timbre.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/resources/timbre.raw -------------------------------------------------------------------------------- /parasites/warps/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/warps/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/settings.cc -------------------------------------------------------------------------------- /parasites/warps/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/settings.h -------------------------------------------------------------------------------- /parasites/warps/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/test/makefile -------------------------------------------------------------------------------- /parasites/warps/test/warps_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/test/warps_test.cc -------------------------------------------------------------------------------- /parasites/warps/tools/generate_src_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/tools/generate_src_filters.py -------------------------------------------------------------------------------- /parasites/warps/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/ui.cc -------------------------------------------------------------------------------- /parasites/warps/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/ui.h -------------------------------------------------------------------------------- /parasites/warps/warps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/warps/warps.cc -------------------------------------------------------------------------------- /parasites/yarns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/yarns/bootloader/bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/bootloader/bootloader.cc -------------------------------------------------------------------------------- /parasites/yarns/bootloader/characters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/bootloader/characters.cc -------------------------------------------------------------------------------- /parasites/yarns/bootloader/characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/bootloader/characters.h -------------------------------------------------------------------------------- /parasites/yarns/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/bootloader/makefile -------------------------------------------------------------------------------- /parasites/yarns/drivers/channel_leds.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/channel_leds.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/channel_leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/channel_leds.h -------------------------------------------------------------------------------- /parasites/yarns/drivers/dac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/dac.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/dac.h -------------------------------------------------------------------------------- /parasites/yarns/drivers/display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/display.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/display.h -------------------------------------------------------------------------------- /parasites/yarns/drivers/encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/encoder.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/encoder.h -------------------------------------------------------------------------------- /parasites/yarns/drivers/gate_output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/gate_output.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/gate_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/gate_output.h -------------------------------------------------------------------------------- /parasites/yarns/drivers/midi_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/midi_io.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/midi_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/midi_io.h -------------------------------------------------------------------------------- /parasites/yarns/drivers/switches.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/switches.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/switches.h -------------------------------------------------------------------------------- /parasites/yarns/drivers/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/system.cc -------------------------------------------------------------------------------- /parasites/yarns/drivers/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/drivers/system.h -------------------------------------------------------------------------------- /parasites/yarns/hardware_design/Yarns.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/hardware_design/Yarns.xlsx -------------------------------------------------------------------------------- /parasites/yarns/hardware_design/panel/yarns.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/hardware_design/panel/yarns.ai -------------------------------------------------------------------------------- /parasites/yarns/hardware_design/panel/yarns.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/hardware_design/panel/yarns.dwg -------------------------------------------------------------------------------- /parasites/yarns/hardware_design/pcb/yarns_v03.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/hardware_design/pcb/yarns_v03.brd -------------------------------------------------------------------------------- /parasites/yarns/hardware_design/pcb/yarns_v03.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/hardware_design/pcb/yarns_v03.sch -------------------------------------------------------------------------------- /parasites/yarns/internal_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/internal_clock.h -------------------------------------------------------------------------------- /parasites/yarns/just_intonation_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/just_intonation_processor.cc -------------------------------------------------------------------------------- /parasites/yarns/just_intonation_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/just_intonation_processor.h -------------------------------------------------------------------------------- /parasites/yarns/layout_configurator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/layout_configurator.cc -------------------------------------------------------------------------------- /parasites/yarns/layout_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/layout_configurator.h -------------------------------------------------------------------------------- /parasites/yarns/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/makefile -------------------------------------------------------------------------------- /parasites/yarns/midi_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/midi_handler.cc -------------------------------------------------------------------------------- /parasites/yarns/midi_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/midi_handler.h -------------------------------------------------------------------------------- /parasites/yarns/multi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/multi.cc -------------------------------------------------------------------------------- /parasites/yarns/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/multi.h -------------------------------------------------------------------------------- /parasites/yarns/part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/part.cc -------------------------------------------------------------------------------- /parasites/yarns/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/part.h -------------------------------------------------------------------------------- /parasites/yarns/resources.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/resources.cc -------------------------------------------------------------------------------- /parasites/yarns/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/resources.h -------------------------------------------------------------------------------- /parasites/yarns/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/yarns/resources/characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/resources/characters.py -------------------------------------------------------------------------------- /parasites/yarns/resources/lookup_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/resources/lookup_tables.py -------------------------------------------------------------------------------- /parasites/yarns/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/resources/resources.py -------------------------------------------------------------------------------- /parasites/yarns/resources/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/resources/waveforms.py -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/README -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/app.yaml -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/index.yaml -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/main.py -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/music/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/music/scala/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/music/scala/scala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/music/scala/scala.py -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/static/bg_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/static/bg_main.jpg -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/static/db_yarns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/static/db_yarns.png -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/static/divider_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/static/divider_big.jpg -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/static/favicon.ico -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/static/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/static/logo.jpg -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/static/main.css -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/templates/base.html -------------------------------------------------------------------------------- /parasites/yarns/scale_editor/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/scale_editor/templates/index.html -------------------------------------------------------------------------------- /parasites/yarns/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/settings.cc -------------------------------------------------------------------------------- /parasites/yarns/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/settings.h -------------------------------------------------------------------------------- /parasites/yarns/song/song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/song/song.h -------------------------------------------------------------------------------- /parasites/yarns/storage_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/storage_manager.cc -------------------------------------------------------------------------------- /parasites/yarns/storage_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/storage_manager.h -------------------------------------------------------------------------------- /parasites/yarns/ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/ui.cc -------------------------------------------------------------------------------- /parasites/yarns/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/ui.h -------------------------------------------------------------------------------- /parasites/yarns/voice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/voice.cc -------------------------------------------------------------------------------- /parasites/yarns/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/voice.h -------------------------------------------------------------------------------- /parasites/yarns/yarns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/parasites/yarns/yarns.cc -------------------------------------------------------------------------------- /res/Cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/res/Cycles.png -------------------------------------------------------------------------------- /res/Tapeworm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/res/Tapeworm.png -------------------------------------------------------------------------------- /res/Wasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/res/Wasp.png -------------------------------------------------------------------------------- /src/AepelzensParasites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/src/AepelzensParasites.cpp -------------------------------------------------------------------------------- /src/AepelzensParasites.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/src/AepelzensParasites.hpp -------------------------------------------------------------------------------- /src/Tapeworm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/src/Tapeworm.cpp -------------------------------------------------------------------------------- /src/Tides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/src/Tides.cpp -------------------------------------------------------------------------------- /src/Warps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aepelzen/AepelzensParasites/HEAD/src/Warps.cpp --------------------------------------------------------------------------------