-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathmonitorsorl.js
More file actions
93 lines (80 loc) · 2.12 KB
/
monitorsorl.js
File metadata and controls
93 lines (80 loc) · 2.12 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
nmPorts = {
'MonitorsDag':'SCSon:6675',
'MonitorsJeannot':'SCSon:6676',
'MonitorsORL':'SCSon:6677',
'Mains':'SCSon:6678',
}
TABS = {
MonitorsORL:{
title: 'Monitor ORL',
widgets: {
moDrums: {
title:'Drums',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/Drums/Gain/Gain%20(dB)/unscaled'
},
moBasses: {
title:'Basses',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/Basses/Gain/Gain%20(dB)/unscaled'
},
moGuitars: {
title:'Guitars',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/Guitars/Gain/Gain%20(dB)/unscaled'
},
moMxDrums: {
title:'MxDrums',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/MxDrums/Gain/Gain%20(dB)/unscaled'
},
moMxSynths: {
title:'MxSynths',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/MxSynths/Gain/Gain%20(dB)/unscaled'
},
moVocals: {
title:'Vocals',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/Vocals/Gain/Gain%20(dB)/unscaled'
},
moBassORL: {
title:'BassORL',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/BassORL/Gain/Gain%20(dB)/unscaled'
},
moGuitarORL: {
title:'GuitarORL',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/GuitarORL/Gain/Gain%20(dB)/unscaled'
},
moVxORL: {
title:'VxORL',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/VxORL/Gain/Gain%20(dB)/unscaled'
},
moMetronome: {
title:'Metronome',
range:'db',
target:nmPorts['MonitorsORL'],
path:'/strip/Metronome/Gain/Gain%20(dB)/unscaled'
},
MonitorsORL: {
title:'MonitorsORL',
range:'db',
target:nmPorts['Mains'],
path:'/strip/MonitorsORL/Gain/Gain%20(dB)/unscaled',
color:'#777'
}
}
}
}