junopad - guyjbrown/bleepmanual GitHub Wiki
Juno pad (junopad)
Analogue synth pad, use with chorus
Author: Guy Brown
Parameters
| parameter | minimum | maximum | default | description |
|---|---|---|---|---|
cutoff |
0 | 16000 | 3500 | Controls the brightness of the sound |
basscut |
1 | 5 | 1.4 | Reduces the bass frequencies of the sound |
envelope |
0 | 1 | 0.18 | Controls how long it takes the sound to decay |
resonance |
0 | 20 | 0 | Controls the sharpness of the filter usually set low for this sound |
detune |
0 | 0.03 | 0.006 | Controls the amount of detuning |
attack |
0 | 5 | 1 | attack time |
decay |
0 | 5 | 0.1 | decay time |
sustain |
0 | 1 | 1 | sustain level |
release |
0 | 5 | 1 | release time |
volume |
0 | 1 | 0.8 | volume |
WebAudio graph
graph TD;
vco2_id(["SAW-OSC:vco2"])-->mix_id("VCA:mix");
vco3_id(["SAW-OSC:vco3"])-->mix_id("VCA:mix");
vco4_id(["SAW-OSC:vco4"])-->mix_id("VCA:mix");
vco5_id(["SAW-OSC:vco5"])-->mix_id("VCA:mix");
vco6_id(["SAW-OSC:vco6"])-->mix_id("VCA:mix");
mix_id("VCA:mix")-->hpf_id["HPF:hpf"];
hpf_id["HPF:hpf"]-->lpf_id["LPF:lpf"];
lpf_id["LPF:lpf"]-->vca_id("VCA:vca");
vca_id("VCA:vca")-->audio_id("audio");
env_id[/"ADSR:env"\]-.->vca_id("VCA:vca");