| 1234567891011121314151617181920212223242526272829303132 | 
							- #lang reader modmark_br.rkt
 
- # Patch Spec
 
- # Representing an approximation of
 
- # a 909 kick. Module specs are imported
 
- # but don't yet exist
 
- Title: Kick Drum
 
- # By default "./modules" is included in the module path
 
- ModuleDir "/home/swatson/Repos/modular-markup/"
 
- import Module::BlueLantern::AsteroidOperatorVCF as VCF
 
- import Module::MakeNoise::Maths
 
- import Module::ALM::TangleQuartet as VCA
 
- import Module::Generic::Output
 
- set VCF.Pluck = on
 
- set VCF.Freq.position = 7
 
- set Maths.Cycle[1] = on
 
- set Maths.Rise[1].position = 7
 
- set Maths.Fall[1].position = 1
 
- set Maths.LogExp.position = 5
 
- set VCA.Input1.position = 5
 
- # Output of Maths env into VCF freq modulation
 
- connect Maths.1f VCF.PluckMod
 
- # Output of VCF into VCA
 
- connect VCF.Output.Overdrive VCA.Input1
 
- # VCA into soundcard/output
 
- connect VCA.Input1 Output.1
 
 
  |