-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathplugin.json
More file actions
1208 lines (1208 loc) · 26.7 KB
/
plugin.json
File metadata and controls
1208 lines (1208 loc) · 26.7 KB
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
{
"slug": "CountModula",
"name": "Count Modula",
"version": "2.5.0",
"license": "GPL-3.0-only",
"brand": "Count Modula",
"author": "Adam Verspaget",
"authorEmail": "CountModula@gmail.com",
"authorUrl": "https://github.com/countmodula",
"pluginUrl": "https://github.com/countmodula/VCVRackPlugins/blob/master/README.md",
"manualUrl": "https://github.com/countmodula/VCVRackPlugins/blob/master/MANUAL.md",
"changelogUrl": "https://github.com/countmodula/VCVRackPlugins/blob/master/CHANGELOG.md",
"sourceUrl": "https://github.com/countmodula/VCVRackPlugins",
"donateUrl": "https://paypal.me/countmodula?locale.x=en_AU",
"modules": [
{
"slug": "AnalogueShiftRegister",
"name": "Analogue Shift Register",
"description": "A dual 4, or single 8, step shift register",
"tags": [
"Sample and Hold"
]
},
{
"slug": "Attenuator",
"name": "Attenuator",
"description": "Dual attenuator with attenuverting option",
"tags": [
"Attenuator",
"Dual",
"Polyphonic"
]
},
{
"slug": "BinarySequencer",
"name": "Binary Sequencer",
"description": "Binary counter based sequencer",
"tags": [
"Clock generator",
"Sequencer"
]
},
{
"slug": "BooleanAND",
"name": "Boolean AND Gate",
"description": "4 input boolean AND/NAND gate",
"tags": [
"Logic",
"Polyphonic"
]
},
{
"slug": "BooleanOR",
"name": "Boolean OR Gate",
"description": "4 input boolean OR/NOR gate",
"tags": [
"Logic",
"Polyphonic"
]
},
{
"slug": "BooleanVCNOT",
"name": "Boolean VC Inverter",
"description": "Dual voltage controlled logical inverter",
"tags": [
"Logic",
"Dual",
"Polyphonic"
]
},
{
"slug": "BooleanXOR",
"name": "Boolean XOR Gate",
"description": "4 input boolean XOR/XNOR gate",
"tags": [
"Logic",
"Polyphonic"
]
},
{
"slug": "BurstGenerator",
"name": "Burst Generator",
"description": "Generates bursts of 1-16 pulses whenever a trigger is received at the trigger input",
"tags": [
"Clock modulator",
"Sequencer"
]
},
{
"slug": "Comparator",
"name": "Comparator",
"description": "Compares the input signal with either an internal or external threshold value and outputs gate signals based on the outcome.",
"tags": [
"Utility"
]
},
{
"slug": "CVSpreader",
"name": "CV Spreader",
"description": "Accepts \"Base\" and \"Spread\" CV inputs and creates a set of new CV values that are spread either side of the base value by an amount determined by the spread value.",
"tags": [
"Utility"
]
},
{
"slug": "EventArranger",
"name": "Event Arranger",
"description": "A VCV Rack implementation of the VC Clock and Event Arranger published in an article by John Blacet in the Jan/Feb edition of Synapse magazine",
"tags": [
"Clock modulator",
"Sequencer"
]
},
{
"slug": "GateDelay",
"name": "Gate Delay",
"description": "A dual gate delay line giving up to 40 seconds of delay with voltage control over the delay time",
"tags": [
"Delay",
"Dual"
]
},
{
"slug": "GateModifier",
"name": "Gate Modifier",
"description": "Voltage controlled gate length modifier",
"tags": [
"Logic",
"Utility"
]
},
{
"slug": "G2T",
"name": "G2T - Gate to Trigger Converter",
"description": "Gate to Trigger Converter",
"tags": [
"Utility"
]
},
{
"slug": "Mangler",
"name": "Mangler",
"description": "A voltage controlled sample rate/bit depth reducer",
"tags": [
"Distortion",
"Polyphonic"
]
},
{
"slug": "ManualCV",
"name": "Manual CV Generator",
"description": "A simple dual manual CV generator offering +/- 10V with both coarse and fine controls",
"tags": [
"Dual",
"Controller",
"Utility"
]
},
{
"slug": "ManualGate",
"name": "Manual Gate",
"description": "A manually triggered gate generator offering a number of simultaneous gate and inverted gate outputs",
"tags": [
"Utility",
"Controller"
]
},
{
"slug": "MatrixMixer",
"name": "Matrix Mixer",
"description": "A 4 x 4 matrix mixer allowing up to 4 input signals to be independently mixed to 4 different outputs",
"tags": [
"Mixer"
]
},
{
"slug": "MinimusMaximus",
"name": "Minimus Maximus",
"description": "A signal processor that determines and outputs the minimum, maximum and mean (average) of up to 4 input signals",
"tags": [
"Utility"
]
},
{
"slug": "Mixer",
"name": "Mixer",
"description": "A basic 4 input utility mixer with output level control, overload indicator, inverted output and selectable bipolar/unipolar operation",
"tags": [
"Mixer"
]
},
{
"slug": "MorphShaper",
"name": "Morph Shaper",
"description": "Morphing controller and wave shaper",
"tags": [
"Utility",
"Waveshaper"
]
},
{
"slug": "Multiplexer",
"name": "Multiplexer",
"description": "A 1 input to 8 output and 8 input to 1 output multiplexer",
"tags": [
"Switch"
]
},
{
"slug": "Mute",
"name": "Mute",
"description": "A voltage controlled mute",
"tags": [
"Controller",
"Polyphonic"
]
},
{
"slug": "Mute-iple",
"name": "Mute-iple",
"description": "A dual 4-way/ Single 8 way mutable multiple",
"tags": [
"Dual",
"Multiple",
"Controller",
"Polyphonic"
]
},
{
"slug": "Rectifier",
"name": "Rectifier",
"description": "A full/half wave rectifier with variable rectification axis",
"tags": [
"Waveshaper",
"Polyphonic"
]
},
{
"slug": "SampleAndHold",
"name": "Sample & Hold",
"description": "Sample and Hold/Track and hold",
"tags": [
"Sample and hold",
"Polyphonic"
]
},
{
"slug": "ShepardGenerator",
"name": "Shepard Generator",
"description": "Generates a set of 8 ramp and sawtooth control signals appropriately phased for generation of Shepard tones",
"tags": [
"LFO",
"Function generator",
"Polyphonic"
]
},
{
"slug": "SRFlipFlop",
"name": "Dual SR Flip Flop",
"description": "A dual logical Set/Reset flip flop with enable",
"tags": [
"Logic",
"Dual"
]
},
{
"slug": "StepSequencer8",
"name": "Dual 8 Step Sequencer",
"description": "Fully featured dual channel 8 step sequencer",
"tags": [
"Sequencer",
"Dual",
"Polyphonic"
]
},
{
"slug": "TFlipFlop",
"name": "Dual T Flip Flop",
"description": "A dual logical T type (toggle) flip flop with enable",
"tags": [
"Logic",
"Dual"
]
},
{
"slug": "TriggerSequencer8",
"name": "Trigger Sequencer (8 Step)",
"description": "Quad 8 step trigger sequencer",
"tags": [
"Quad",
"Sequencer"
]
},
{
"slug": "TriggerSequencer16",
"name": "Trigger Sequencer (16 Step)",
"description": "Quad 16 step trigger sequencer",
"tags": [
"Quad",
"Sequencer"
]
},
{
"slug": "GateDelayMT",
"name": "Tapped Gate Delay",
"description": "A gate delay that offers up to 40 seconds of delay with tapped outputs at equal intervals along the delay line",
"tags": [
"Delay"
]
},
{
"slug": "VCPolarizer",
"name": "Voltage Controlled Polarizer",
"description": "A dual voltage controlled polarizer",
"tags": [
"Dual",
"Polyphonic",
"Attenuator",
"Utility"
]
},
{
"slug": "VoltageControlledSwitch",
"name": "Voltage Controlled Switch",
"description": "Selects between 2 inputs or routes 1 input to one of 2 outputs based on the level of the signal at the CV input",
"tags": [
"Switch",
"Polyphonic"
]
},
{
"slug": "VoltageInverter",
"name": "Voltage Inverter",
"description": "A quad voltage inverter that inverts signals around zero",
"tags": [
"Utility",
"Polyphonic",
"Quad"
]
},
{
"slug": "BasicSequencer8",
"name": "Basic 8 Step Sequencer",
"description": "Basic single channel 8 step sequencer",
"tags": [
"Sequencer"
]
},
{
"slug": "SequencerExpanderCV8",
"name": "Sequencer CV Expander",
"description": "8 step sequencer expander adding an extra channel of CV output",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "SequencerExpanderOut8",
"name": "Sequencer Output Expander",
"description": "8 step sequencer expander adding a gate output for each step",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "SequencerExpanderTrig8",
"name": "Sequencer Trigger Expander",
"description": "8 step sequencer expander adding a an extra channel of gate/trigger output",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "SubHarmonicGenerator",
"name": "Sub Harmonic Generator ",
"description": "Fatten up a single oscillator with sub harmonics",
"tags": [
"Waveshaper"
]
},
{
"slug": "VCFrequencyDivider",
"name": "Voltage Controlled Frequency Divider (Deprecated - Do Not Use)",
"description": "This module is no longer supported - use VC Frequency Divider instead",
"deprecated": true,
"tags": [
"Clock modulator"
],
"hidden": true
},
{
"slug": "VCFrequencyDividerMkII",
"name": "Voltage Controlled Frequency Divider MkII",
"description": "Frequency divider with a variable and voltage controlled division ratio from 1 to around 20",
"tags": [
"Clock modulator"
]
},
{
"slug": "PolyrhythmicGenerator",
"name": "Polyrhythmic Generator (Deprecated - Do Not Use)",
"description": "This module is no longer supported - use Polyrhythmic Generator MkII instead",
"deprecated": true,
"tags": [
"Clock modulator",
"Sequencer",
"Polyphonic"
],
"hidden": true
},
{
"slug": "PolyrhythmicGeneratorMkII",
"name": "Polyrhythmic Generator MkII",
"description": "A set of 8 voltage controlled clock dividers that can be used to generate polyrhythms by clocking and/or dividing at different rates",
"tags": [
"Clock modulator",
"Sequencer",
"Polyphonic"
]
},
{
"slug": "GatedComparator",
"name": "Gated Comparator",
"description": "Gated Comparator",
"tags": [
"Sequencer",
"Random"
]
},
{
"slug": "SlopeDetector",
"name": "Slope Detector",
"description": "Slope Detector",
"tags": [
"Utility"
]
},
{
"slug": "SequencerExpanderRM8",
"name": "Gated Comparator Expander - Random Melody",
"description": "Gated Comparator expander adding Random Melody output (also works with other sequencers)",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "SequencerExpanderLOG8",
"name": "Gated Comparator Expander - Gate Logic",
"description": "Gated Comparator expander adding logical mixing of the shift register outputs",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "StartupDelay",
"name": "Startup Delay",
"description": "Generates delayed start signals for sequencers on load or startup",
"tags": [
"Utility"
]
},
{
"slug": "RackEarLeft",
"name": "Left Hand Rack Ear",
"description": "A Left Hand Rack Ear",
"tags": [
"Blank"
]
},
{
"slug": "RackEarRight",
"name": "Right Hand Rack Ear",
"description": "A Right Hand Rack Ear",
"tags": [
"Blank"
]
},
{
"slug": "Blank2HP",
"name": "Blank Panel - 2HP",
"description": "2HP blanking panel",
"tags": [
"Blank"
]
},
{
"slug": "Blank4HP",
"name": "Blank Panel - 4HP",
"description": "4HP blanking panel",
"tags": [
"Blank"
]
},
{
"slug": "Blank8HP",
"name": "Blank Panel - 8HP",
"description": "8HP blank panel",
"tags": [
"Blank"
]
},
{
"slug": "Blank12HP",
"name": "Blank Panel - 12HP",
"description": "12HP blank panel",
"tags": [
"Blank"
]
},
{
"slug": "Blank16HP",
"name": "Blank Panel - 16HP",
"description": "16HP blank panel",
"tags": [
"Blank"
]
},
{
"slug": "Blank20HP",
"name": "Blank Panel - 20HP",
"description": "20HP blank panel",
"tags": [
"Blank"
]
},
{
"slug": "Blank24HP",
"name": "Blank Panel - 24HP",
"description": "24HP blank panel",
"tags": [
"Blank"
]
},
{
"slug": "OffsetGenerator",
"name": "Offset Generator",
"description": "Offsets a CV signal by a given amount",
"tags": [
"Utility",
"Polyphonic"
]
},
{
"slug": "Chances",
"name": "Chances - bernoulli gate",
"description": "Single bernoulli gate offering randomized routing of gate signals",
"tags": [
"Random",
"Logic",
"Clock Modulator"
]
},
{
"slug": "Fade",
"name": "Fade-in/Fade-out and Record Controller",
"description": "Automated fade in/out with integrated start/stop control for the VCV Record module",
"tags": [
"Controller",
"Polyphonic"
]
},
{
"slug": "FadeExpander",
"name": "Fade-in/Fade-out Expander",
"description": "Adds sequencer start/stop and envelope outputs to the fade controller",
"tags": [
"Controller",
"Expander"
]
},
{
"slug": "SequencerExpanderTSG",
"name": "Trigger Sequencer Gate Expander",
"description": "Adds gate outputs to the 8 and 16 Step Trigger Sequencers",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "VCPulseDivider",
"name": "Voltage Controlled Pulse Divider",
"description": "Voltage controlled division of pulse signals such as gates and triggers",
"tags": [
"Clock modulator"
]
},
{
"slug": "ClockedRandomGates",
"name": "Clocked Random Gates",
"description": "Generates a set of 8 synchronised gates and triggers",
"tags": [
"Clock Modulator",
"Sequencer"
]
},
{
"slug": "ClockedRandomGateExpanderCV",
"name": "Clocked Random Gate CV Expander",
"description": "Generates CV based on the state of the random gates",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "ClockedRandomGateExpanderLog",
"name": "Clocked Random Gate Logic Expander",
"description": "Logical processing of the gates from the Clocked Random Gates module",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "Euclid",
"name": "Euclidean Sequencer",
"description": "Algorithmic trigger sequencer based on Euclidean division",
"tags": [
"Sequencer"
]
},
{
"slug": "EuclidExpanderCV",
"name": "Euclidean Sequencer Expander",
"description": "CV Expander for the Euclidean Sequencer",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "VoltageScaler",
"name": "Voltage Scaler",
"description": "Rescale a voltage from one range to another",
"tags": [
"Attenuator",
"Utility",
"Polyphonic"
]
},
{
"slug": "PolyMinMax",
"name": "Polyphonic Min/Max",
"description": "Determines minimum and maximum values from a polyphonic CV input",
"tags": [
"Utility",
"Polyphonic"
]
},
{
"slug": "Breakout",
"name": "Breakout",
"description": "Breaks polyphonic signals out to individual normalled output/input pairs",
"tags": [
"Utility",
"Polyphonic"
]
},
{
"slug": "GateSequencer8",
"name": "8 x 8 Gate Sequencer",
"description": "An 8 Channel 8 Step Gate/Trigger Sequencer",
"tags": [
"Sequencer"
]
},
{
"slug": "GateSequencer16",
"name": "8 x 16 Gate Sequencer",
"description": "An 8 Channel 16 Step Gate/Trigger Sequencer",
"tags": [
"Sequencer"
]
},
{
"slug": "PolyMute",
"name": "Polyphonic Mute",
"description": "Polyphonic Manual/VC Mute",
"tags": [
"Controller",
"Polyphonic"
]
},
{
"slug": "Sequencer16",
"name": "16 Step Sequencer",
"description": "16 Step Sequencer",
"tags": [
"Sequencer"
]
},
{
"slug": "Sequencer8",
"name": "8 Step Sequencer",
"description": "8 Step Sequencer",
"tags": [
"Sequencer"
]
},
{
"slug": "SequencerChannel16",
"name": "16 Step Sequencer Channel Expander",
"description": "Adds another channel to the 16 Step Sequencer",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "SequencerChannel8",
"name": "8 Step Sequencer Channel Expander",
"description": "Adds another channel to the 8 Step Sequencer",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "MasterReset",
"name": "Master Reset Controller",
"description": "Master reset button and clock wrangler",
"tags": [
"Clock modulator",
"Controller",
"Utility"
]
},
{
"slug": "PolyChances",
"name": "Polyphonic Bernoulli Gate",
"description": "Randomized routing of polyphonic gate signals",
"tags": [
"Random",
"Logic",
"Clock Modulator",
"Polyphonic"
]
},
{
"slug": "PolyVCSwitch",
"name": "Polyphonic Voltage Controlled Switch",
"description": "Selects between 2 polyphonic inputs or routes 1 polyphonic input to one of 2 polyphonic outputs based on the level of the signal at the polyphonic CV input",
"tags": [
"Switch",
"Polyphonic"
]
},
{
"slug": "PolyVCPolarizer",
"name": "Polyphonic VC Polarizer",
"description": "A polyphonic voltage controlled polarizer",
"tags": [
"Polyphonic",
"Attenuator",
"Utility"
]
},
{
"slug": "PolyLogic",
"name": "Polyphonic Boolean Logic Processor",
"description": "Applies boolean logic across the channels of a polyphonic signal",
"tags": [
"Polyphonic",
"Logic"
]
},
{
"slug": "ManualCV2",
"name": "Polyphonic Manual CV Generator",
"description": "A basic manual CV generator with a range of output voltages",
"tags": [
"Polyphonic",
"Utility",
"Controller"
]
},
{
"slug": "Manifold",
"name": "Signal Manifold",
"description": "Replicates a mono/poly input signal to a selected number of channels in a poly output signal",
"tags": [
"Multiple",
"Polyphonic"
]
},
{
"slug": "SequencerGates8",
"name": "8 Step Sequencer Gate Output Expander",
"description": "Adds individual gate outputs to the 8 Step Sequencer",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "SequencerGates16",
"name": "16 Step Sequencer Gate Output Expander",
"description": "Adds individual gate outputs to the 16 Step Sequencer",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "Attenuverter",
"name": "Attenuverter",
"description": "Attenuverter/Attenuator",
"tags": [
"Utility",
"Attenuator",
"Polyphonic",
"Controller"
]
},
{
"slug": "PolyG2T",
"name": "gate to Trigger Converter",
"description": "Description.",
"tags": [
"Utility",
"Polyphonic" ]
},
{
"slug": "Switch1To8",
"name": "Switch 1-8",
"description": "1 input to 8 output sequential/VC switch",
"tags": [
"Switch"
]
},
{
"slug": "Switch8To1",
"name": "Switch 8-1",
"description": "8 input to 1 output sequential/VC switch/router",
"tags": [
"Switch"
]
},
{
"slug": "Switch1To16",
"name": "Switch 1-16",
"description": "1 input to 16 output sequential/VC switch",
"tags": [
"Switch"
]
},
{
"slug": "Switch16To1",
"name": "Switch 16-1",
"description": "16 input to 1 output sequential/VC switch/router",
"tags": [
"Switch"
]
},
{
"slug": "SequencerTriggers8",
"name": "8 Step Sequencer Trigger Output Expander",
"description": "Adds individual trigger outputs to the 8 Step Sequencer",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "SequencerTriggers16",
"name": "16 Step Sequencer Trigger Output Expander",
"description": "Adds individual trigger outputs to the 16 Step Sequencer",
"tags": [
"Sequencer",
"Expander"
]
},
{
"slug": "BusRoute",
"name": "Bus Route",
"description": "Switched gate combiner/router",
"tags": [
"Switch",
"Logic"
]
},
{
"slug": "BusRoute2",
"name": "Bus Route",
"description": "Switched gate combiner",
"tags": [
"Switch",
"Logic"
]
},
{
"slug": "MatrixCombiner",
"name": "Matrix Combiner",
"description": "Gate combiner/switched multiple",
"tags": [
"Switch",
"Logic",
"Multiple"
]
},
{
"slug": "ClockDivider",
"name": "Clock Divider",
"description": "Clock divider with up/down mode and optional trigger outputs",
"tags": [
"Clock modulator"
]
},
{
"slug": "BinaryComparator",
"name": "Binary Comparator",
"description": "Compares two binary words",
"tags": [
"Logic"
]
},
{
"slug": "EventTimer",
"name": "Countdown",
"description": "Clocked/realtime event counter with 3 digits",
"tags": [
"Clock modulator"
]
},
{
"slug": "EventTimer2",
"name": "Countdown 5",
"description": "Clocked/realtime event counter with 5 digits",
"tags": [
"Clock modulator"
]
},
{
"slug": "Arpeggiator",
"name": "Super Arpeggiator",
"description": "Arpeggiator with user definable patterns",
"tags": [
"Arpeggiator"
]
},
{
"slug": "HyperManiacalLFO",
"name": "Hyper Maniacal LFO",
"description": "Complex LFO",
"tags": [
"LFO"
]
},
{
"slug": "HyperManiacalLFOExpander",
"name": "Hyper Maniacal LFO Output Expander",
"description": "Individual Outputs for the Hyper Maniacal LFO",
"tags": [
"LFO",
"Expander"
]
},
{
"slug": "LightStrip",
"name": "Light Strip",
"description": "Illuminated Blanking Panel",
"tags": [
"Blank"
]
},
{
"slug": "Megalomaniac",
"name": "Megalomaniac - Hyper Maniacal LFO CV Expander",
"description": "Voltage control over the Hyper Maniacal LFO",
"tags": [
"LFO",
"Expander"
]
},
{
"slug": "SingleTFlipFlop",
"name": "T Flip Flop",
"description": "A logical T type (toggle) flip flop with enable",
"tags": [
"Logic"
]
},
{
"slug": "SingleSRFlipFlop",
"name": "SR Flip Flop",
"description": "A logical Set/Reset flip flop with enable",
"tags": [
"Logic"
]
},
{
"slug": "Switch2",
"name": "Manual DPDT Switch",
"description": "Manually switch between 2 inputs",