-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathdevices.ttl
More file actions
1190 lines (1049 loc) · 55.4 KB
/
devices.ttl
File metadata and controls
1190 lines (1049 loc) · 55.4 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
@prefix device: <http://example.org/vocab/device/> .
_:alm-pexp-2 device:make "ALM/Busy Circuits" .
_:alm-pexp-2 device:model "Pexp-2: Pamela’s New Workout Expander" .
_:alm-pexp-2 device:outputs 1 .
_:alm-pexp-2 device:swappable true .
_:alm-pexp-2 device:typeA true .
_:alm-pexp-2 device:typeB true .
_:alm-pexp-2 device:notes "Supports Type A or Type B, switchable." .
_:alm-pexp-2 device:details "“The 3.5mm jack can be switched between differing 3.5mm MIDI configurations by reversing the jack connector on the rear of the module.”" .
_:alm-pexp-2 device:uri "https://busycircuits.com/alm017-ex" .
_:alm-pexp-2 device:eurorack true .
_:alm-mmmidi device:make "ALM/Busy Circuits" .
_:alm-mmmidi device:model "mmMidi" .
_:alm-mmmidi device:inputs 1 .
_:alm-mmmidi device:typeB true .
_:alm-mmmidi device:uri "https://busycircuits.com/alm023" .
_:alm-mmmidi device:eurorack true .
_:faderfox-ec4 device:make "Faderfox" .
_:faderfox-ec4 device:model "EC4" .
_:faderfox-ec4 device:outputs 1 .
_:faderfox-ec4 device:inputs 1 .
_:faderfox-ec4 device:typeB true .
_:faderfox-ec4 device:notes "With MIDI routing and merge functionality" .
_:faderfox-ec4 device:uri "http://faderfox.de/ec4.html" .
_:expertsleepers-dj-1000 device:make "Expert Sleepers" .
_:expertsleepers-dj-1000 device:model "DJ-1000 for ES-5, ESX-8GT" .
_:expertsleepers-dj-1000 device:typeTS true .
_:expertsleepers-dj-1000 device:typeA false .
_:expertsleepers-dj-1000 device:typeB false .
_:expertsleepers-dj-1000 device:notes "Used by Expert Sleepers ES-5, ESX-8GT." .
_:expertsleepers-dj-1000 device:details "via https://www.muffwiggler.com/forum/viewtopic.php?t=165463&start=all. See also notes here: https://www.flickr.com/photos/expertsleepers/6146324753" .
_:expertsleepers-dj-1000 device:uri "https://www.expert-sleepers.co.uk/accessories.html" .
_:16n device:make "16n" .
_:16n device:model "16n" .
_:16n device:typeA true .
_:16n device:typeB true .
_:16n device:outputs 1 .
_:16n device:notes "“There is a switch to toggle between the two standards … so it’ll work with both Korg/Makenoise and Arturia/Novation products and converters directly”" .
_:16n device:uri "https://16n-faderbank.github.io" .
_:monome-crow device:make "Monome" .
_:monome-crow device:model "Crow" .
_:monome-crow device:typeA true .
_:monome-crow device:outputs 0 .
_:monome-crow device:inputs 1 .
_:monome-crow device:notes "Can accept MIDI on input #1. Undocumented feature. Not compatible with all MIDI devices. Uses MMA Standard TRS MIDI." .
_:monome-crow device:uri "https://monome.org/docs/crow" .
_:monome-crow device:eurorack true .
# MFB Nanozwerg Pro (Input; Polarity NON-TRS!!)
_:mfb-nanozwerg-pro device:make "MFB" .
_:mfb-nanozwerg-pro device:model "Nanozwerg Pro" .
_:mfb-nanozwerg-pro device:eurorack true .
_:mfb-nanozwerg-pro device:inputs 1 .
_:mfb-nanozwerg-pro device:typeTS true .
_:mfb-nanozwerg-pro device:uri "http://mfberlin.de/en/modules/nanozwerg_pro_e" .
# MFB SEQ-1 Pro (Output; Polarity probably NON-TRS too)
_:mfb-seq-01-pro device:make "MFB" .
_:mfb-seq-01-pro device:model "SEQ-01 Pro" .
_:mfb-seq-01-pro device:eurorack true .
_:mfb-seq-01-pro device:inputs 1 .
_:mfb-seq-01-pro device:typeTS true .
_:mfb-seq-01-pro device:uri "http://mfberlin.de/en/seq-01-proe" .
# LPZW.modules WK3 (Input/Thru; Polarity auto/switchable)
_:lpzw-wk3 device:make "LPZW.modules" .
_:lpzw-wk3 device:model "WK3" .
_:lpzw-wk3 device:eurorack true .
_:lpzw-wk3 device:inputs 1 .
_:lpzw-wk3 device:outputs 5 .
_:lpzw-wk3 device:thrus 5 .
_:lpzw-wk3 device:typeA true .
_:lpzw-wk3 device:typeB true .
_:lpzw-wk3 device:details "“The input is auto-cross-over and each output has its own switch to swap tip and ring position of data and +5V”" .
_:lpzw-wk3 device:uri "http://leipzigwest.org/?page_id=41" .
# LPZW.modules SCHLEUßIG (Input; Polarity auto)
_:lpzw-schleußig device:make "LPZW.modules" .
_:lpzw-schleußig device:model "Schleußig" .
_:lpzw-schleußig device:eurorack true .
_:lpzw-schleußig device:inputs 1 .
_:lpzw-schleußig device:typeA true .
_:lpzw-schleußig device:typeB true .
_:lpzw-schleußig device:details "“The MIDI input is 3.5mm stereo TRS, with our own invented auto-crossover (directly connect either Korg-like OR Arturia-like 3.5mm MIDI out with a cheap standard cable).”" .
_:lpzw-schleußig device:uri "http://leipzigwest.org/?page_id=173" .
# LPZW.modules TRAM8(Input; Polarity auto)
_:lpzw-tram8 device:make "LPZW.modules" .
_:lpzw-tram8 device:model "Tram8" .
_:lpzw-tram8 device:eurorack true .
_:lpzw-tram8 device:inputs 1 .
_:lpzw-tram8 device:typeA true .
_:lpzw-tram8 device:typeB true .
_:lpzw-tram8 device:notes "“3.5mm auto crossover TRS MIDI Input. (type A or type B outputs without adapter)”" .
_:lpzw-tram8 device:details "“Internal MIDI Thru for daisy chaining multiple Tram8s”" .
_:lpzw-tram8 device:uri "http://leipzigwest.org/?page_id=242" .
# Erica Synths Drum Sequencer (Input; unknown)
_:erica-drum-sequencer device:make "Erica Synths" .
_:erica-drum-sequencer device:model "Drum Sequencer" .
_:erica-drum-sequencer device:eurorack true .
_:erica-drum-sequencer device:inputs 1 .
_:erica-drum-sequencer device:typeB true .
_:erica-drum-sequencer device:uri "https://www.ericasynths.lv/shop/eurorack-modules/by-series/drum-series/drum-sequencer" .
# Five12 Vector (I/O; unknown)
# confirmed via email
_:five12-vector-sequencer device:make "Five12" .
_:five12-vector-sequencer device:model "Vector Sequencer" .
_:five12-vector-sequencer device:inputs 1 .
_:five12-vector-sequencer device:outputs 1 .
_:five12-vector-sequencer device:eurorack true .
_:five12-vector-sequencer device:typeB true .
_:five12-vector-sequencer device:uri "http://www.five12.com" .
# SDS Digital WifiMidi (Output; Korg-ish)
_:sds-digital-wifimidi device:make "SDS Digital" .
_:sds-digital-wifimidi device:model "WiFiMIDI" .
_:sds-digital-wifimidi device:outputs 1 .
_:sds-digital-wifimidi device:eurorack true .
_:sds-digital-wifimidi device:typeA true .
_:sds-digital-wifimidi device:uri "http://www.freshnelly.com/WiFiMIDI/WiFiMIDI.htm" .
# SDS SDS_VCO (Input behind panel; User configurable))
_:sds-digital-sds-vco device:make "SDS Digital" .
_:sds-digital-sds-vco device:model "SDS_VCO" .
_:sds-digital-sds-vco device:outputs 1 .
_:sds-digital-sds-vco device:eurorack true .
_:sds-digital-sds-vco device:typeA true .
_:sds-digital-sds-vco device:typeB true .
_:sds-digital-sds-vco device:notes "optional MIDI expansion card" .
_:sds-digital-sds-vco device:details "“This small add-on board will allow MIDI notes to be sent to your favorite MIDI compatible receiver, effectively turning your SDS_VCO into a CV/T/G to MIDI converter.”" .
_:sds-digital-sds-vco device:uri "http://www.freshnelly.com/sdsvco/sdsvcoMIDI.htm" .
# SDS Reflex LiveLoop (Input behind panel; user switchable)
_:sds-digital-reflex-liveloop device:make "SDS Digital" .
_:sds-digital-reflex-liveloop device:model "Reflex LiveLoop" .
_:sds-digital-reflex-liveloop device:inputs 1 .
_:sds-digital-reflex-liveloop device:eurorack true .
_:sds-digital-reflex-liveloop device:typeA true .
_:sds-digital-reflex-liveloop device:typeB true .
_:sds-digital-reflex-liveloop device:notes "MIDI input available via Flash-8 expansion" .
_:sds-digital-reflex-liveloop device:details "“The jumpers (J2) on the board are turned 90 degrees to configure for either polarity.”" .
_:sds-digital-reflex-liveloop device:uri "http://www.freshnelly.com/reflex/reflexhtml.htm" .
#Squarp Rample
_:squarp-rample device:make "Squarp" .
_:squarp-rample device:model "Rample" .
_:squarp-rample device:inputs 1 .
_:squarp-rample device:thrus 1 .
_:squarp-rample device:eurorack true .
_:squarp-rample device:typeA true .
_:squarp-rample device:uri "https://squarp.net/rample" .
#Squarp Hapax
_:squarp-hapax device:make "Squarp" .
_:squarp-hapax device:model "Hapax" .
_:squarp-hapax device:inputs 1 .
_:squarp-hapax device:outputs 1 .
_:squarp-hapax device:typeA true .
_:squarp-hapax device:notes "Polychronic performance sequencer" .
_:squarp-hapax device:details "Additional 1 DIN MIDI in, 3 DIN MIDI outs" .
_:squarp-hapax device:uri "https://squarp.net/hapax" .
#Squarp Hermod+
_:squarp-hermodplus device:make "Squarp" .
_:squarp-hermodplus device:model "Hermod+" .
_:squarp-hermodplus device:inputs 1 .
_:squarp-hermodplus device:outputs 1 .
_:squarp-hermodplus device:typeA true .
_:squarp-hermodplus device:eurorack true .
_:squarp-hermodplus device:notes "Modular brain" .
_:squarp-hermodplus device:details "Eurorack sequencer with 4 CV/Gate ins, 8 CV/Gate outs, TRS MIDI, USB MIDI, 1 analog clock/reset out" .
_:squarp-hermodplus device:uri "https://squarp.net/hermodplus" .
# SSF Bantam (Input; unknown)
# Soulsby AT-Arp (Input; unknown)
# Malekko SYNC (I/O/Thru; Arturia)
_:malekko-sync device:make "Malekko" .
_:malekko-sync device:model "SYNC" .
_:malekko-sync device:eurorack true .
_:malekko-sync device:inputs 1 .
_:malekko-sync device:outputs 1 .
_:malekko-sync device:thrus 1 .
_:malekko-sync device:typeB true .
_:malekko-sync device:uri "https://malekkoheavyindustry.com/product/sync" .
# 1010 Music MX4 (Input/Thru; polarity Arturia)
_:1010music-mx4 device:make "1010music" .
_:1010music-mx4 device:model "MX4" .
_:1010music-mx4 device:eurorack true .
_:1010music-mx4 device:inputs 1 .
_:1010music-mx4 device:outputs 4 .
_:1010music-mx4 device:typeB true .
_:1010music-mx4 device:notes "Buffered MIDI Multiple" .
_:1010music-mx4 device:uri "https://1010music.com/product/mx4" .
# 1010 Music fxbox/bitbox (Input; polarity Arturia)
_:1010music-fxbox device:make "1010music" .
_:1010music-fxbox device:model "Fxbox" .
_:1010music-fxbox device:eurorack true .
_:1010music-fxbox device:inputs 1 .
_:1010music-fxbox device:typeB true .
_:1010music-fxbox device:notes "Performance Effects" .
_:1010music-fxbox device:uri "https://1010music.com/product/fxbox-performance-effects-module" .
_:1010music-bitbox device:make "1010music" .
_:1010music-bitbox device:model "Bitbox" .
_:1010music-bitbox device:eurorack true .
_:1010music-bitbox device:inputs 1 .
_:1010music-bitbox device:typeB true .
_:1010music-bitbox device:notes "Touchscreen Sampler" .
_:1010music-bitbox device:uri "https://1010music.com/product/bitbox-eurorack-module-with-touchscreen" .
# 1010 Music Toolbox (I/O; polarity Arturia)
_:1010music-toolbox device:make "1010music" .
_:1010music-toolbox device:model "Toolbox" .
_:1010music-toolbox device:eurorack true .
_:1010music-toolbox device:inputs 1 .
_:1010music-toolbox device:outputs 4 .
_:1010music-toolbox device:typeB true .
_:1010music-toolbox device:notes "Sequencer and Function Generator" .
_:1010music-toolbox device:uri "https://1010music.com/product/toolbox-sequencer-function-generator-eurorack-module" .
# 1010 Music MOK Waverazor (In; polarity Arturia)
_:1010music-waverazor device:make "1010music" .
_:1010music-waverazor device:model "Waverazor Dual Oscillator" .
_:1010music-waverazor device:inputs 1 .
_:1010music-waverazor device:typeB true .
_:1010music-waverazor device:uri "https://1010music.com/product/waverazor-dual-oscillator-module" .
_:1010music-blackbox device:make "1010music" .
_:1010music-blackbox device:model "Blackbox" .
_:1010music-blackbox device:inputs 1 .
_:1010music-blackbox device:outputs 1 .
_:1010music-blackbox device:typeB true .
_:1010music-blackbox device:notes "Compact Sampling Studio" .
_:1010music-blackbox device:uri "https://1010music.com/product/blackbox" .
_:1010music-bluebox device:make "1010music" .
_:1010music-bluebox device:model "Bluebox" .
_:1010music-bluebox device:inputs 1 .
_:1010music-bluebox device:outputs 1 .
_:1010music-bluebox device:typeB true .
_:1010music-bluebox device:typeA true .
_:1010music-bluebox device:notes "Compact Digital Mixer/Recorder" .
_:1010music-bluebox device:details "The manual states the device supports either Type A or Type B." .
_:1010music-bluebox device:uri "https://1010music.com/product/bluebox" .
_:1010music-synthbox device:make "1010music" .
_:1010music-synthbox device:model "Synthbox" .
_:1010music-synthbox device:inputs 1 .
_:1010music-synthbox device:typeB true .
_:1010music-synthbox device:notes "Polyphonic Synthesizer" .
_:1010music-synthbox device:uri "https://1010music.com/product/synthbox-polyphonic-synthesizer-module" .
_:1010music-laserbox device:make "1010music" .
_:1010music-laserbox device:model "Laserbox" .
_:1010music-laserbox device:eurorack true .
_:1010music-laserbox device:inputs 1 .
_:1010music-laserbox device:outputs 4 .
_:1010music-laserbox device:typeB true .
_:1010music-laserbox device:notes "Pattern Generator for Lasers" .
_:1010music-laserbox device:uri "https://1010music.com/product/laserbox-pattern-generator-for-lasers" .
_:1010music-euroshield1 device:make "1010music" .
_:1010music-euroshield1 device:model "euroshield 1" .
_:1010music-euroshield1 device:eurorack true .
_:1010music-euroshield1 device:inputs 1 .
_:1010music-euroshield1 device:outputs 1 .
_:1010music-euroshield1 device:typeB true .
_:1010music-euroshield1 device:notes "Synthesizer and Effects Development Board" .
_:1010music-euroshield1 device:uri "https://1010music.com/product/euroshield1" .
_:1010music-lemondrop device:make "1010music" .
_:1010music-lemondrop device:model "Lemondrop" .
_:1010music-lemondrop device:inputs 1 .
_:1010music-lemondrop device:outputs 1 .
_:1010music-lemondrop device:typeA true .
_:1010music-lemondrop device:typeB true .
_:1010music-lemondrop device:details "MIDI IN autodetects type A or B; MIDI OUT is only type B (OUT is only MIDI THRU as of v1.1.2)" .
_:1010music-lemondrop device:uri "https://1010music.com/product/lemondrop" .
# ADDAC System ADDAC221 (I/O; Polarity Korg)
# per muffwiggler thread. could not find confirmation of type on the addac systems site.
_:addac-addac221 device:make "ADDAC" .
_:addac-addac221 device:model "ADDAC221" .
_:addac-addac221 device:eurorack true .
_:addac-addac221 device:inputs 1 .
_:addac-addac221 device:outputs 1 .
_:addac-addac221 device:typeA true .
_:addac-addac221 device:notes "10x9 Channel CV to CC MIDI System" .
_:addac-addac221 device:uri "http://www.addacsystem.com/en/products/modules/addac200-series/addac221" .
# ADDAC System ADDAC222 (I/O; Polarity Korg)
# per muffwiggler thread. could not find confirmation of type on the addac systems site.
_:addac-addac222 device:make "ADDAC" .
_:addac-addac222 device:model "ADDAC222" .
_:addac-addac222 device:eurorack true .
_:addac-addac222 device:inputs 1 .
_:addac-addac222 device:outputs 1 .
_:addac-addac222 device:typeA true .
_:addac-addac222 device:notes "4x6 Voices 1V/Octave to MIDI Notes" .
_:addac-addac222 device:uri "http://www.addacsystem.com/en/products/modules/addac200-series/addac222" .
# Pittsburgh Modular Liveforms SV-1 (Input; Arturia)
# per muffwiggler thread, couldn't find confirmation on the pittsburgh modular site
_:pittsburgh-modular-liveforms-sv-1 device:make "Pittsburgh Modular" .
_:pittsburgh-modular-liveforms-sv-1 device:model "Liveforms SV-1" .
_:pittsburgh-modular-liveforms-sv-1 device:eurorack true .
_:pittsburgh-modular-liveforms-sv-1 device:inputs 1 .
_:pittsburgh-modular-liveforms-sv-1 device:typeB true .
_:pittsburgh-modular-liveforms-sv-1 device:uri "https://pittsburghmodular.com/lifeforms-sv-1" .
# Entrospec iungo (I/O; Polarity Korg - 2.5mm jacks!!! why, oh why? )
_:entrospec-iungo device:make "Entrospec" .
_:entrospec-iungo device:model "Iungo" .
_:entrospec-iungo device:eurorack true .
_:entrospec-iungo device:inputs 1 .
_:entrospec-iungo device:outputs 1 .
_:entrospec-iungo device:typeA true .
_:entrospec-iungo device:notes "“MIDI input and output via 2.5mm stereo jack to 5 pin DIN cables”" .
_:entrospec-iungo device:uri "http://entrospec.co.uk" .
# Flame Quad-CV-Recorder (Input; Arturia)
_:flame-quad-cv-recorder device:make "Flame" .
_:flame-quad-cv-recorder device:model "Quad CV Recorder" .
_:flame-quad-cv-recorder device:eurorack true .
_:flame-quad-cv-recorder device:inputs 1 .
_:flame-quad-cv-recorder device:typeB true .
_:flame-quad-cv-recorder device:uri "http://flame.fortschritt-musik.de/flame2/instruments_modular.html" .
# Flame 4Vox new version (Input; Arturia)
# Flame Filterbank (Input; Arturia)
_:flame-curves device:make "Flame" .
_:flame-curves device:model "Curves" .
_:flame-curves device:eurorack true .
_:flame-curves device:inputs 1 .
_:flame-curves device:typeB true .
_:flame-curves device:notes "12 band analog filter bank & sequencer" .
_:flame-curves device:uri "http://flame.fortschritt-musik.de/flame2/instruments_modular.html" .
# Pittsburgh Modular Lifeforms Voltage Lab(Input; ?)
# Pittsburgh Modular Sequence Designer 128 (I/O; Arturia)
# Zetaohm FLXS1 (I/O; Korg)
_:zetaohm-flxs1 device:make "Zetaohm" .
_:zetaohm-flxs1 device:model "FLXS1" .
_:zetaohm-flxs1 device:eurorack true .
_:zetaohm-flxs1 device:inputs 1 .
_:zetaohm-flxs1 device:outputs 1 .
_:zetaohm-flxs1 device:typeA true .
_:zetaohm-flxs1 device:notes "Fluxus One Voltage Sequencer" .
_:zetaohm-flxs1 device:uri "https://www.zetaohm.com" .
# VPME.de trig31 (Out Arturia)
_:vpme-trig31 device:make "vpme.de" .
_:vpme-trig31 device:model "trig31" .
_:vpme-trig31 device:eurorack true .
_:vpme-trig31 device:inputs 1 .
_:vpme-trig31 device:typeB true .
_:vpme-trig31 device:uri "https://vpme.de/trig31" .
# Dreadbox Lil' Erebus (In, Korg?)
_:dreadbox-lil-erebus device:make "Dreadbox" .
_:dreadbox-lil-erebus device:model "Lil’ Erebus" .
_:dreadbox-lil-erebus device:eurorack true .
_:dreadbox-lil-erebus device:inputs 1 .
_:dreadbox-lil-erebus device:typeA true .
_:dreadbox-lil-erebus device:uri "https://www.dreadbox-fx.com/lil-erebus" .
# - Analog Solutions Treadstone(In, unknown)
# Analog Solutions Treadstone Eurorack (In, unknown)
_:analogue-solutions-treadstone device:make "Analogue Solutions" .
_:analogue-solutions-treadstone device:model "Treadstone" .
_:analogue-solutions-treadstone device:inputs 1 .
_:analogue-solutions-treadstone device:typeB true .
_:analogue-solutions-treadstone device:notes "Available as both a Eurorack module and a desktop device" .
_:analogue-solutions-treadstone device:uri "https://www.analoguesolutions.com/treadstone-synthblock" .
# mxmxmx C2M (In/Out user configurable)
_:mxmxmx-c2m device:make "mxmxmx" .
_:mxmxmx-c2m device:model "C2M" .
_:mxmxmx-c2m device:eurorack true .
_:mxmxmx-c2m device:inputs 1 .
_:mxmxmx-c2m device:outputs 1 .
_:mxmxmx-c2m device:typeA true .
_:mxmxmx-c2m device:typeB true .
_:mxmxmx-c2m device:details "“midi TRS in/out (type A/B selectable)”" .
_:mxmxmx-c2m device:uri "https://github.com/mxmxmx/CV2Midi" .
# Michigan Synthworks MBrane (MI YARNS) (I/O unknown)
_:michigan-synth-works-mbrane device:make "Michigan Synth Works" .
_:michigan-synth-works-mbrane device:model "mBrane" .
_:michigan-synth-works-mbrane device:eurorack true .
_:michigan-synth-works-mbrane device:inputs 1 .
_:michigan-synth-works-mbrane device:outputs 1 .
_:michigan-synth-works-mbrane device:typeA true .
_:michigan-synth-works-mbrane device:typeB true .
_:michigan-synth-works-mbrane device:notes "Type B cable is shipped with the device" .
_:michigan-synth-works-mbrane device:details "“Rev1.1 of the device … features PSImidi which allows ANY type of TRS MIDI cable to be used on the input.”" .
_:michigan-synth-works-mbrane device:uri "https://michigansynthworks.com/collections/euromodules-test/products/mbrane-6hp-yarns" .
# Shakmat Modular Clock O' Pawn (In: unkown)
_:shakmat-modular-clock-o-pawn device:make "Shakmat Modular" .
_:shakmat-modular-clock-o-pawn device:model "Clock O’Pawn" .
_:shakmat-modular-clock-o-pawn device:eurorack true .
_:shakmat-modular-clock-o-pawn device:inputs 1 .
_:shakmat-modular-clock-o-pawn device:typeA true .
_:shakmat-modular-clock-o-pawn device:typeB true .
_:shakmat-modular-clock-o-pawn device:notes "Two jumpers on the back of the module select Type A or Type B" .
# Placing them horizontally sets the module to TRS MIDI A standard, and vertically to TRS MIDI B.
_:shakmat-modular-clock-o-pawn device:uri "http://www.shakmatmodular.com/products/cop.html" .
# Futureretro MIDI BUS expander for Trax! (I/O Arturia)
_:future-retro-midi-bus device:make "Future Retro" .
_:future-retro-midi-bus device:model "MIDI BUS" .
_:future-retro-midi-bus device:eurorack true .
_:future-retro-midi-bus device:inputs 1 .
_:future-retro-midi-bus device:outputs 1 .
_:future-retro-midi-bus device:thrus 1 .
_:future-retro-midi-bus device:typeB true .
_:future-retro-midi-bus device:notes "MIDI expander for TRAX" .
_:future-retro-midi-bus device:uri "http://www.future-retro.com/products.html#!/MIDI-BUS/p/136062355" .
# Supercritical Synthesizers Demon Core Expander (i/o auto-crossover in & user selectable out)
_:supercritical-synthesizers-demon-core-expander device:make "Supercritical Synthesizers" .
_:supercritical-synthesizers-demon-core-expander device:model "Demon Core Expander" .
_:supercritical-synthesizers-demon-core-expander device:eurorack true .
_:supercritical-synthesizers-demon-core-expander device:inputs 1 .
_:supercritical-synthesizers-demon-core-expander device:thrus 1 .
_:supercritical-synthesizers-demon-core-expander device:typeA true .
_:supercritical-synthesizers-demon-core-expander device:typeB true .
_:supercritical-synthesizers-demon-core-expander device:details "i/o auto-crossover in & user selectable out" .
_:supercritical-synthesizers-demon-core-expander device:uri "http://supercriticalsynthesizers.com/demon-core-expander" .
# Westlicht Per|former (i/o polarity Korg)
_:westlicht-performer device:make "Westlicht" .
_:westlicht-performer device:model "PER|FORMER" .
_:westlicht-performer device:eurorack true .
_:westlicht-performer device:inputs 1 .
_:westlicht-performer device:outputs 1 .
_:westlicht-performer device:typeA true .
_:westlicht-performer device:uri "https://westlicht.github.io/performer" .
# XOXO MIDIXO (Model 92½) (i/o polarity configurable)
_:xoxo-midixo device:make "XOXO Modular" .
_:xoxo-midixo device:model "MIDIXO" .
_:xoxo-midixo device:inputs 1 .
_:xoxo-midixo device:outputs 1 .
_:xoxo-midixo device:typeA true .
_:xoxo-midixo device:typeB true .
_:xoxo-midixo device:eurorack true .
_:xoxo-midixo device:notes "Model 92½" .
_:xoxo-midixo device:details "Configurable via jumpers" .
_:xoxo-midixo device:uri "http://xoxomodular.com/midixo.html" .
# Polyend Poly 2 (i/o polarity Arturia)
_:polyend-poly-2 device:make "Polyend" .
_:polyend-poly-2 device:model "Poly 2" .
_:polyend-poly-2 device:inputs 1 .
_:polyend-poly-2 device:outputs 1 .
_:polyend-poly-2 device:thrus 1 .
_:polyend-poly-2 device:typeB true .
_:polyend-poly-2 device:eurorack true .
_:polyend-poly-2 device:uri "http://polyend.com/poly2-midi-to-cv-converter" .
# Intellijel Palette 4.5U Cases (i/o polarity ?)
_:intellijel-palette device:make "Intellijel" .
_:intellijel-palette device:model "Palette" .
_:intellijel-palette device:inputs 1 .
_:intellijel-palette device:outputs 1 .
_:intellijel-palette device:typeA true .
_:intellijel-palette device:notes "Can be connected to µMIDI 1U" .
_:intellijel-palette device:uri "https://intellijel.com/shop/cases/4u-palette-eurorack-case" .
# Non Modular:
# - Make Noise 0-Coast (In; Polarity Korg)
_:makenoise-0-coast device:make "Make Noise" .
_:makenoise-0-coast device:model "0-Coast" .
_:makenoise-0-coast device:inputs 1 .
_:makenoise-0-coast device:typeA true .
_:makenoise-0-coast device:uri "http://www.makenoisemusic.com/synthesizers/ohcoast" .
# - Korg Electribe 2/Sampler (I/O; Polarity Korg)
_:korg-electribe-sampler device:make "Korg" .
_:korg-electribe-sampler device:model "Electribe Sampler" .
_:korg-electribe-sampler device:inputs 1 .
_:korg-electribe-sampler device:outputs 1 .
_:korg-electribe-sampler device:typeA true .
_:korg-electribe-sampler device:uri "https://www.korg.com/us/products/dj/electribe_sampler" .
# - Korg NTS-1 (In; Polarity Korg)
_:korg-nts-1 device:make "Korg" .
_:korg-nts-1 device:model "NTS-1" .
_:korg-nts-1 device:inputs 1 .
_:korg-nts-1 device:typeA true .
_:korg-nts-1 device:uri "https://www.korg.com/us/products/dj/nts_1/" .
# - Korg SQ-1 (Out; Polarity Korg)
_:korg-sq-1 device:make "Korg" .
_:korg-sq-1 device:model "SQ-1" .
_:korg-sq-1 device:outputs 1 .
_:korg-sq-1 device:typeA true .
_:korg-sq-1 device:uri "https://www.korg.com/us/products/dj/sq_1" .
# - Arturia Beatstep (Out) & BS Pro (I/O; Polarity Arturia)
_:arturia-beatstep device:make "Arturia" .
_:arturia-beatstep device:model "Beatstep" .
_:arturia-beatstep device:outputs 1 .
_:arturia-beatstep device:typeTS true .
_:arturia-beatstep device:uri "https://www.arturia.com/beatstep/overview" .
_:arturia-beatstep-pro device:make "Arturia" .
_:arturia-beatstep-pro device:model "Beatstep Pro" .
_:arturia-beatstep-pro device:inputs 1 .
_:arturia-beatstep-pro device:outputs 1 .
_:arturia-beatstep-pro device:typeB true .
_:arturia-beatstep-pro device:uri "https://www.arturia.com/products/hybrid-synths/beatstep-pro/overview" .
# - Novation Launchpad Pro (I/O; Polarity Arturia?)
_:novation-launchpad-pro device:make "Novation" .
_:novation-launchpad-pro device:model "Launchpad Pro" .
_:novation-launchpad-pro device:inputs 1 .
_:novation-launchpad-pro device:outputs 1 .
_:novation-launchpad-pro device:typeB true .
_:novation-launchpad-pro device:uri "https://novationmusic.com/launch/launchpad-pro" .
# - Novation Circuit (I/O; Polarity Arturia?)
_:novation-circuit device:make "Novation" .
_:novation-circuit device:model "Circuit" .
_:novation-circuit device:inputs 1 .
_:novation-circuit device:outputs 1 .
_:novation-circuit device:typeB true .
_:novation-circuit device:uri "https://novationmusic.com/circuit/circuit" .
# - Novation Circuit Mono Station (I/O & Thru; Polarity Arturia?)
_:novation-circuit-mono-station device:make "Novation" .
_:novation-circuit-mono-station device:model "Circuit Mono Station" .
_:novation-circuit-mono-station device:inputs 1 .
_:novation-circuit-mono-station device:outputs 1 .
_:novation-circuit-mono-station device:thrus 1 .
_:novation-circuit-mono-station device:typeB true .
_:novation-circuit-mono-station device:uri "https://novationmusic.com/circuit/circuit-mono-station" .
# - Novation Launchkey Mini (mk3) (Output; Type A)
_:novation-launchkey-mini-mk3 device:make "Novation" .
_:novation-launchkey-mini-mk3 device:model "Launchkey Mini (mk3)" .
_:novation-launchkey-mini-mk3 device:outputs 1 .
_:novation-launchkey-mini-mk3 device:typeA true .
_:novation-launchkey-mini-mk3 device:uri "https://novationmusic.com/en/keys/launchkey-mini" .
_:novation-launchkey-mini-mk3 device:notes "TRS MIDI was introduced in the mk3 version" .
# - Faderfox SC4 (I/O; Arturia?)
_:faderfox-sc4 device:make "Faderfox" .
_:faderfox-sc4 device:model "SC4" .
_:faderfox-sc4 device:inputs 1 .
_:faderfox-sc4 device:outputs 1 .
_:faderfox-sc4 device:typeB true .
_:faderfox-sc4 device:uri "http://www.faderfox.de/sc4.html" .
# - Twisted Electrons Acid8 (I/O unknown)
_:twisted-electrons-acid8-mkiii device:make "Twisted Electrons" .
_:twisted-electrons-acid8-mkiii device:model "Acid8 MKIII" .
_:twisted-electrons-acid8-mkiii device:inputs 1 .
_:twisted-electrons-acid8-mkiii device:typeA true .
_:twisted-electrons-acid8-mkiii device:uri "https://twisted-electrons.com/product/acid8-mkiii" .
# - Twisted Electrons AY3 (Input unknown)
_:twisted-electrons-ay3 device:make "Twisted Electrons" .
_:twisted-electrons-ay3 device:model "AY3" .
_:twisted-electrons-ay3 device:inputs 1 .
_:twisted-electrons-ay3 device:typeA true .
_:twisted-electrons-ay3 device:notes "Available as both a Eurorack module and a desktop device" .
_:twisted-electrons-ay3 device:uri "https://twisted-electrons.com/product/ay3" .
# - Twisted Electrons Crazy8 (I/O unknown)
_:twisted-electrons-crazy8 device:make "Twisted Electrons" .
_:twisted-electrons-crazy8 device:model "Crazy8" .
_:twisted-electrons-crazy8 device:inputs 1 .
_:twisted-electrons-crazy8 device:outputs 2 .
_:twisted-electrons-crazy8 device:typeA true .
_:twisted-electrons-crazy8 device:uri "https://twisted-electrons.com/product/crazy8" .
# - Twisted Electrons Crazy8 Beats (i/o unknown) - also standalone
_:twisted-electrons-crazy8-beats device:make "Twisted Electrons" .
_:twisted-electrons-crazy8-beats device:model "Crazy8 Beats" .
_:twisted-electrons-crazy8-beats device:inputs 1 .
_:twisted-electrons-crazy8-beats device:outputs 2 .
_:twisted-electrons-crazy8-beats device:typeA true .
_:twisted-electrons-crazy8-beats device:notes "Available as both a Eurorack module and a desktop device" .
_:twisted-electrons-crazy8-beats device:uri "https://twisted-electrons.com/product/crazy8beats" .
# - Twisted Electrons hapiNes(In: unknown)
_:twisted-electrons-hapines device:make "Twisted Electrons" .
_:twisted-electrons-hapines device:model "hapiNES L" .
_:twisted-electrons-hapines device:inputs 1 .
_:twisted-electrons-hapines device:typeA true .
_:twisted-electrons-hapines device:uri "https://twisted-electrons.com/product/hapines-l" .
# - Twisted Electrons TherapSid MkII(I/O: unknown)
_:twisted-electrons-therapsid-mkii device:make "Twisted Electrons" .
_:twisted-electrons-therapsid-mkii device:model "TherapSid MKII" .
_:twisted-electrons-therapsid-mkii device:inputs 1 .
_:twisted-electrons-therapsid-mkii device:outputs 1 .
_:twisted-electrons-therapsid-mkii device:typeA true .
_:twisted-electrons-therapsid-mkii device:uri "https://twisted-electrons.com/product/therapsid" .
# - IK Multimedia Uno (I/O unknown)
# - IK Multimedia UnoDrum (I/O, unknown)
# - Teenage Engineering OP-Z with oplab (I/O; polarity Korg??)
# the documentation says “the input uses the standard type a midi 3.5 mm connector pinout”
# but then says “(tip = source, ring = sink)”, which is type b
# confimed with a user of the device that it is type A
# https://teenage.engineering/guides/op-z/modules/oplab
_:teenage-engineering-op-z device:make "Teenage Engineering" .
_:teenage-engineering-op-z device:model "OP-Z with oplab" .
_:teenage-engineering-op-z device:inputs 1 .
_:teenage-engineering-op-z device:outputs 1 .
_:teenage-engineering-op-z device:typeA true .
_:teenage-engineering-op-z device:uri "https://teenage.engineering/products/op-z/modules/oplab" .
# - Teenage Engineering Pocket Modular 16 (Output: polarity Korg)
_:teenage-engineering-pocketmodular-16 device:make "Teenage Engineering" .
_:teenage-engineering-pocketmodular-16 device:model "Pocket Modular 16" .
_:teenage-engineering-pocketmodular-16 device:outputs 1 .
_:teenage-engineering-pocketmodular-16 device:typeA true .
_:teenage-engineering-pocketmodular-16 device:notes "See the guide: https://teenage.engineering/guides/po-modular/16" .
_:teenage-engineering-pocketmodular-16 device:uri "https://teenage.engineering/products/po/modular" .
# - Elektron Model:Samples (I/O polarity ?)
# configurable, but unclear which is default
_:elektron-model-samples device:make "Elektron" .
_:elektron-model-samples device:model "Model:Samples" .
_:elektron-model-samples device:inputs 1 .
_:elektron-model-samples device:outputs 1 .
_:elektron-model-samples device:thrus 1 .
_:elektron-model-samples device:typeA true .
_:elektron-model-samples device:typeB true .
_:elektron-model-samples device:notes "Configurable, see: https://www.elektronauts.com/t/elektron-3-5mmtrs-din-midi-adapters/81634/14" .
_:elektron-model-samples device:uri "https://www.elektron.se/products/modelsamples" .
# - Critter And Guitari Organelle mk2 (I/O polarity Arturia)
# from the adapter cable description:
# > This adapter cable is TRS-MIDI Type A as set by the MIDI Manufacturers Association. Type A is the adopted standard of the MMA.
# link to manual:
# https://www.critterandguitari.com/manual?m=Organelle_M_Manual
_:critter-and-guitari-organelle-m device:make "Critter & Guitari" .
_:critter-and-guitari-organelle-m device:model "Organelle M" .
_:critter-and-guitari-organelle-m device:inputs 1 .
_:critter-and-guitari-organelle-m device:outputs 1 .
_:critter-and-guitari-organelle-m device:typeA true .
_:critter-and-guitari-organelle-m device:notes "TRS MIDI I/O was added for the second-generation Organelle, the one with a built-in speaker" .
_:critter-and-guitari-organelle-m device:uri "https://www.critterandguitari.com/organelle" .
# - Empress Effects Zoia (I/O polarity ?)
_:empress-zoia device:make "Empress" .
_:empress-zoia device:model "Zoia" .
_:empress-zoia device:inputs 1 .
_:empress-zoia device:outputs 1 .
_:empress-zoia device:typeA true .
_:empress-zoia device:uri "https://empresseffects.com/products/zoia" .
# - M-Audio Air Interface Series (I/O Type ?)
_:maudio-air device:make "M-Audio" .
_:maudio-air device:model "Air 192|14" .
_:maudio-air device:inputs 1 .
_:maudio-air device:outputs 1 .
_:maudio-air device:typeA true .
_:maudio-air device:uri "https://m-audio.com/air-192-14" .
_:akai-force device:make "Akai" .
_:akai-force device:model "Force" .
_:akai-force device:inputs 1 .
_:akai-force device:outputs 1 .
_:akai-force device:thrus 1 .
_:akai-force device:typeA true .
_:akai-force device:uri "https://www.akaipro.com/force-forcexus" .
_:akai-mpc-touch device:make "Akai" .
_:akai-mpc-touch device:model "MPC Touch" .
_:akai-mpc-touch device:inputs 1 .
_:akai-mpc-touch device:outputs 1 .
_:akai-mpc-touch device:typeA true .
_:akai-mpc-touch device:uri "https://www.akaipro.com/mpc-touch" .
_:jakplugg-threshold device:make "Jakplugg" .
_:jakplugg-threshold device:model "Threshold" .
_:jakplugg-threshold device:inputs 1 .
_:jakplugg-threshold device:typeA true .
_:jakplugg-threshold device:typeB true .
_:jakplugg-threshold device:notes "The MIDI 3.5 mm jack can take either polarity MIDI input cable." .
_:jakplugg-threshold device:details "Variation on the open source Mutable Instruments Edges with MIDI expander built-in" .
_:jakplugg-threshold device:uri "https://github.com/jakplugg/Threshold" .
_:michigan-synth-works-threshold device:make "Michigan Synth Works" .
_:michigan-synth-works-threshold device:model "Threshold" .
_:michigan-synth-works-threshold device:inputs 1 .
_:michigan-synth-works-threshold device:typeA true .
_:michigan-synth-works-threshold device:typeB true .
_:michigan-synth-works-threshold device:notes "“PSImidi … allows any TRS midi cable to be used.”" .
_:michigan-synth-works-threshold device:details "10HP Edges Clone with integrated midi interface" .
_:michigan-synth-works-threshold device:uri "https://michigansynthworks.com/collections/euromodules-test/products/threshold-10hp-edges-with-integrated-midi-expander" .
_:flame-qmcv device:make "Flame" .
_:flame-qmcv device:model "µQMCV" .
_:flame-qmcv device:eurorack true .
_:flame-qmcv device:inputs 1 .
_:flame-qmcv device:thrus 1 .
_:flame-qmcv device:typeB true .
_:flame-qmcv device:uri "http://flame.fortschritt-musik.de/flame2/instruments_modular.html" .
_:boss-rc-10r device:make "BOSS" .
_:boss-rc-10r device:model "RC-10R" .
_:boss-rc-10r device:inputs 1 .
_:boss-rc-10r device:outputs 1 .
_:boss-rc-10r device:typeA true .
_:boss-rc-10r device:uri "https://www.boss.info/global/products/rc-10r" .
_:retrokits-rk-006 device:make "Retrokits" .
_:retrokits-rk-006 device:model "RK-006" .
_:retrokits-rk-006 device:inputs 2 .
_:retrokits-rk-006 device:outputs 10 .
_:retrokits-rk-006 device:typeA true .
_:retrokits-rk-006 device:notes "Portable USB MIDI/Gate Hub" .
_:retrokits-rk-006 device:details "TRS-A output tip switchable to Gate/PWM" .
_:retrokits-rk-006 device:uri "https://www.retrokits.com/shop/rk006" .
_:retrokits-rk-008 device:make "Retrokits" .
_:retrokits-rk-008 device:model "RK-008" .
_:retrokits-rk-008 device:inputs 2 .
_:retrokits-rk-008 device:outputs 2 .
_:retrokits-rk-008 device:typeA true .
_:retrokits-rk-008 device:notes "Real-time MIDI Recorder/Performer" .
_:retrokits-rk-008 device:uri "https://www.retrokits.com/shop/rk008" .
_:polyend-tracker device:make "Polyend" .
_:polyend-tracker device:model "Tracker" .
_:polyend-tracker device:inputs 1 .
_:polyend-tracker device:outputs 1 .
_:polyend-tracker device:typeB true .
_:polyend-tracker device:uri "https://polyend.com/tracker" .
_:polyend-tracker device:details "via https://help.polyend.com/639766-Is-the-Polyend-Tracker-MIDI-compatible" .
_:michigan-synth-works-xvi device:make "Michigan Synth Works" .
_:michigan-synth-works-xvi device:model "XVI" .
_:michigan-synth-works-xvi device:outputs 1 .
_:michigan-synth-works-xvi device:typeA true .
_:michigan-synth-works-xvi device:notes "XVI Desktop USB 16 Channel Fader Bank with CV, I2C, and MIDI" .
_:michigan-synth-works-xvi device:details "As of serial #4161, all devices have TRS MIDI A. Earlier units support TRS MIDI B." .
_:michigan-synth-works-xvi device:uri "https://michigansynthworks.com/products/xvi-desktop-usb-16-channel-fader-bank-with-cv-i2c-and-midi" .
_:novation-launchpad-pro-mk3 device:make "Novation" .
_:novation-launchpad-pro-mk3 device:model "Launchpad Pro (mk3)" .
_:novation-launchpad-pro-mk3 device:inputs 1 .
_:novation-launchpad-pro-mk3 device:outputs 2 .
_:novation-launchpad-pro-mk3 device:thrus 1 .
_:novation-launchpad-pro-mk3 device:typeA true .
_:novation-launchpad-pro-mk3 device:notes "TRS MIDI Type A was introduced with the MK3 version. Device has two outs, one which can act as a thru port." .
_:novation-launchpad-pro-mk3 device:uri "https://novationmusic.com/launch/launchpad-pro" .
_:expressivee-touche device:make "Expressive E" .
_:expressivee-touche device:model "Touché" .
_:expressivee-touche device:inputs 1 .
_:expressivee-touche device:outputs 1 .
_:expressivee-touche device:typeB true .
_:expressivee-touche device:uri "https://www.expressivee.com/1-touche" .
_:arturia-microfreak device:make "Arturia" .
_:arturia-microfreak device:model "MicroFreak" .
_:arturia-microfreak device:inputs 1 .
_:arturia-microfreak device:outputs 1 .
_:arturia-microfreak device:typeB true .
_:arturia-microfreak device:uri "https://www.arturia.com/products/hardware-synths/microfreak/overview" .
_:eowave-quadrantid-swarm device:make "Eowave" .
_:eowave-quadrantid-swarm device:model "Quadrantid Swarm" .
_:eowave-quadrantid-swarm device:inputs 1 .
_:eowave-quadrantid-swarm device:typeB true .
_:eowave-quadrantid-swarm device:details "Also available in Eurorack" .
_:eowave-quadrantid-swarm device:uri "https://www.eowave.com/synthesizers/quadrantid-swarm" .
_:korg-sq-64 device:make "Korg" .
_:korg-sq-64 device:model "SQ-64" .
_:korg-sq-64 device:inputs 1 .
_:korg-sq-64 device:outputs 2 .
_:korg-sq-64 device:typeA true .
_:korg-sq-64 device:notes "Poly Sequencer" .
_:korg-sq-64 device:uri "https://www.korg.com/us/products/dj/sq_64" .
_:mod-dwarf device:make "MOD" .
_:mod-dwarf device:model "Dwarf" .
_:mod-dwarf device:inputs 1 .
_:mod-dwarf device:outputs 1 .
_:mod-dwarf device:typeA true .
_:mod-dwarf device:uri "https://moddevices.com/products/dwarf" .
_:bastl-midilooper device:make "Bastl" .
_:bastl-midilooper device:model "Midilooper" .
_:bastl-midilooper device:inputs 1 .
_:bastl-midilooper device:typeA true .
_:bastl-midilooper device:notes "clock input accepts analog clock or TRS MIDI Clock" .
_:bastl-midilooper device:uri "https://bastl-instruments.com/instruments/midilooper" .
_:dirtywave-m8 device:make "Dirtywave" .
_:dirtywave-m8 device:model "M8" .
_:dirtywave-m8 device:inputs 1 .
_:dirtywave-m8 device:outputs 1 .
_:dirtywave-m8 device:typeA true .
_:dirtywave-m8 device:notes "Portable handheld tracker, sequencer, and synthesizer with USB audio and MIDI" .
_:dirtywave-m8 device:uri "https://dirtywave.com" .
_:audiothingies-micromonsta-2 device:make "Audiothingies" .
_:audiothingies-micromonsta-2 device:model "MicroMonsta 2" .
_:audiothingies-micromonsta-2 device:inputs 1 .
_:audiothingies-micromonsta-2 device:typeA true .
_:audiothingies-micromonsta-2 device:notes "Dual polyphonic synthesizer" .
_:audiothingies-micromonsta-2 device:uri "https://www.audiothingies.com/product/micromonsta2" .
_:boss-sl-2 device:make "Boss" .
_:boss-sl-2 device:model "SL-2 Slicer" .
_:boss-sl-2 device:inputs 1 .
_:boss-sl-2 device:typeA true .
_:boss-sl-2 device:notes "Audio chopper guitar pedal" .
_:boss-sl-2 device:uri "https://www.boss.info/global/products/sl-2/" .
_:roland-sp-404-mk2 device:make "Roland" .
_:roland-sp-404-mk2 device:model "SP-404MKII" .
_:roland-sp-404-mk2 device:inputs 1 .
_:roland-sp-404-mk2 device:outputs 1 .
_:roland-sp-404-mk2 device:typeA true .
_:roland-sp-404-mk2 device:notes "Digital sampler" .
_:roland-sp-404-mk2 device:uri "https://www.roland.com/global/products/sp-404mk2/" .
# Roland Aira Compact Series
_:roland-t-8 device:make "Roland" .
_:roland-t-8 device:model "T-8" .
_:roland-t-8 device:inputs 1 .
_:roland-t-8 device:outputs 1 .
_:roland-t-8 device:typeA true .
_:roland-t-8 device:notes "Drum Machine and 303 emulation" .
_:roland-t-8 device:uri "https://www.roland.com/us/products/t-8/" .
_:roland-j-6 device:make "Roland" .
_:roland-j-6 device:model "J-6" .
_:roland-j-6 device:inputs 1 .
_:roland-j-6 device:outputs 1 .
_:roland-j-6 device:typeA true .
_:roland-j-6 device:notes "Juno emulation with Chord Sequencer" .
_:roland-j-6 device:uri "https://www.roland.com/us/products/j-6/" .
_:roland-e-4 device:make "Roland" .
_:roland-e-4 device:model "E-4" .
_:roland-e-4 device:inputs 1 .
_:roland-e-4 device:outputs 1 .
_:roland-e-4 device:typeA true .
_:roland-e-4 device:notes "Voice processor" .
_:roland-e-4 device:uri "https://www.roland.com/us/products/e-4/" .
_:roland-s-1 device:make "Roland" .
_:roland-s-1 device:model "S-1" .
_:roland-s-1 device:inputs 1 .
_:roland-s-1 device:outputs 1 .
_:roland-s-1 device:typeA true .
_:roland-s-1 device:notes "Extended SH-101 emulation" .
_:roland-s-1 device:uri "https://www.roland.com/us/products/s-1/" .
_:moog-subharmonicon device:make "Moog" .
_:moog-subharmonicon device:model "Subharmonicon" .
_:moog-subharmonicon device:inputs 1 .
_:moog-subharmonicon device:typeA true .
_:moog-subharmonicon device:details "Subharmonicon can receive master clock (TEMPO) information, note data, and various CC (Control Change) messages via MIDI." .
_:moog-subharmonicon device:uri "https://www.moogmusic.com/products/subharmonicon" .
_:befaco-cv-thing device:make "Befaco" .
_:befaco-cv-thing device:model "CV Thing" .
_:befaco-cv-thing device:outputs 1 .
_:befaco-cv-thing device:typeA true .
_:befaco-cv-thing device:uri "https://www.befaco.org/cv_thing" .
_:dreadbox-nymphes device:make "Dreadbox" .
_:dreadbox-nymphes device:model "Nymphes" .
_:dreadbox-nymphes device:inputs 1 .
_:dreadbox-nymphes device:typeA true .
_:dreadbox-nymphes device:uri "https://www.dreadbox-fx.com/nymphes" .
# Cejetvole Super MIDI Pak
_:cejetvole-super-midi-pak device:make "Cejetvole" .
_:cejetvole-super-midi-pak device:model "Super MIDI Pak" .
_:cejetvole-super-midi-pak device:inputs 1 .
_:cejetvole-super-midi-pak device:outputs 1 .
_:cejetvole-super-midi-pak device:typeA true .
_:cejetvole-super-midi-pak device:details "MIDI synthesizer for the Super Famicom/Super Nintendo/Super NT" .
_:cejetvole-super-midi-pak device:uri "https://www.supermidipak.com/" .
_:ryk-vector-wave device:make "RYK Modular" .
_:ryk-vector-wave device:model "Vector Wave" .
_:ryk-vector-wave device:inputs 1 .
_:ryk-vector-wave device:swappable true .
_:ryk-vector-wave device:typeA true .
_:ryk-vector-wave device:typeB true .
_:ryk-vector-wave device:notes "FM / Harmonic Vector Stereo Synth Voice" .
_:ryk-vector-wave device:details "A micro switch on the back of the module sets TRS MIDI polarity" .
_:ryk-vector-wave device:uri "https://rykmodular.bigcartel.com/product/vector-wave" .
_:ryk-vector-wave device:eurorack true .
_:novation-flkey-mini device:make "Novation" .
_:novation-flkey-mini device:model "FLkey Mini" .
_:novation-flkey-mini device:outputs 1 .
_:novation-flkey-mini device:typeA true .
_:novation-flkey-mini device:notes "MIDI Keyboard" .
_:novation-flkey-mini device:uri "https://novationmusic.com/en/keys/flkey" .
_:dermannmitdermaschine-droid-x7 device:make "Der Mann mit der Maschine" .
_:dermannmitdermaschine-droid-x7 device:model "DROID X7" .
_:dermannmitdermaschine-droid-x7 device:inputs 1 .
_:dermannmitdermaschine-droid-x7 device:outputs 1 .
_:dermannmitdermaschine-droid-x7 device:typeA true .
_:dermannmitdermaschine-droid-x7 device:typeB true .
_:dermannmitdermaschine-droid-x7 device:notes "MIDI and USB Expander" .
_:dermannmitdermaschine-droid-x7 device:uri "https://shop.dermannmitdermaschine.de/collections/droid-master/products/x7" .
_:ziqal-dimension-mk3 device:make "Ziqal" .
_:ziqal-dimension-mk3 device:model "Dimension MK3" .
_:ziqal-dimension-mk3 device:inputs 1 .
_:ziqal-dimension-mk3 device:typeA true .
_:ziqal-dimension-mk3 device:notes "Wavetable Processor" .
_:ziqal-dimension-mk3 device:uri "https://ziqal.com/?v=d3dcf429c679" .
_:oxi-instruments-oxi-one device:make "OXI Instruments" .
_:oxi-instruments-oxi-one device:model "OXI One" .
_:oxi-instruments-oxi-one device:inputs 1 .
_:oxi-instruments-oxi-one device:outputs 1 .
_:oxi-instruments-oxi-one device:typeA true .
_:oxi-instruments-oxi-one device:notes "Grid Sequencer" .
_:oxi-instruments-oxi-one device:uri "https://oxiinstruments.com/oxi-one" .
_:mengqi-wingie2 device:make "Meng Qi" .
_:mengqi-wingie2 device:model "Wingie2" .
_:mengqi-wingie2 device:inputs 1 .
_:mengqi-wingie2 device:typeA true .
_:mengqi-wingie2 device:uri "https://www.mengqimusic.com/wingie2-introduction" .
_:mengqi-wingpinger device:make "Meng Qi" .
_:mengqi-wingpinger device:model "Wing Pinger" .
_:mengqi-wingpinger device:inputs 1 .
_:mengqi-wingpinger device:outputs 1 .
_:mengqi-wingpinger device:typeA true .
_:mengqi-wingpinger device:uri "https://www.mengqimusic.com/wingpinger-introduction" .
_:sds-digital-k-accord-melisma device:make "SDS Digital & K" .
_:sds-digital-k-accord-melisma device:model "Accord Melisma" .
_:sds-digital-k-accord-melisma device:outputs 1 .
_:sds-digital-k-accord-melisma device:typeA true .
_:sds-digital-k-accord-melisma device:uri "https://freshnelly.com/melisma/melisma.htm" .
_:kinotone-ribbons device:make "Kinotone" .
_:kinotone-ribbons device:model "Ribbons" .
_:kinotone-ribbons device:inputs 1 .
_:kinotone-ribbons device:swappable true .
_:kinotone-ribbons device:typeA true .
_:kinotone-ribbons device:typeB true .
_:kinotone-ribbons device:details "Internal jumpers select TRS MIDI variant: A (factory default), B, or CBA (Chase Bliss)" .
_:kinotone-ribbons device:uri "https://kinotoneaudio.com/products/ribbons" .
_:tubbutec-6equencer device:make "Tubbutec" .
_:tubbutec-6equencer device:model "6equencer" .
_:tubbutec-6equencer device:inputs 1 .
_:tubbutec-6equencer device:outputs 1 .
_:tubbutec-6equencer device:thrus 0 .
_:tubbutec-6equencer device:swappable false .
_:tubbutec-6equencer device:typeA true .
_:tubbutec-6equencer device:typeB false .
_:tubbutec-6equencer device:notes "TR style drum sequencer" .
_:tubbutec-6equencer device:details "TR style drum sequencer with MIDI and 8 trigger outputs" .
_:tubbutec-6equencer device:uri "https://tubbutec.de/6equencer" .
_:tubbutec-6equencer device:eurorack true .
_:tubbutec-usbbridgea device:make "Tubbutec" .
_:tubbutec-usbbridgea device:model "USB Bridge A" .
_:tubbutec-usbbridgea device:inputs 1 .
_:tubbutec-usbbridgea device:outputs 1 .
_:tubbutec-usbbridgea device:thrus 0 .
_:tubbutec-usbbridgea device:swappable false .
_:tubbutec-usbbridgea device:typeA true .
_:tubbutec-usbbridgea device:typeB false .
_:tubbutec-usbbridgea device:notes "Dual USB Midi Host" .
_:tubbutec-usbbridgea device:details "MIDI USB and TRS router / merger" .
_:tubbutec-usbbridgea device:uri "https://tubbutec.de/usb-bridge-a" .