-
Notifications
You must be signed in to change notification settings - Fork 0
/
2xdrum_slice_1x_16step_cv_1x4poly_midi_sequencer.ini
2830 lines (2478 loc) · 66.8 KB
/
2xdrum_slice_1x_16step_cv_1x4poly_midi_sequencer.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 2 CV Drum slicer + 1 3CV 16 step + 1 4 Poly Midi Sequencers
# This Droid patch creates 4 sequencers.
# 2 Drum slice sequencers for slicing and sequencing a 1 bar drum loop on Assimil8or using a M4.
# One 16 step Sequencer like the Verbos Multistage with an additional CV track ALT_CV
# One 4 polyphony midi sequencer.
#
#
# The Drum silce sequencers provides 8/16/32 slices (selectable via a switch) of a 1 bar drumloop using the M4 notches to select a sample start for each of the 16 steps and additionally the rand cv, gate prob, ratchets, velocity, pitch and timing for creating grooves on 4 repeating 16th clock ticks.
#
# Using the MENU you can record 2 faders: autoreset and pattern changes on the fly by hitting record and selecting the length of the recording with the rotary knob.
#
# Each sequencer has 4 presets where a sequence can be stored in.
#
# When you hit record, you can record your button switches between presets using the record.
#
# You can switch between the sequence or manual mode, similar as the ER101.
# INPUTS:
# I1: [KB GT]
# I2: [KB CV]
# I3: [GT Len]
# I4: [CLK IN]
# OUTPUTS:
# O1: [PTCH1]
# O2: [SLC1]
# O4: [CV ALT]
# O5: [PTCH2]
# O6: [SLC2]
# O8: [MSTAGE]
# GATES ON X7:
# G1: [GATE1]
# G2: [GATE2]
# G3: [GATE3]
# G7: [GT REC]
# G8: [CLK GT]
# GATES ON G8 1:
# G1.1: [GTE1]
# G1.2: [GTE2]
# G1.7: [RESET]
# G1.8: [CLOCK]
# CONTROLLER 1:
# P1.1: [CLOCK]
# P1.2: [TRANSPOSE]
# P1.3: [ROOT]
# P1.4: [DEGREE]
# CONTROLLER 2:
# P2.1: [GATELEN]
# P2.2: [AUTORST]
# P2.3: [PATTERN]
# P2.4: [CLKDIV]
# CONTROLLER 3:
# S3.1: [BAR LENGTH] 1/2/4/8/32/64/128 bars
# S3.2: [REC BNK/WAVE] Select multible banks of preset recordings
# S3.3: [8/16/32] Number of Slices SQ1
# S3.5: [8/16/32] Number of Slices SQ2
# S3.6: [V div] Main CV divider 0-5V
# S3.7: [BYPASS] bypass Midi recording
# S3.10: [SQ/MAN] Turn of preset recording
# CONTROLLER 4:
# B4.1: [SLICE]
# B4.2: [RND CV]
# B4.3: [PROB]
# B4.4: [RAT/LEN]
# B4.5: [PRESET1]
# B4.6: [P 2]
# B4.7: [P 3]
# B4.8: [P 4]
# B4.9: [REC_PT1]
# B4.10: [PT2]
# B4.11: [PT3]
# B4.12: [PT4]
# B4.13: [STEP 1]
# B4.14: [2]
# B4.15: [3]
# B4.16: [4]
# B4.17: [COPY]
# B4.18: [PASTE]
# B4.19: [PASTE_F]
# B4.20: [FORM]
# B4.21: [MUTE 1]
# B4.22: [MUTE 2]
# B4.23: [MUTE 3]
# B4.24: [MUTE 4]
# B4.25: [SQ1]
# B4.26: [SQ2]
# B4.27: [SQ3]
# B4.28: [SQ4]
# B4.29: [RESET]
# B4.30: [PLAY]
# B4.31: [REC]
# B4.32: [SET LEN]
# CONTROLLER 5:
# B5.1: [ALT_CV]
# B5.2: [MOD/SLW]
# B5.3: [PIT/LEN]
# B5.4: [TIMING]
# B5.5: [MUT_CV]
# B5.6: [MUT_SL]
# B5.7: [MUT_GT]
# B5.8: [MENU]
# B5.9: [PT5]
# B5.10: [PT6]
# B5.11: [PT7]
# B5.12: [PT8]
# B5.13: [5]
# B5.14: [6]
# B5.15: [7]
# B5.16: [8]
# B5.29: [STP1-8] Select fader steps
# B5.30: [9-16]
# B5.31: [17-24]
# B5.32: [25-32]
# CONTROLLER 6:
# B6.1: [NUDGE]
# B6.2: [-+]
[m4]
[m4]
[s10]
[b32]
[b32]
[p4b2]
# -------------------------------------------------
# GLOBAL SETTINGS
# -------------------------------------------------
[droid]
ledbrightness = 0.5
m4notchpower = 0.1
# -------------------------------------------------
# MIDI
# -------------------------------------------------
# Get the incoming MIDI clock via USB
[midiin]
usb = 1
clock = _MIDI_USB_CLOCK
start = _MIDI_USB_IN_RESET
# This circuit detects an incoming MIDI clock via USB. If the clock signal is active at least once every two seconds,
# we give the MIDI clock precedence over the internal clock.
[clocktool]
clock = _MIDI_USB_CLOCK
gatelength = 2
output = _MIDI_USB_CLOCK_PRESENT
# Get the incoming MIDI clock via TRS
[midiin]
usb = 0
clock = _MIDI_DIN_CLOCK
start = _MIDI_DIN_IN_RESET
# we give the MIDI clock precedence over the internal clock.
[clocktool]
clock = _MIDI_DIN_CLOCK
gatelength = 2
output = _MIDI_DIN_CLOCK_PRESENT
# -------------------------------------------------
# CLOCKS
# -------------------------------------------------
# LFO for internal clock
# The pulse width is super short so that a clock reset will immediately take effect
[lfo]
rate = _SET_TEMPO * 0.5
sync = _RESET
square = _MAIN_CLOCK
pulsewidth = 0.1
# Create a number for the clock to use
[mixer]
input1 = _MIDI_USB_CLOCK_PRESENT * 1
input2 = _MIDI_DIN_CLOCK_PRESENT * 2
output = _MIDI_CLOCK_SWITCH
# Select the clock to use. If both MID clocks are present, the clock switch is 3.
# In this case we use the USB MIDI clock.
[switch]
input1 = _MAIN_CLOCK
input2 = _MIDI_USB_CLOCK
input3 = _MIDI_DIN_CLOCK
input4 = _MIDI_USB_CLOCK
offset = _MIDI_CLOCK_SWITCH
output1 = N4
# Beatstep Pro Clock in
# [copy]
# input = G1.5
# output = _MAIN_CLOCK
[button]
button = B5.8
onvalue = 1
offvalue = 0
led = L5.8
# X4
# [clocktool]
# divide = 4
# clock = _MAIN_CLOCK
# reset = B4.29
# output = _CLOCK_BEAT
# 1/32
# [clocktool]
# multiply = 0.5
# clock = _MAIN_CLOCK
# reset = B4.29
# output = _CLOCK_32TH
# 1/16
[clocktool]
multiply = 1
clock = _MAIN_CLOCK
reset = _RESET
output = _CLOCK_16TH
# 1/8
# [clocktool]
# divide = 2
# clock = _MAIN_CLOCK
# reset = B4.29
# output = _CLOCK_8TH
# 1/4
[clocktool]
dutycycle = 0.5
divide = 4
clock = _MAIN_CLOCK
reset = _RESET
output = _CLOCK_4TH
# [lfo]
# waveform = S3.2
# hz = 20 * _SET_TEMPO
# level = 1
# bipolar = 0
# square = _MAIN_CLOCK
[clocktool]
clock = _SQ3_CLOCK_TIMING
multiply = 2
reset = _RESET
output = _CLOCK_M2
[clocktool]
clock = _SQ3_CLOCK_TIMING
divide = 2
reset = _RESET
output = _CLOCK_D2
[clocktool]
clock = _SQ3_CLOCK_TIMING
divide = 4
reset = _RESET
output = _CLOCK_D4
[clocktool]
clock = _SQ3_CLOCK_TIMING
divide = 8
reset = _RESET
output = _CLOCK_D8
[clocktool]
clock = _SQ3_CLOCK_TIMING
divide = 16
reset = _RESET
output = _CLOCK_D16
[clocktool]
clock = _SQ3_CLOCK_TIMING
divide = 32
reset = _RESET
output = _CLOCK_D32
[clocktool]
dutycycle = 0.1
clock = _MAIN_CLOCK
divide = 4
reset = _RESET
output = _CLOCK_BEAT
[copy]
input = _SQ3_CLOCK_TIMING
output = G1.8
# -------------------------------------------------
# RESET
# -------------------------------------------------
# Reset can be done via MIDI, via input I8 and by pressing the play button
[logic]
input1 = _MIDI_USB_IN_RESET
input2 = _MIDI_DIN_IN_RESET
input3 = B4.29
input4 = I8
or = _RESET
# Provide a copy of the reset to output 8, so you can attach other modules and have them reset when our sequencer starts
[copy]
input = _RESET
output = G1.7
# -------------------------------------------------
# RECORD/PLAY BUTTON
# -------------------------------------------------
# Record/Play button
[button]
button = B4.31
onvalue = 1
offvalue = 0
output = _START_RECORDING
inverted = _PLAY_RECORDING_MANUAL
# Flip back to Play Recording
[compare]
input = L4.31
compare = 0
ifequal = 1
else = _PLAY_RECORDING_MANUAL
output = _PLAY_RECORDING_V2
[logic]
xor = _PLAY_RECORDING
input1 = _PLAY_RECORDING_V2
input2 = _STOP_RECORDING
# Hold Start recording for 3.99 Beats to compare with Clock_BAR
[gatetool]
inputedge = _START_RECORDING
taptempo = _CLOCK_BEAT
gatelength = 3.99
outputgate = _PUNCH_IN
# Trigger Recording on BAR
[logic]
input1 = _CLOCK_BAR
input2 = _PUNCH_IN
and = _RECORD_IN_SYNC
[clocktool]
clock = _MAIN_CLOCK
reset = _RESET
divide = 16
output = _CLOCK_BAR
# Set stop trigger based on start recording+number of bars via switch
[triggerdelay]
clock = _CLOCK_BEAT
input = _RECORD_IN_SYNC
delay = 4 * _BARS
repeats = 1
output = _STOP_RECORDING
# Number of Bars
[switch]
input1 = 1
input2 = 2
input3 = 4
input4 = 8
input5 = 16
input6 = 32
input7 = 64
input8 = 128
offset = S3.1
output1 = _BARS
# Switch Play led based on selected recorder
[switch]
input1 = _LED_PLAY_SQ1
input2 = _LED_PLAY_SQ2
input3 = _LED_PLAY_SQ3
input4 = _LED_PLAY_SQ4
offset = _SEQUENCER_SELECTOR
output1 = _LED_PLAY
# Switch Record led based on selected recorder
# [switch]
# input1 = _LED_RECORD_SQ1
# input2 = _LED_RECORD_SQ2
# input3 = _LED_RECORD_SQ3
# input4 = _LED_RECORD_SQ4
# offset = _SEQUENCER_SELECTOR
# output1 = _LED_RECORD
# RECORD LED : ON or Blinking
[compare]
input = L4.31
compare = 1
ifequal = _LED_BLINKER
else = 0
output = L4.31
# PLAY LED : ON or Blinking
[compare]
input = _BYPASS_RECORDING
compare = 1
ifequal = _LED_BLINKER
else = _LED_PLAY
output = L4.30
# BYPASS Recorder Switch: up = Recorder, down = IN->OUT
[copy]
input = S3.7
output = _BYPASS_RECORDING
# -------------------------------------------------
# SEQ SELECTOR
# -------------------------------------------------
[buttongroup]
button1 = B4.25
button2 = B4.26
button3 = B4.27
button4 = B4.28
led1 = L4.25
led2 = L4.26
led3 = L4.27
led4 = L4.28
output = _SEQUENCER_SELECTOR
# -------------------------------------------------
# SEQ BUTTONS FADERMODE
# -------------------------------------------------
# Sequencers have different Fadermodes:
# Select SEQUENCER at the second bottom row, then select any Fadermode at the top to change the faders to that mode.
# SLICES
# RANDOM CV
# PROBABILITY
# RATCHET
# PRESET
# VELOCITY
# PITCH/Gate Length
# TIMING
[buttongroup]
button1 = B4.1
button2 = B4.2
button3 = B4.3
button4 = B4.4
button5 = B5.1
button6 = B5.2
button7 = B5.3
button8 = B5.4
button9 = B5.8
value4 = 5
value7 = 10 # Pitch
value8 = 98 # Timing
value9 = 99
led1 = L4.1
led2 = L4.2
led3 = L4.3
led4 = L4.4
led5 = L5.1
led6 = L5.2
led7 = L5.3
led8 = L5.4
led9 = L5.8
output = _SQ_FADERMODE
# -------------------------------------------------
# SEQ / FADERMODE ACTIVE
# Create internal cables for activated Sequencer/FaderMode to use for select. This helps prevent clashing of fadermodes
# -------------------------------------------------
# # Make the status "SQ 1 active" available in a cable
[copy]
input = L4.25
output = _SQ1_ACTIVE
# # Make the status "SQ 2 active" available in a cable
[copy]
input = L4.26
output = _SQ2_ACTIVE
# # Make the status "SQ 3 active" available in a cable
[copy]
input = L4.27
output = _SQ3_ACTIVE
# # Make the status "SQ 4 active" available in a cable
[copy]
input = B4.28
output = _SQ4_ACTIVE
# Make the status "menu active" available in a cable
[copy]
input = L5.8
output = _MENU_ACTIVE
# # Make the status "Timing Fader Mode active" available in a cable
[copy]
input = L5.4
output = _SQ_TIMING_ACTIVE
# Provide the information "neither to be added extra fadermode menu nor timing menu open" on a cable
[compare]
input = _SQ_TIMING_ACTIVE + _MENU_ACTIVE
compare = 0
ifequal = 1
else = 0
output = _MENU_INACTIVE
# Select faders for track 1 if the menu is inactive and track 1 is selected
[logic]
input1 = _MENU_INACTIVE
input2 = _SQ1_ACTIVE
and = _SQ1_SELECTED
# Select faders for track 1 if the menu is inactive and track 1 is selected
[logic]
input1 = _MENU_INACTIVE
input2 = _SQ2_ACTIVE
and = _SQ2_SELECTED
# Select faders for track 1 if the menu is inactive and track 1 is selected
[logic]
input1 = _MENU_INACTIVE
input2 = _SQ3_ACTIVE
and = _SQ3_SELECTED
# Select faders for track 1 if the menu is inactive and track 1 is selected
[logic]
input1 = _MENU_INACTIVE
input2 = _SQ4_ACTIVE
and = _SQ4_SELECTED
# -------------------------------------------------
# SEQ GLOBAL FADER MENU (faders 1-4)
# -------------------------------------------------
# Little LFO for the LED animation of the fader menu
[lfo]
hz = 1
offset = 0.2
level = 0.8
triangle = _MENU_LED_BRIGHTNESS
# Fader 1: Speed of the master clock
[motorfader]
fader = 1
select = _MENU_ACTIVE
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.1
output = _SET_TEMPO
# Fader 2: Global transposition
[motorfader]
fader = 2
notches = 13
select = _MENU_ACTIVE
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.22
output = _TRANSPOSITION
# Fader 3: Root note
[motorfader]
fader = 3
select = _MENU_ACTIVE
notches = 13
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.36
output = _MENU_ROOT
# Fader 4: Scale
# Selects the scale from the following list (1 is fader at bottom):
# 5: chromatic
# 4: phrygian minor
# 3: dorian minor
# 2: natural minor
# 1: major
[motorfader]
fader = 4
select = _MENU_ACTIVE
notches = 5
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.49
output = _DEGREE_OFFSET
# Maps the fader positions to the various scales
# You can use other scales as well (see the description of the input degree of motorfader
# for the numbers of the scales).
# The special number 12 is for switching to a chromatic scale
[switch]
input1 = 1
input2 = 7
input3 = 6
input4 = 9
input5 = 12
offset = _DEGREE_OFFSET
output1 = _MENU_DEGREE
# The chromatic scale is not a scale of motoquencer. It is simulated by selecting any scale (12 = 0 in this case) and
# enabling the five none-scale notes with the selectfillX inputs.
[compare]
input = _MENU_DEGREE
compare = 12
ifequal = 1
else = 0
output = _CHROMATIC_ENABLED
# -------------------------------------------------
# SEQ FADER MENU SQ 1 (faders 5-8)
# -------------------------------------------------
# Fader 5: Gate length
[motorfader]
fader = 5
select = _MENU_ACTIVE * _SQ1_ACTIVE
loadpreset = _SQ1_LOAD_PRESET
savepreset = _SQ1_SAVE_PRESET
preset = _SQ1_SELECT_PRESET
startvalue = 0.5
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.65
output = _SQ1_GATELEN
# Fader 8: Per track clock divider / multiplier
# 7: time / 32
# 6: time / 16
# 5: time / 8
# 4: quarter time
# 3: half time
# 2: normal clock
# 1: double time
[motorfader]
fader = 8
notches = 7
select = _MENU_ACTIVE * _SQ1_ACTIVE
loadpreset = _SQ1_LOAD_PRESET
savepreset = _SQ1_SAVE_PRESET
preset = _SQ1_SELECT_PRESET
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 1
output = _SQ1_TIMEDIV_NUM
[switch]
input1 = _CLOCK_M2
input2 = _SQ1_CLOCK_TIMING
input3 = _CLOCK_D2
input4 = _CLOCK_D4
input5 = _CLOCK_D8
input6 = _CLOCK_D16
input7 = _CLOCK_D32
offset = _SQ1_TIMEDIV_NUM
output1 = _SQ1_CLOCK
# -------------------------------------------------
# SQ1 RESET
# -------------------------------------------------
[buttongroup]
select = _MENU_ACTIVE
button1 = B2.1
button2 = B2.2
button3 = B2.3
button4 = B2.4
led1 = L2.1
led2 = L2.2
led3 = L2.3
led4 = L2.4
output = _ACTIVE_FADER
[compare]
input = _ACTIVE_FADER
compare = 1
ifequal = 1
else = 0
output = _SQ1_RESET_SELECTED
[compare]
input = _ACTIVE_FADER
compare = 2
ifequal = 1
else = 0
output = _SQ1_PATTERN_SELECTED
[recorder]
bypass = _SQ1_AUTORESET_RAW * _PLAY_RECORDING
playbutton = _PLAY_RECORDING
recordbutton = _RECORD_IN_SYNC
playled = L4.30
recordled = L4.31
clock = _MAIN_CLOCK
loop = 1
numberout = _SQ1_AUTORESET
numberin = _SQ1_AUTORESET_RAW
# Fader 6: Auto reset
[motorfader]
ledvalue = _SQ1_RESET_SELECTED
fader = 6
select = _MENU_ACTIVE * _SQ1_ACTIVE
loadpreset = _SQ1_LOAD_PRESET
savepreset = _SQ1_SAVE_PRESET
preset = _SQ1_SELECT_PRESET
notches = 17
output = _SQ1_AUTORESET_RAW
# -------------------------------------------------
# SQ PATTERN
# -------------------------------------------------
[recorder]
bypass = _SQ1_PATTERN_RAW * _SQ1_PATTERN_SELECTED
select = _MENU_ACTIVE * _SQ1_PATTERN_SELECTED
playbutton = _PLAY_RECORDING
recordbutton = _RECORD_IN_SYNC
playled = L4.30
recordled = L4.31
clock = _MAIN_CLOCK
loop = 1
numberout = _SQ1_PATTERN
numberin = _SQ1_PATTERN_RAW
# Fader 7: Play pattern
# 0: go step by step to the sequence (normal)
# 1: two steps forward, one step backward
# 2: double step forward, one step backward
# 3: double step forward, double step backward, single step forward
# 4: double step forward, single step forward, double step backward, single step forward
# 5: random single step forward or backward
# 6: go forward by a small random number of steps
# 7: random jump to any allowed (other) note
[motorfader]
fader = 7
notches = 8
select = _MENU_ACTIVE * _SQ1_ACTIVE
loadpreset = _SQ1_LOAD_PRESET
savepreset = _SQ1_SAVE_PRESET
preset = _SQ1_SELECT_PRESET
ledvalue = _SQ1_PATTERN_SELECTED
output = _SQ1_PATTERN_RAW
# -------------------------------------------------
# SEQ FADER MENU SQ 2 (faders 5-8)
# -------------------------------------------------
# Fader 5: Gate length
[motorfader]
fader = 5
select = _MENU_ACTIVE * _SQ2_SELECTED
preset = _SQ2_SELECT_PRESET
loadpreset = _SQ2_LOAD_PRESET
savepreset = _SQ2_SAVE_PRESET
startvalue = 0.5
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.65
output = _SQ2_GATELEN
# Fader 6: Auto reset
[motorfader]
fader = 6
select = _MENU_ACTIVE * _SQ2_SELECTED
preset = _SQ2_SELECT_PRESET
loadpreset = _SQ2_LOAD_PRESET
savepreset = _SQ2_SAVE_PRESET
notches = 17
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.7
output = _SQ2_AUTORESET
# Fader 7: Play pattern
# 0: go step by step to the sequence (normal)
# 1: two steps forward, one step backward
# 2: double step forward, one step backward
# 3: double step forward, double step backward, single step forward
# 4: double step forward, single step forward, double step backward, single step forward
# 5: random single step forward or backward
# 6: go forward by a small random number of steps
# 7: random jump to any allowed (other) note
[motorfader]
fader = 7
notches = 8
select = _MENU_ACTIVE * _SQ2_SELECTED
preset = _SQ2_SELECT_PRESET
loadpreset = _SQ2_LOAD_PRESET
savepreset = _SQ2_SAVE_PRESET
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.85
output = _SQ2_PATTERN
# Fader 8: Per track clock divider / multiplier
# 7: time / 32
# 6: time / 16
# 5: time / 8
# 4: quarter time
# 3: half time
# 2: normal clock
# 1: double time
[motorfader]
fader = 8
notches = 7
select = _MENU_ACTIVE * _SQ2_SELECTED
preset = _SQ2_SELECT_PRESET
loadpreset = _SQ2_LOAD_PRESET
savepreset = _SQ2_SAVE_PRESET
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 1
output = _SQ2_TIMEDIV_NUM
[switch]
input1 = _CLOCK_M2
input2 = _SQ2_CLOCK_TIMING
input3 = _CLOCK_D2
input4 = _CLOCK_D4
input5 = _CLOCK_D8
input6 = _CLOCK_D16
input7 = _CLOCK_D32
offset = _SQ2_TIMEDIV_NUM
output1 = _SQ2_CLOCK
# -------------------------------------------------
# SEQ FADER MENU SQ 3 (faders 5-8)
# -------------------------------------------------
# Fader 5: Gate length
[motorfader]
fader = 5
select = _MENU_ACTIVE * _SQ3_SELECTED
preset = _SQ3_SELECT_PRESET
savepreset = _SQ3_SAVE_PRESET
loadpreset = _SQ3_LOAD_PRESET
startvalue = 0.5
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.65
output = _SQ3_GATELEN
# Fader 6: Auto reset
[motorfader]
fader = 6
select = _MENU_ACTIVE * _SQ3_SELECTED
preset = _SQ3_SELECT_PRESET
savepreset = _SQ3_SAVE_PRESET
loadpreset = _SQ3_LOAD_PRESET
notches = 17
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.7
output = _SQ3_AUTORESET
# Fader 7: Play pattern
# 0: go step by step to the sequence (normal)
# 1: two steps forward, one step backward
# 2: double step forward, one step backward
# 3: double step forward, double step backward, single step forward
# 4: double step forward, single step forward, double step backward, single step forward
# 5: random single step forward or backward
# 6: go forward by a small random number of steps
# 7: random jump to any allowed (other) note
[motorfader]
preset = _SQ3_SELECT_PRESET
savepreset = _SQ3_SAVE_PRESET
loadpreset = _SQ3_LOAD_PRESET
fader = 7
notches = 8
select = _MENU_ACTIVE * _SQ3_SELECTED
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 0.85
output = _SQ3_PATTERN
# Fader 8: Per track clock divider / multiplier
# 7: time / 32
# 6: time / 16
# 5: time / 8
# 4: quarter time
# 3: half time
# 2: normal clock
# 1: double time
[motorfader]
preset = _SQ3_SELECT_PRESET
savepreset = _SQ3_SAVE_PRESET
loadpreset = _SQ3_LOAD_PRESET
fader = 8
notches = 7
select = _MENU_ACTIVE * _SQ3_SELECTED
ledvalue = _MENU_LED_BRIGHTNESS
ledcolor = 1
output = _SQ3_TIMEDIV_NUM
[switch]
input1 = _CLOCK_M2
input2 = _SQ3_CLOCK_TIMING
input3 = _CLOCK_D2
input4 = _CLOCK_D4
input5 = _CLOCK_D8
input6 = _CLOCK_D16
input7 = _CLOCK_D32
offset = _SQ3_TIMEDIV_NUM
output1 = _SQ3_CLOCK
# -------------------------------------------------
# SEQ BUTTONS MUTE
# -------------------------------------------------
# MUTE SQ1 (inverted to act as LED on = UNMUTED)
[button]
button = B4.21
led = L4.21
inverted = _SQ1_MUTE
# MUTE SQ2
[button]
button = B4.22
led = L4.22
inverted = _SQ2_MUTE
# MUTE SQ3
[button]
button = B4.23
led = L4.23
inverted = _SQ3_MUTE
# MUTE SQ3
[button]
button = B4.24
led = L4.24
inverted = _SQ4_MUTE
# -------------------------------------------------
# SEQ PAGE SWITCHER
# Created a fancy LED blinking page follower to be able to follow the FORM AABC which page is currently playing.
# -------------------------------------------------
# Switch active Led page based by PAGE output from FROM (need to be in reverse)
[switch]
output4 = _CURRENT_PAGE1
output3 = _CURRENT_PAGE2
output2 = _CURRENT_PAGE3
output1 = _CURRENT_PAGE4
offset = _CURRENT_PAGE * -1
input1 = _CLOCK_4TH * -0.5
# Switch Current_page cable based on active sequence
[switch]
input1 = _SQ1_CURRENT_PAGE
input2 = _SQ2_CURRENT_PAGE
input3 = _SQ8_CURRENT_PAGE
offset = _SEQUENCER_SELECTOR
output1 = _CURRENT_PAGE
# Switch active Led page based by PAGE output from FROM (need to be in reverse)
[switch]
output4 = _PAGE1
output3 = _PAGE2
output2 = _PAGE3
output1 = _PAGE4
offset = _PAGE_SWITCHER * -1
input1 = 1
# Turn Led ON if PAGE1 is selected, else blink current page running
[copy]
input = _CURRENT_PAGE1 + _PAGE1
output = L5.32
# Turn Led ON if PAGE2 is selected, else blink current page running
[copy]
input = _CURRENT_PAGE2 + _PAGE2
output = L5.31
# Turn Led ON if PAGE3 is selected, else blink current page running
[copy]
input = _CURRENT_PAGE3 + _PAGE3
output = L5.30
# Turn Led ON if PAGE4 is selected, else blink current page running
[copy]
input = _CURRENT_PAGE4 + _PAGE4
output = L5.29
# Switch to Steps 1-8/9-16/17-24/25-32
[buttongroup]
button1 = B5.29
button2 = B5.30
button3 = B5.31
button4 = B5.32