forked from bitfocus/companion-module-behringer-xair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
defOuts.js
42 lines (42 loc) · 770 Bytes
/
defOuts.js
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
export const defOuts = [
{
'id': 'main',
'digits': 1,
'min': 1,
'max': 2,
'srcAmt': 10,
'description': 'Main/Phones Outs',
'hasPos': false,
'srcs': ['LR', 'Mon', 'UOut'],
},
{
'id': 'aux',
'digits': 1,
'min': 1,
'max': 6,
'srcAmt': 55,
'description': 'Aux Outs',
'hasPos': true,
'srcs': ['Ch', 'Aux', 'FxRtn', 'Bus', 'FxSnd', 'L', 'R', 'UOut'],
},
{
'id': 'p16',
'digits': 2,
'min': 1,
'max': 16,
'srcAmt': 55,
'description': 'P16 Outs',
'hasPos': true,
'srcs': ['Ch', 'Aux', 'FxRtn', 'Bus', 'FxSnd', 'L', 'R', 'UOut'],
},
{
'id': 'usb',
'digits': 2,
'min': 1,
'max': 16,
'srcAmt': 37,
'description': 'USB sends Outs',
'hasPos': true,
'srcs': ['Ch', 'Aux', 'FxRtn', 'Bus', 'FxSnd', 'L', 'R'],
},
]