Lab 3: "Hybrid" Instruments

Download this lab's code here.

The goal of this lab is to make a musical instrument combining acoustic sound excitations with digital elements. Sounds excitations are fed into a digital resonator (e.g., a waveguide, a comb filter, a reverb, etc.). The parameters of the resonator can be changed to modify the properties of the generated sound.

Connecting a Microphone or a Piezo to ChucK

adc => dac;

which will connect the audio input of your system to the output. Be careful with that when prototyping with headphones as it might create feedback!

adc => dac;

while(true){
  10::ms => now;
}

Exercise: Adding Sensor Control to the Previous Instruments

Assignment (Due on Feb. 1, 2018)