forked from jpgsloan/supergrids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuperGrids.ini
4134 lines (3755 loc) · 81.8 KB
/
SuperGrids.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
# OUTPUTS:
# O1: [CV 1]
# O2: [CV 2]
# O3: [CV 3]
# O4: [CV 4]
# O5: [CV 5]
# O6: [CV 6]
# O7: [CV 7]
# O8: [CV 8]
# GATES:
# G1: [Gate 1]
# G2: [2]
# G3: [3]
# G4: [4]
# G5: [5]
# G6: [6]
# G7: [7]
# G8: [8]
# G9: [Clock]
# G10: [Reset]
# CONTROLLER 1:
# B1.1: [Play]
# B1.2: [Gates]
# B1.3: [Reset]
# B1.4: [Proj]
# B1.5: [Step 1]
# B1.6: [2]
# B1.7: [9]
# B1.8: [10]
# CONTROLLER 2:
# B2.1: [Alt]
# B2.2: [CV]
# B2.3: [Groove]
# B2.4: [Perf]
# B2.5: [3]
# B2.6: [4]
# B2.7: [11]
# B2.8: [12]
# CONTROLLER 3:
# B3.1: [Select 1]
# B3.2: [2]
# B3.3: [5]
# B3.4: [6]
# B3.5: [5]
# B3.6: [6]
# B3.7: [13]
# B3.8: [14]
# CONTROLLER 4:
# B4.1: [3]
# B4.2: [4]
# B4.3: [7]
# B4.4: [8]
# B4.5: [7]
# B4.6: [8]
# B4.7: [15]
# B4.8: [16]
[p2b8]
[p2b8]
[p2b8]
[p2b8]
# -------------------------------------------------
# Midi In
# -------------------------------------------------
# midiin
[midiin]
channel = _MIDI_IN_CHANNEL + 1
usb = 0
notegap = 1
notegate1 = _MIDI_IN_GATE_1
notegate2 = _MIDI_IN_GATE_2
notegate3 = _MIDI_IN_GATE_3
notegate4 = _MIDI_IN_GATE_4
notegate5 = _MIDI_IN_GATE_5
notegate6 = _MIDI_IN_GATE_6
notegate7 = _MIDI_IN_GATE_7
notegate8 = _MIDI_IN_GATE_8
clock = _MIDI_CLK
stop = _MIDI_RESET
# -------------------------------------------------
# Mode Selector
# -------------------------------------------------
# # Button group for mode select of knobs
[buttongroup]
minactive = 1
maxactive = 1
button1 = B1.2
button2 = B2.1
button3 = B2.2
button4 = B1.4
button5 = B2.3
button6 = B2.4
value1 = 1
value2 = 2
value3 = 3
value4 = 4
value5 = 5
value6 = 6
led1 = L1.2
led2 = L2.1
led3 = L2.2
led4 = L1.4
led5 = L2.3
led6 = L2.4
buttonpress = _MDE_PRESSED
output = _KNOB_MDE_SEL
[triggerdelay]
input = _MDE_PRESSED
delay = 0
gatelength = 0.06
output = _MDE_PRESSED_GATE
[logic]
input1 = _MDE_PRESSED_GATE
negated = _MDE_PRSS_G_NEG
[compare]
input = _KNOB_MDE_SEL
compare = 1
ifequal = 1
else = 0
output = _MAIN_GATES_MDE
[compare]
input = _KNOB_MDE_SEL
compare = 2
ifequal = 1
else = 0
output = _ALT_G_MDE
[compare]
input = _KNOB_MDE_SEL
compare = 3
ifequal = 1
else = 0
output = _CV_MDE
[compare]
input = _KNOB_MDE_SEL
compare = 4
ifequal = 1
else = 0
output = _PROJ_MDE
[compare]
input = _KNOB_MDE_SEL
compare = 5
ifequal = 1
else = 0
output = _GRVE_MDE
[compare]
input = _KNOB_MDE_SEL
compare = 6
ifequal = 1
else = 0
output = _PERF_MDE
# -------------------------------------------------
# Project Mode
# -------------------------------------------------
# Clock
[pot]
select = _PROJ_MDE
reset = _CLR_PROJECT
pot = P1.1
ledgauge = 0
outputscale = 0.4
startvalue = 0.5
notch = 0.1
output = _RATE
onchange = _RTE_CHNG
# Show the bpm on the X1 register for 1 second whenever the pot is turned.
[triggerdelay]
input = _RTE_CHNG
delay = 0
gatelength = 1
output = _SHW_RTE
[math]
input1 = _RATE * 600
input2 = 1000
quotient = _BPM
[copy]
input = _BPM * _SHW_RTE
output = X1
# only allow 60 values per volt, to match the precision of bpm (1HZ is 60BPM)
# (Also we can only show 3 digits in the X1 register anyway, so incrememnts of 1 bpm at a time)
[quantizer]
input = _RATE
steps = 60
output = _RATE_QUAN
# 0 BPM to 240BPM at 16th notes. multiply by 10 to make into hz, then by 4 for 16th notes granularity.
[lfo]
hz = _RATE_QUAN * 40
square = _INTERNAL_CLK_RAW
# If rate pot is mostly counterclockwise, then we start using midi external clock instead of the internal lfo.
[compare]
input = _RATE
compare = 0.05
ifless = 1
else = 0
output = _INT_OR_EXT_CLK
[switch]
input1 = _INTERNAL_CLK_RAW
input2 = _MIDI_CLK
offset = _INT_OR_EXT_CLK
output1 = _CLK_NON_STOP
# Play/Stop button
[button]
button = B1.1
onvalue = _CLK_NON_STOP
offvalue = 0
led = L1.1
output = _STRAIGHT_CLK
# Clock delay in case you need to compensate for things like midi latency
[pot]
select = _PROJ_MDE
reset = _CLR_PROJECT
pot = P2.1
outputscale = 0.5
startvalue = 0
output = _CLK_DELAY
[triggerdelay]
input = _STRAIGHT_CLK
delay = _CLK_DELAY
output = _MASTER_CLK
[copy]
input = _MASTER_CLK
output = G9
# Longpress reset button to clear everything for selected tracks.
[button]
button = B1.3
states = 0
startvalue = 0
longpress = _CLR_PROJECT
[triggerdelay]
input = _CLR_PROJECT
delay = 0.05
output = _INIT_ALT
[triggerdelay]
input = _INIT_ALT
delay = 0.05
output = _INIT_ACC
# In order to clear all algoquencer states, we have to clear each page separately. these are cleared with the following triggers that come in delayed slighlty from each other. The triggers also determine briefly what page the algos are on. (Gates, Alternate Gates, Accents).
[mixer]
input1 = _CLR_PROJECT
input2 = _INIT_ALT
input3 = _INIT_ACC
output = _CLR_ALGOS
[copy]
input = _CLR_ALGOS
inverted = _CLR_ALGOS_INV
[copy]
input = _CLR_ALGOS_INV * _CV_MDE
output = _ACC_MDE
# Reset button
[button]
button = B1.3
states = 1
led = L1.3
output = _INTERNAL_RESET
[copy]
input = _MIDI_RESET + _INTERNAL_RESET
output = _RESET
[copy]
input = _RESET
output = G10
[pot]
select = _PROJ_MDE
reset = _CLR_PROJECT
pot = P3.1
outputscale = 15
startvalue = 0
output = _MIDI_IN_CHANNEL
[pot]
select = _PROJ_MDE
reset = _CLR_PROJECT
pot = P4.1
outputscale = 15
startvalue = 0
output = _MIDI_OUT_CHANNEL
# Clock div/mult per channel
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_1 + 1
multiply = _CLK_MULT_1 + 1
output = _CLK_1
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_2 + 1
multiply = _CLK_MULT_2 + 1
output = _CLK_2
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_3 + 1
multiply = _CLK_MULT_3 + 1
output = _CLK_3
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_4 + 1
multiply = _CLK_MULT_4 + 1
output = _CLK_4
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_5 + 1
multiply = _CLK_MULT_5 + 1
output = _CLK_5
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_6 + 1
multiply = _CLK_MULT_6 + 1
output = _CLK_6
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_7 + 1
multiply = _CLK_MULT_7 + 1
output = _CLK_7
[clocktool]
clock = _MASTER_CLK
reset = _RESET
divide = _CLK_DIV_8 + 1
multiply = _CLK_MULT_8 + 1
output = _CLK_8
# # POTS for CLOCK DIV/MULT
[pot]
select = _PROJ_MDE * _SEL_1
reset = _CLR_PROJECT * _SEL_1
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_1
righthalf = _CLK_MULT_1
[pot]
select = _PROJ_MDE * _SEL_2
reset = _CLR_PROJECT * _SEL_2
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_2
righthalf = _CLK_MULT_2
[pot]
select = _PROJ_MDE * _SEL_3
reset = _CLR_PROJECT * _SEL_3
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_3
righthalf = _CLK_MULT_3
[pot]
select = _PROJ_MDE * _SEL_4
reset = _CLR_PROJECT * _SEL_4
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_4
righthalf = _CLK_MULT_4
[pot]
select = _PROJ_MDE * _SEL_5
reset = _CLR_PROJECT * _SEL_5
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_5
righthalf = _CLK_MULT_5
[pot]
select = _PROJ_MDE * _SEL_6
reset = _CLR_PROJECT * _SEL_6
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_6
righthalf = _CLK_MULT_6
[pot]
select = _PROJ_MDE * _SEL_7
reset = _CLR_PROJECT * _SEL_7
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_7
righthalf = _CLK_MULT_7
[pot]
select = _PROJ_MDE * _SEL_8
reset = _CLR_PROJECT * _SEL_8
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = P1.2
outputscale = 7
startvalue = 0.5
notch = 0.1
lefthalf = _CLK_DIV_8
righthalf = _CLK_MULT_8
# Buttongroup for selecting presets
[buttongroup]
select = _PROJ_MDE
button1 = B1.5
button2 = B1.6
button3 = B2.5
button4 = B2.6
button5 = B3.5
button6 = B3.6
button7 = B4.5
button8 = B4.6
button9 = B1.7
button10 = B1.8
button11 = B2.7
button12 = B2.8
button13 = B3.7
button14 = B3.8
button15 = B4.7
button16 = B4.8
led1 = L1.5
led2 = L1.6
led3 = L2.5
led4 = L2.6
led5 = L3.5
led6 = L3.6
led7 = L4.5
led8 = L4.6
led9 = L1.7
led10 = L1.8
led11 = L2.7
led12 = L2.8
led13 = L3.7
led14 = L3.8
led15 = L4.7
led16 = L4.8
output = _PRST
buttonpress = _PRST_PRESSED
[copy]
input = B1.4
inverted = _SV_INV
[copy]
input = _PRST_PRESSED * B1.4
output = _SV
[copy]
input = _PRST_PRESSED * _SV_INV
output = _LD
# -------------------------------------------------
# Groove Mode
# -------------------------------------------------
[button]
button = B2.3 + B1.3
startvalue = 0
states = 0
longpress = _CLR_GRVE
# POTS for timing
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P1.1
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_1
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P2.1
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_2
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P3.1
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_3
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P4.1
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_4
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P1.2
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_5
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P2.2
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_6
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P3.2
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_7
[pot]
select = _GRVE_MDE
reset = _CLR_GRVE
pot = P4.2
outputscale = 0.6
notch = 0.1
startvalue = 0.5
output = _TIM_OFFST_8
[copy]
input = -1 * 0.3 + _TIM_OFFST_1
output = _TIM_1
[copy]
input = -1 * 0.3 + _TIM_OFFST_2
output = _TIM_2
[copy]
input = -1 * 0.3 + _TIM_OFFST_3
output = _TIM_3
[copy]
input = -1 * 0.3 + _TIM_OFFST_4
output = _TIM_4
[copy]
input = -1 * 0.3 + _TIM_OFFST_5
output = _TIM_5
[copy]
input = -1 * 0.3 + _TIM_OFFST_6
output = _TIM_6
[copy]
input = -1 * 0.3 + _TIM_OFFST_7
output = _TIM_7
[copy]
input = -1 * 0.3 + _TIM_OFFST_8
output = _TIM_8
[random]
clock = _CLK_1
minimum = _GRVE_JITR_1 * -0.2
maximum = _GRVE_JITR_1 * 0.2
output = _GRV_RND_1
[random]
clock = _CLK_2
minimum = _GRVE_JITR_2 * -0.2
maximum = _GRVE_JITR_2 * 0.2
output = _GRV_RND_2
[random]
clock = _CLK_3
minimum = _GRVE_JITR_3 * -0.2
maximum = _GRVE_JITR_3 * 0.2
output = _GRV_RND_3
[random]
clock = _CLK_4
minimum = _GRVE_JITR_4 * -0.2
maximum = _GRVE_JITR_4 * 0.2
output = _GRV_RND_4
[random]
clock = _CLK_5
minimum = _GRVE_JITR_5 * -0.2
maximum = _GRVE_JITR_5 * 0.2
output = _GRV_RND_5
[random]
clock = _CLK_6
minimum = _GRVE_JITR_6 * -0.2
maximum = _GRVE_JITR_6 * 0.2
output = _GRV_RND_6
[random]
clock = _CLK_7
minimum = _GRVE_JITR_7 * -0.2
maximum = _GRVE_JITR_7 * 0.2
output = _GRV_RND_7
[random]
clock = _CLK_8
minimum = _GRVE_JITR_8 * -0.2
maximum = _GRVE_JITR_8 * 0.2
output = _GRV_RND_8
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_1
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_1 + _GRV_RND_1
timing2 = _TIM_2 * _GRV_ATN_1 + _GRV_RND_1
timing3 = _TIM_3 * _GRV_ATN_1 + _GRV_RND_1
timing4 = _TIM_4 * _GRV_ATN_1 + _GRV_RND_1
timing5 = _TIM_5 * _GRV_ATN_1 + _GRV_RND_1
timing6 = _TIM_6 * _GRV_ATN_1 + _GRV_RND_1
timing7 = _TIM_7 * _GRV_ATN_1 + _GRV_RND_1
timing8 = _TIM_8 * _GRV_ATN_1 + _GRV_RND_1
output = _TIM_CLK_1
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_2
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_2 + _GRV_RND_2
timing2 = _TIM_2 * _GRV_ATN_2 + _GRV_RND_2
timing3 = _TIM_3 * _GRV_ATN_2 + _GRV_RND_2
timing4 = _TIM_4 * _GRV_ATN_2 + _GRV_RND_2
timing5 = _TIM_5 * _GRV_ATN_2 + _GRV_RND_2
timing6 = _TIM_6 * _GRV_ATN_2 + _GRV_RND_2
timing7 = _TIM_7 * _GRV_ATN_2 + _GRV_RND_2
timing8 = _TIM_8 * _GRV_ATN_2 + _GRV_RND_2
output = _TIM_CLK_2
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_3
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_3 + _GRV_RND_3
timing2 = _TIM_2 * _GRV_ATN_3 + _GRV_RND_3
timing3 = _TIM_3 * _GRV_ATN_3 + _GRV_RND_3
timing4 = _TIM_4 * _GRV_ATN_3 + _GRV_RND_3
timing5 = _TIM_5 * _GRV_ATN_3 + _GRV_RND_3
timing6 = _TIM_6 * _GRV_ATN_3 + _GRV_RND_3
timing7 = _TIM_7 * _GRV_ATN_3 + _GRV_RND_3
timing8 = _TIM_8 * _GRV_ATN_3 + _GRV_RND_3
output = _TIM_CLK_3
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_4
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_4 + _GRV_RND_4
timing2 = _TIM_2 * _GRV_ATN_4 + _GRV_RND_4
timing3 = _TIM_3 * _GRV_ATN_4 + _GRV_RND_4
timing4 = _TIM_4 * _GRV_ATN_4 + _GRV_RND_4
timing5 = _TIM_5 * _GRV_ATN_4 + _GRV_RND_4
timing6 = _TIM_6 * _GRV_ATN_4 + _GRV_RND_4
timing7 = _TIM_7 * _GRV_ATN_4 + _GRV_RND_4
timing8 = _TIM_8 * _GRV_ATN_4 + _GRV_RND_4
output = _TIM_CLK_4
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_5
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_5 + _GRV_RND_5
timing2 = _TIM_2 * _GRV_ATN_5 + _GRV_RND_5
timing3 = _TIM_3 * _GRV_ATN_5 + _GRV_RND_5
timing4 = _TIM_4 * _GRV_ATN_5 + _GRV_RND_5
timing5 = _TIM_5 * _GRV_ATN_5 + _GRV_RND_5
timing6 = _TIM_6 * _GRV_ATN_5 + _GRV_RND_5
timing7 = _TIM_7 * _GRV_ATN_5 + _GRV_RND_5
timing8 = _TIM_8 * _GRV_ATN_5 + _GRV_RND_5
output = _TIM_CLK_5
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_6
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_6 + _GRV_RND_6
timing2 = _TIM_2 * _GRV_ATN_6 + _GRV_RND_6
timing3 = _TIM_3 * _GRV_ATN_6 + _GRV_RND_6
timing4 = _TIM_4 * _GRV_ATN_6 + _GRV_RND_6
timing5 = _TIM_5 * _GRV_ATN_6 + _GRV_RND_6
timing6 = _TIM_6 * _GRV_ATN_6 + _GRV_RND_6
timing7 = _TIM_7 * _GRV_ATN_6 + _GRV_RND_6
timing8 = _TIM_8 * _GRV_ATN_6 + _GRV_RND_6
output = _TIM_CLK_6
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_7
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_7 + _GRV_RND_7
timing2 = _TIM_2 * _GRV_ATN_7 + _GRV_RND_7
timing3 = _TIM_3 * _GRV_ATN_7 + _GRV_RND_7
timing4 = _TIM_4 * _GRV_ATN_7 + _GRV_RND_7
timing5 = _TIM_5 * _GRV_ATN_7 + _GRV_RND_7
timing6 = _TIM_6 * _GRV_ATN_7 + _GRV_RND_7
timing7 = _TIM_7 * _GRV_ATN_7 + _GRV_RND_7
timing8 = _TIM_8 * _GRV_ATN_7 + _GRV_RND_7
output = _TIM_CLK_7
# Adjust per step (up to 8 steps) timing PER CHANNEL!
[timing]
clock = _CLK_8
reset = _RESET
timing1 = _TIM_1 * _GRV_ATN_8 + _GRV_RND_8
timing2 = _TIM_2 * _GRV_ATN_8 + _GRV_RND_8
timing3 = _TIM_3 * _GRV_ATN_8 + _GRV_RND_8
timing4 = _TIM_4 * _GRV_ATN_8 + _GRV_RND_8
timing5 = _TIM_5 * _GRV_ATN_8 + _GRV_RND_8
timing6 = _TIM_6 * _GRV_ATN_8 + _GRV_RND_8
timing7 = _TIM_7 * _GRV_ATN_8 + _GRV_RND_8
timing8 = _TIM_8 * _GRV_ATN_8 + _GRV_RND_8
output = _TIM_CLK_8
# -------------------------------------------------
# Performance Mode
# -------------------------------------------------
# # Button for activity mode clear
[button]
button = B2.4 + B1.3
startvalue = 0
states = 0
longpress = _CLR_PERF
# # POTS for Activity
[compare]
input = _PERF_MDE
compare = 1
ifequal = P1.1
else = P1.1
output = _ACT_POT_1
[copy]
input = _GTS_MDE * _SEL_1 + _PERF_MDE
output = _ACT_POT_SEL_1
[pot]
select = _ACT_POT_SEL_1 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_1
startvalue = 0.5
notch = 0.1
output = _ACT_1
[compare]
input = _PERF_MDE
compare = 1
ifequal = P2.1
else = P1.1
output = _ACT_POT_2
[copy]
input = _GTS_MDE * _SEL_2 + _PERF_MDE
output = _ACT_POT_SEL_2
[pot]
select = _ACT_POT_SEL_2 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_2
startvalue = 0.5
notch = 0.1
output = _ACT_2
[compare]
input = _PERF_MDE
compare = 1
ifequal = P3.1
else = P1.1
output = _ACT_POT_3
[copy]
input = _GTS_MDE * _SEL_3 + _PERF_MDE
output = _ACT_POT_SEL_3
[pot]
select = _ACT_POT_SEL_3 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_3
startvalue = 0.5
notch = 0.1
output = _ACT_3
[compare]
input = _PERF_MDE
compare = 1
ifequal = P4.1
else = P1.1
output = _ACT_POT_4
[copy]
input = _GTS_MDE * _SEL_4 + _PERF_MDE
output = _ACT_POT_SEL_4
[pot]
select = _ACT_POT_SEL_4 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_4
startvalue = 0.5
notch = 0.1
output = _ACT_4
[compare]
input = _PERF_MDE
compare = 1
ifequal = P1.2
else = P1.1
output = _ACT_POT_5
[copy]
input = _GTS_MDE * _SEL_5 + _PERF_MDE
output = _ACT_POT_SEL_5
[pot]
select = _ACT_POT_SEL_5 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_5
startvalue = 0.5
notch = 0.1
output = _ACT_5
[compare]
input = _PERF_MDE
compare = 1
ifequal = P2.2
else = P1.1
output = _ACT_POT_6
[copy]
input = _GTS_MDE * _SEL_6 + _PERF_MDE
output = _ACT_POT_SEL_6
[pot]
select = _ACT_POT_SEL_6 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_6
startvalue = 0.5
notch = 0.1
output = _ACT_6
[compare]
input = _PERF_MDE
compare = 1
ifequal = P3.2
else = P1.1
output = _ACT_POT_7
[copy]
input = _GTS_MDE * _SEL_7 + _PERF_MDE
output = _ACT_POT_SEL_7
[pot]
select = _ACT_POT_SEL_7 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_7
startvalue = 0.5
notch = 0.1
output = _ACT_7
[compare]
input = _PERF_MDE
compare = 1
ifequal = P4.2
else = P1.1
output = _ACT_POT_8
[copy]
input = _GTS_MDE * _SEL_8 + _PERF_MDE
output = _ACT_POT_SEL_8
[pot]
select = _ACT_POT_SEL_8 * _MDE_PRSS_G_NEG
reset = _CLR_PERF + _CLR_GTS_MDE
preset = _PRST
savepreset = _SV
loadpreset = _LD
pot = _ACT_POT_8
startvalue = 0.5
notch = 0.1
output = _ACT_8
# Latch button
[button]
select = _PERF_MDE
button = B1.5
onvalue = 2
offvalue = 1
startvalue = 0
led = L1.5
output = _LATCH
[button]
select = _PERF_MDE