gtr/midimother.scd

39 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-01-05 13:15:54 +01:00
"/home/rob/gtr/motherMIDISetup.scd".load;
2023-01-12 01:51:44 +01:00
2023-01-05 13:15:54 +01:00
TempoClock.default.tempo = 60/60;
2023-01-12 01:51:44 +01:00
~xx = (
2023-01-05 13:15:54 +01:00
Pdef(\m_1).play(quant: 4); // TOP MOTHER
2023-01-12 01:51:44 +01:00
Pdef(\m_1_CC).play(quant:4); // CC 1
Pdef(\m_2).play(quant: 4); // BTM MOTHER NOTEON
Pdef(\m_2_CC).play(quant:4); // CC 1
)
2023-01-05 13:15:54 +01:00
Pdef(\m_1).stop; // NOTEON
2023-01-12 01:51:44 +01:00
Pdef(\m_1_CC).stop;
Pdef(\m_2).stop; // NOTEON
Pdef(\m_2_CC).stop;
////////////////////////////////////////
Pdef(\m_1).play(quant: 4); // TOP MOTHER
2023-01-05 13:15:54 +01:00
Pdef(\m_1_CC).play(quant:4); // CC 1
2023-01-12 01:51:44 +01:00
Pdef(\m_1).stop; // NOTEON
2023-01-05 13:15:54 +01:00
Pdef(\m_1_CC).stop;
// --------------- /
Pdef(\m_2).play(quant: 4); // BTM MOTHER NOTEON
Pdef(\m_2_CC).play(quant:4); // CC 1
2023-01-12 01:51:44 +01:00
Pdef(\m_2).stop; // NOTEON
2023-01-05 13:15:54 +01:00
Pdef(\m_2_CC).stop;
//////////////////////////////
Pbindef(\m_1,\scale,~s1,\degree,~d4,\dur,~r1,\octave,~o2, \mtranspose,0);
Pbindef(\m_2,\scale,~s1,\degree,~d4,\dur,~r2,\octave,~o2, \mtranspose,0);
2023-01-12 01:51:44 +01:00
2023-01-05 13:15:54 +01:00
// indiviudal controls //////////////
Pbindef(\m_1, \root, 4); Pbindef(\m_2, \root, 4);
Pbindef(\m_1, \mtranspose, 0); Pbindef(\m_2, \mtranspose, 0);
Pbindef(\m_1, \scale, ~s1 ); Pbindef(\m_2, \scale, ~s1);
Pbindef(\m_1, \octave, ~o0); Pbindef(\m_2, \octave, 2);
Pbindef(\m_1, \dur, ~r4); Pbindef(\m_2, \dur, ~r0);
2023-01-12 01:51:44 +01:00
Pbindef(\m_1, \degree, ~ddd); Pbindef(\m_2, \degree, ~ddd);
2023-01-05 13:15:54 +01:00