@chauvet/connect-base-profiles 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/base-profiles.iml +8 -0
- package/.idea/modules.xml +8 -0
- package/.idea/php.xml +19 -0
- package/dist/baseProfiles.d.ts +20 -0
- package/dist/baseProfiles.js +415 -0
- package/package.json +17 -0
- package/src/baseProfiles.ts +439 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="inheritedJdk" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
</component>
|
|
8
|
+
</module>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/base-profiles.iml" filepath="$PROJECT_DIR$/.idea/base-profiles.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
package/.idea/php.xml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="MessDetectorOptionsConfiguration">
|
|
4
|
+
<option name="transferred" value="true" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="PHPCSFixerOptionsConfiguration">
|
|
7
|
+
<option name="transferred" value="true" />
|
|
8
|
+
</component>
|
|
9
|
+
<component name="PHPCodeSnifferOptionsConfiguration">
|
|
10
|
+
<option name="highlightLevel" value="WARNING" />
|
|
11
|
+
<option name="transferred" value="true" />
|
|
12
|
+
</component>
|
|
13
|
+
<component name="PhpStanOptionsConfiguration">
|
|
14
|
+
<option name="transferred" value="true" />
|
|
15
|
+
</component>
|
|
16
|
+
<component name="PsalmOptionsConfiguration">
|
|
17
|
+
<option name="transferred" value="true" />
|
|
18
|
+
</component>
|
|
19
|
+
</project>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface BaseProfile {
|
|
2
|
+
profileId: number;
|
|
3
|
+
channels: number;
|
|
4
|
+
rgbRelation: {
|
|
5
|
+
r: number;
|
|
6
|
+
g: number;
|
|
7
|
+
b: number;
|
|
8
|
+
};
|
|
9
|
+
whiteLocation: number;
|
|
10
|
+
amberLocation: number;
|
|
11
|
+
whiteMacrosLocation: number;
|
|
12
|
+
uvLocation: number;
|
|
13
|
+
dimmerLocation: number;
|
|
14
|
+
fineDimmerLocation: number;
|
|
15
|
+
strobeLocation: number;
|
|
16
|
+
whiteMacros: Record<string, number> | null;
|
|
17
|
+
name: string;
|
|
18
|
+
}
|
|
19
|
+
declare const baseProfiles: Record<number, BaseProfile>;
|
|
20
|
+
export default baseProfiles;
|
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+
const baseProfiles = {
|
|
2
|
+
50: {
|
|
3
|
+
profileId: 50,
|
|
4
|
+
channels: 10,
|
|
5
|
+
rgbRelation: {
|
|
6
|
+
r: 2,
|
|
7
|
+
g: 3,
|
|
8
|
+
b: 4,
|
|
9
|
+
},
|
|
10
|
+
whiteLocation: 0,
|
|
11
|
+
amberLocation: 5,
|
|
12
|
+
whiteMacrosLocation: 7,
|
|
13
|
+
uvLocation: 0,
|
|
14
|
+
dimmerLocation: 1,
|
|
15
|
+
fineDimmerLocation: 0,
|
|
16
|
+
strobeLocation: 6,
|
|
17
|
+
whiteMacros: {
|
|
18
|
+
'2800': 6,
|
|
19
|
+
'3200': 26,
|
|
20
|
+
'3500': 51,
|
|
21
|
+
'4000': 76,
|
|
22
|
+
'4500': 101,
|
|
23
|
+
'5000': 126,
|
|
24
|
+
'5600': 151,
|
|
25
|
+
'6000': 176,
|
|
26
|
+
'6500': 201,
|
|
27
|
+
},
|
|
28
|
+
name: 'WELL FIT',
|
|
29
|
+
},
|
|
30
|
+
60: {
|
|
31
|
+
profileId: 60,
|
|
32
|
+
channels: 12,
|
|
33
|
+
rgbRelation: {
|
|
34
|
+
r: 4,
|
|
35
|
+
g: 5,
|
|
36
|
+
b: 6,
|
|
37
|
+
},
|
|
38
|
+
whiteLocation: 7,
|
|
39
|
+
amberLocation: 0,
|
|
40
|
+
whiteMacrosLocation: 9,
|
|
41
|
+
uvLocation: 0,
|
|
42
|
+
dimmerLocation: 1,
|
|
43
|
+
fineDimmerLocation: 2,
|
|
44
|
+
strobeLocation: 3,
|
|
45
|
+
whiteMacros: {
|
|
46
|
+
'2800': 6,
|
|
47
|
+
'3200': 26,
|
|
48
|
+
'3500': 51,
|
|
49
|
+
'4000': 76,
|
|
50
|
+
'4500': 101,
|
|
51
|
+
'5000': 126,
|
|
52
|
+
'5600': 151,
|
|
53
|
+
'6000': 176,
|
|
54
|
+
'6500': 201,
|
|
55
|
+
},
|
|
56
|
+
name: 'WELL FIT X',
|
|
57
|
+
},
|
|
58
|
+
150: {
|
|
59
|
+
profileId: 150,
|
|
60
|
+
channels: 12,
|
|
61
|
+
rgbRelation: {
|
|
62
|
+
r: 4,
|
|
63
|
+
g: 5,
|
|
64
|
+
b: 6,
|
|
65
|
+
},
|
|
66
|
+
whiteLocation: 7,
|
|
67
|
+
amberLocation: 0,
|
|
68
|
+
whiteMacrosLocation: 9,
|
|
69
|
+
uvLocation: 0,
|
|
70
|
+
dimmerLocation: 1,
|
|
71
|
+
fineDimmerLocation: 2,
|
|
72
|
+
strobeLocation: 3,
|
|
73
|
+
whiteMacros: {
|
|
74
|
+
'2800': 6,
|
|
75
|
+
'3200': 26,
|
|
76
|
+
'3500': 51,
|
|
77
|
+
'4000': 76,
|
|
78
|
+
'4500': 101,
|
|
79
|
+
'5000': 126,
|
|
80
|
+
'5600': 151,
|
|
81
|
+
'6000': 176,
|
|
82
|
+
'6500': 201,
|
|
83
|
+
},
|
|
84
|
+
name: 'WELL POD 2',
|
|
85
|
+
},
|
|
86
|
+
160: {
|
|
87
|
+
profileId: 160,
|
|
88
|
+
channels: 12,
|
|
89
|
+
rgbRelation: {
|
|
90
|
+
r: 4,
|
|
91
|
+
g: 5,
|
|
92
|
+
b: 6,
|
|
93
|
+
},
|
|
94
|
+
whiteLocation: 7,
|
|
95
|
+
amberLocation: 0,
|
|
96
|
+
whiteMacrosLocation: 9,
|
|
97
|
+
uvLocation: 0,
|
|
98
|
+
dimmerLocation: 1,
|
|
99
|
+
fineDimmerLocation: 2,
|
|
100
|
+
strobeLocation: 3,
|
|
101
|
+
whiteMacros: {
|
|
102
|
+
'2800': 6,
|
|
103
|
+
'3200': 26,
|
|
104
|
+
'3500': 51,
|
|
105
|
+
'4000': 76,
|
|
106
|
+
'4500': 101,
|
|
107
|
+
'5000': 126,
|
|
108
|
+
'5600': 151,
|
|
109
|
+
'6000': 176,
|
|
110
|
+
'6500': 201,
|
|
111
|
+
},
|
|
112
|
+
name: 'WELL POD 3',
|
|
113
|
+
},
|
|
114
|
+
250: {
|
|
115
|
+
profileId: 250,
|
|
116
|
+
channels: 13,
|
|
117
|
+
rgbRelation: {
|
|
118
|
+
r: 3,
|
|
119
|
+
g: 4,
|
|
120
|
+
b: 5,
|
|
121
|
+
},
|
|
122
|
+
whiteLocation: 6,
|
|
123
|
+
amberLocation: 5,
|
|
124
|
+
whiteMacrosLocation: 7,
|
|
125
|
+
uvLocation: 0,
|
|
126
|
+
dimmerLocation: 1,
|
|
127
|
+
fineDimmerLocation: 0,
|
|
128
|
+
strobeLocation: 7,
|
|
129
|
+
whiteMacros: {
|
|
130
|
+
'2800': 6,
|
|
131
|
+
'3200': 26,
|
|
132
|
+
'3500': 51,
|
|
133
|
+
'4000': 76,
|
|
134
|
+
'4500': 101,
|
|
135
|
+
'5000': 126,
|
|
136
|
+
'5600': 151,
|
|
137
|
+
'6000': 176,
|
|
138
|
+
'6500': 201,
|
|
139
|
+
},
|
|
140
|
+
name: 'WELL PANEL',
|
|
141
|
+
},
|
|
142
|
+
260: {
|
|
143
|
+
profileId: 260,
|
|
144
|
+
channels: 13,
|
|
145
|
+
rgbRelation: {
|
|
146
|
+
r: 3,
|
|
147
|
+
g: 4,
|
|
148
|
+
b: 5,
|
|
149
|
+
},
|
|
150
|
+
whiteLocation: 6,
|
|
151
|
+
amberLocation: 5,
|
|
152
|
+
whiteMacrosLocation: 7,
|
|
153
|
+
uvLocation: 0,
|
|
154
|
+
dimmerLocation: 1,
|
|
155
|
+
fineDimmerLocation: 0,
|
|
156
|
+
strobeLocation: 7,
|
|
157
|
+
whiteMacros: {
|
|
158
|
+
'2800': 6,
|
|
159
|
+
'3200': 26,
|
|
160
|
+
'3500': 51,
|
|
161
|
+
'4000': 76,
|
|
162
|
+
'4500': 101,
|
|
163
|
+
'5000': 126,
|
|
164
|
+
'5600': 151,
|
|
165
|
+
'6000': 176,
|
|
166
|
+
'6500': 201,
|
|
167
|
+
},
|
|
168
|
+
name: 'WELL PANEL X',
|
|
169
|
+
},
|
|
170
|
+
350: {
|
|
171
|
+
profileId: 350,
|
|
172
|
+
channels: 15,
|
|
173
|
+
rgbRelation: {
|
|
174
|
+
r: 2,
|
|
175
|
+
g: 3,
|
|
176
|
+
b: 4,
|
|
177
|
+
},
|
|
178
|
+
whiteLocation: 5,
|
|
179
|
+
amberLocation: 5,
|
|
180
|
+
whiteMacrosLocation: 0,
|
|
181
|
+
uvLocation: 0,
|
|
182
|
+
dimmerLocation: 1,
|
|
183
|
+
fineDimmerLocation: 2,
|
|
184
|
+
strobeLocation: 7,
|
|
185
|
+
whiteMacros: null,
|
|
186
|
+
name: 'WELL STX180',
|
|
187
|
+
},
|
|
188
|
+
360: {
|
|
189
|
+
profileId: 360,
|
|
190
|
+
channels: 15,
|
|
191
|
+
rgbRelation: {
|
|
192
|
+
r: 2,
|
|
193
|
+
g: 3,
|
|
194
|
+
b: 4,
|
|
195
|
+
},
|
|
196
|
+
whiteLocation: 5,
|
|
197
|
+
amberLocation: 5,
|
|
198
|
+
whiteMacrosLocation: 0,
|
|
199
|
+
uvLocation: 0,
|
|
200
|
+
dimmerLocation: 1,
|
|
201
|
+
fineDimmerLocation: 2,
|
|
202
|
+
strobeLocation: 7,
|
|
203
|
+
whiteMacros: null,
|
|
204
|
+
name: 'WELL STX360',
|
|
205
|
+
},
|
|
206
|
+
450: {
|
|
207
|
+
profileId: 450,
|
|
208
|
+
channels: 14,
|
|
209
|
+
rgbRelation: {
|
|
210
|
+
r: 3,
|
|
211
|
+
g: 4,
|
|
212
|
+
b: 5,
|
|
213
|
+
},
|
|
214
|
+
whiteLocation: 6,
|
|
215
|
+
amberLocation: 0,
|
|
216
|
+
whiteMacrosLocation: 7,
|
|
217
|
+
uvLocation: 0,
|
|
218
|
+
dimmerLocation: 1,
|
|
219
|
+
fineDimmerLocation: 0,
|
|
220
|
+
strobeLocation: 2,
|
|
221
|
+
whiteMacros: {
|
|
222
|
+
'2800': 6,
|
|
223
|
+
'3200': 26,
|
|
224
|
+
'3500': 51,
|
|
225
|
+
'4000': 76,
|
|
226
|
+
'4500': 101,
|
|
227
|
+
'5000': 126,
|
|
228
|
+
'5600': 151,
|
|
229
|
+
'6000': 176,
|
|
230
|
+
'6500': 201,
|
|
231
|
+
},
|
|
232
|
+
name: 'WELL BATTEN 14',
|
|
233
|
+
},
|
|
234
|
+
1010: {
|
|
235
|
+
profileId: 1010,
|
|
236
|
+
channels: 4,
|
|
237
|
+
rgbRelation: {
|
|
238
|
+
r: 2,
|
|
239
|
+
g: 3,
|
|
240
|
+
b: 4,
|
|
241
|
+
},
|
|
242
|
+
whiteLocation: 0,
|
|
243
|
+
amberLocation: 0,
|
|
244
|
+
whiteMacrosLocation: 0,
|
|
245
|
+
uvLocation: 0,
|
|
246
|
+
dimmerLocation: 1,
|
|
247
|
+
fineDimmerLocation: 0,
|
|
248
|
+
strobeLocation: 0,
|
|
249
|
+
whiteMacros: null,
|
|
250
|
+
name: 'GENERIC DRGB',
|
|
251
|
+
},
|
|
252
|
+
1015: {
|
|
253
|
+
profileId: 1015,
|
|
254
|
+
channels: 5,
|
|
255
|
+
rgbRelation: {
|
|
256
|
+
r: 2,
|
|
257
|
+
g: 3,
|
|
258
|
+
b: 4,
|
|
259
|
+
},
|
|
260
|
+
whiteLocation: 0,
|
|
261
|
+
amberLocation: 5,
|
|
262
|
+
whiteMacrosLocation: 0,
|
|
263
|
+
uvLocation: 0,
|
|
264
|
+
dimmerLocation: 1,
|
|
265
|
+
fineDimmerLocation: 0,
|
|
266
|
+
strobeLocation: 0,
|
|
267
|
+
whiteMacros: null,
|
|
268
|
+
name: 'GENERIC DRGBA',
|
|
269
|
+
},
|
|
270
|
+
10001: {
|
|
271
|
+
profileId: 1001,
|
|
272
|
+
channels: 15,
|
|
273
|
+
rgbRelation: {
|
|
274
|
+
r: 2,
|
|
275
|
+
g: 3,
|
|
276
|
+
b: 4,
|
|
277
|
+
},
|
|
278
|
+
whiteLocation: 5,
|
|
279
|
+
amberLocation: 5,
|
|
280
|
+
whiteMacrosLocation: 7,
|
|
281
|
+
uvLocation: 0,
|
|
282
|
+
dimmerLocation: 1,
|
|
283
|
+
fineDimmerLocation: 0,
|
|
284
|
+
strobeLocation: 7,
|
|
285
|
+
whiteMacros: null,
|
|
286
|
+
name: 'FREEDOM 1',
|
|
287
|
+
},
|
|
288
|
+
10002: {
|
|
289
|
+
profileId: 1002,
|
|
290
|
+
channels: 15,
|
|
291
|
+
rgbRelation: {
|
|
292
|
+
r: 2,
|
|
293
|
+
g: 3,
|
|
294
|
+
b: 4,
|
|
295
|
+
},
|
|
296
|
+
whiteLocation: 5,
|
|
297
|
+
amberLocation: 5,
|
|
298
|
+
whiteMacrosLocation: 7,
|
|
299
|
+
uvLocation: 0,
|
|
300
|
+
dimmerLocation: 1,
|
|
301
|
+
fineDimmerLocation: 0,
|
|
302
|
+
strobeLocation: 7,
|
|
303
|
+
whiteMacros: null,
|
|
304
|
+
name: 'FREEDOM 2',
|
|
305
|
+
},
|
|
306
|
+
10003: {
|
|
307
|
+
profileId: 1003,
|
|
308
|
+
channels: 8,
|
|
309
|
+
rgbRelation: {
|
|
310
|
+
r: 4,
|
|
311
|
+
g: 5,
|
|
312
|
+
b: 6,
|
|
313
|
+
},
|
|
314
|
+
whiteLocation: 7,
|
|
315
|
+
amberLocation: 5,
|
|
316
|
+
whiteMacrosLocation: 7,
|
|
317
|
+
uvLocation: 0,
|
|
318
|
+
dimmerLocation: 1,
|
|
319
|
+
fineDimmerLocation: 0,
|
|
320
|
+
strobeLocation: 3,
|
|
321
|
+
whiteMacros: null,
|
|
322
|
+
name: 'FREEDOM 3',
|
|
323
|
+
},
|
|
324
|
+
10004: {
|
|
325
|
+
profileId: 1004,
|
|
326
|
+
channels: 8,
|
|
327
|
+
rgbRelation: {
|
|
328
|
+
r: 4,
|
|
329
|
+
g: 5,
|
|
330
|
+
b: 6,
|
|
331
|
+
},
|
|
332
|
+
whiteLocation: 7,
|
|
333
|
+
amberLocation: 5,
|
|
334
|
+
whiteMacrosLocation: 7,
|
|
335
|
+
uvLocation: 0,
|
|
336
|
+
dimmerLocation: 1,
|
|
337
|
+
fineDimmerLocation: 0,
|
|
338
|
+
strobeLocation: 3,
|
|
339
|
+
whiteMacros: null,
|
|
340
|
+
name: 'FREEDOM 4',
|
|
341
|
+
},
|
|
342
|
+
10005: {
|
|
343
|
+
profileId: 1005,
|
|
344
|
+
channels: 6,
|
|
345
|
+
rgbRelation: {
|
|
346
|
+
r: 2,
|
|
347
|
+
g: 3,
|
|
348
|
+
b: 4,
|
|
349
|
+
},
|
|
350
|
+
whiteLocation: 5,
|
|
351
|
+
amberLocation: 5,
|
|
352
|
+
whiteMacrosLocation: 7,
|
|
353
|
+
uvLocation: 0,
|
|
354
|
+
dimmerLocation: 1,
|
|
355
|
+
fineDimmerLocation: 0,
|
|
356
|
+
strobeLocation: 6,
|
|
357
|
+
whiteMacros: null,
|
|
358
|
+
name: 'FREEDOM 5',
|
|
359
|
+
},
|
|
360
|
+
10006: {
|
|
361
|
+
profileId: 1006,
|
|
362
|
+
channels: 8,
|
|
363
|
+
rgbRelation: {
|
|
364
|
+
r: 4,
|
|
365
|
+
g: 5,
|
|
366
|
+
b: 6,
|
|
367
|
+
},
|
|
368
|
+
whiteLocation: 7,
|
|
369
|
+
amberLocation: 5,
|
|
370
|
+
whiteMacrosLocation: 7,
|
|
371
|
+
uvLocation: 0,
|
|
372
|
+
dimmerLocation: 1,
|
|
373
|
+
fineDimmerLocation: 0,
|
|
374
|
+
strobeLocation: 3,
|
|
375
|
+
whiteMacros: null,
|
|
376
|
+
name: 'FREEDOM 6',
|
|
377
|
+
},
|
|
378
|
+
10007: {
|
|
379
|
+
profileId: 1007,
|
|
380
|
+
channels: 8,
|
|
381
|
+
rgbRelation: {
|
|
382
|
+
r: 3,
|
|
383
|
+
g: 4,
|
|
384
|
+
b: 5,
|
|
385
|
+
},
|
|
386
|
+
whiteLocation: 6,
|
|
387
|
+
amberLocation: 5,
|
|
388
|
+
whiteMacrosLocation: 7,
|
|
389
|
+
uvLocation: 0,
|
|
390
|
+
dimmerLocation: 1,
|
|
391
|
+
fineDimmerLocation: 0,
|
|
392
|
+
strobeLocation: 7,
|
|
393
|
+
whiteMacros: null,
|
|
394
|
+
name: 'FREEDOM 7',
|
|
395
|
+
},
|
|
396
|
+
10008: {
|
|
397
|
+
profileId: 1008,
|
|
398
|
+
channels: 9,
|
|
399
|
+
rgbRelation: {
|
|
400
|
+
r: 1,
|
|
401
|
+
g: 2,
|
|
402
|
+
b: 3,
|
|
403
|
+
},
|
|
404
|
+
whiteLocation: 4,
|
|
405
|
+
amberLocation: 5,
|
|
406
|
+
whiteMacrosLocation: 7,
|
|
407
|
+
uvLocation: 0,
|
|
408
|
+
dimmerLocation: 8,
|
|
409
|
+
fineDimmerLocation: 0,
|
|
410
|
+
strobeLocation: 6,
|
|
411
|
+
whiteMacros: null,
|
|
412
|
+
name: 'FREEDOM 8',
|
|
413
|
+
},
|
|
414
|
+
};
|
|
415
|
+
export default baseProfiles;
|
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@chauvet/connect-base-profiles",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/baseProfiles.js",
|
|
6
|
+
"types": "dist/baseProfiles.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [],
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"description": "",
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"typescript": "^5.8.2"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
export interface BaseProfile {
|
|
2
|
+
profileId: number;
|
|
3
|
+
channels: number;
|
|
4
|
+
rgbRelation: {
|
|
5
|
+
r: number;
|
|
6
|
+
g: number;
|
|
7
|
+
b: number;
|
|
8
|
+
};
|
|
9
|
+
whiteLocation: number;
|
|
10
|
+
amberLocation: number;
|
|
11
|
+
whiteMacrosLocation: number;
|
|
12
|
+
uvLocation: number;
|
|
13
|
+
dimmerLocation: number;
|
|
14
|
+
fineDimmerLocation: number;
|
|
15
|
+
strobeLocation: number;
|
|
16
|
+
whiteMacros: Record<string, number> | null;
|
|
17
|
+
name: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
const baseProfiles: Record<number, BaseProfile> = {
|
|
22
|
+
50: {
|
|
23
|
+
profileId: 50,
|
|
24
|
+
channels: 10,
|
|
25
|
+
rgbRelation: {
|
|
26
|
+
r: 2,
|
|
27
|
+
g: 3,
|
|
28
|
+
b: 4,
|
|
29
|
+
},
|
|
30
|
+
whiteLocation: 0,
|
|
31
|
+
amberLocation: 5,
|
|
32
|
+
whiteMacrosLocation: 7,
|
|
33
|
+
uvLocation: 0,
|
|
34
|
+
dimmerLocation: 1,
|
|
35
|
+
fineDimmerLocation: 0,
|
|
36
|
+
strobeLocation: 6,
|
|
37
|
+
whiteMacros: {
|
|
38
|
+
'2800': 6,
|
|
39
|
+
'3200': 26,
|
|
40
|
+
'3500': 51,
|
|
41
|
+
'4000': 76,
|
|
42
|
+
'4500': 101,
|
|
43
|
+
'5000': 126,
|
|
44
|
+
'5600': 151,
|
|
45
|
+
'6000': 176,
|
|
46
|
+
'6500': 201,
|
|
47
|
+
},
|
|
48
|
+
name: 'WELL FIT',
|
|
49
|
+
},
|
|
50
|
+
60: {
|
|
51
|
+
profileId: 60,
|
|
52
|
+
channels: 12,
|
|
53
|
+
rgbRelation: {
|
|
54
|
+
r: 4,
|
|
55
|
+
g: 5,
|
|
56
|
+
b: 6,
|
|
57
|
+
},
|
|
58
|
+
whiteLocation: 7,
|
|
59
|
+
amberLocation: 0,
|
|
60
|
+
whiteMacrosLocation: 9,
|
|
61
|
+
uvLocation: 0,
|
|
62
|
+
dimmerLocation: 1,
|
|
63
|
+
fineDimmerLocation: 2,
|
|
64
|
+
strobeLocation: 3,
|
|
65
|
+
whiteMacros: {
|
|
66
|
+
'2800': 6,
|
|
67
|
+
'3200': 26,
|
|
68
|
+
'3500': 51,
|
|
69
|
+
'4000': 76,
|
|
70
|
+
'4500': 101,
|
|
71
|
+
'5000': 126,
|
|
72
|
+
'5600': 151,
|
|
73
|
+
'6000': 176,
|
|
74
|
+
'6500': 201,
|
|
75
|
+
},
|
|
76
|
+
name: 'WELL FIT X',
|
|
77
|
+
},
|
|
78
|
+
150: {
|
|
79
|
+
profileId: 150,
|
|
80
|
+
channels: 12,
|
|
81
|
+
rgbRelation: {
|
|
82
|
+
r: 4,
|
|
83
|
+
g: 5,
|
|
84
|
+
b: 6,
|
|
85
|
+
},
|
|
86
|
+
whiteLocation: 7,
|
|
87
|
+
amberLocation: 0,
|
|
88
|
+
whiteMacrosLocation: 9,
|
|
89
|
+
uvLocation: 0,
|
|
90
|
+
dimmerLocation: 1,
|
|
91
|
+
fineDimmerLocation: 2,
|
|
92
|
+
strobeLocation: 3,
|
|
93
|
+
whiteMacros: {
|
|
94
|
+
'2800': 6,
|
|
95
|
+
'3200': 26,
|
|
96
|
+
'3500': 51,
|
|
97
|
+
'4000': 76,
|
|
98
|
+
'4500': 101,
|
|
99
|
+
'5000': 126,
|
|
100
|
+
'5600': 151,
|
|
101
|
+
'6000': 176,
|
|
102
|
+
'6500': 201,
|
|
103
|
+
},
|
|
104
|
+
name: 'WELL POD 2',
|
|
105
|
+
},
|
|
106
|
+
160: {
|
|
107
|
+
profileId: 160,
|
|
108
|
+
channels: 12,
|
|
109
|
+
rgbRelation: {
|
|
110
|
+
r: 4,
|
|
111
|
+
g: 5,
|
|
112
|
+
b: 6,
|
|
113
|
+
},
|
|
114
|
+
whiteLocation: 7,
|
|
115
|
+
amberLocation: 0,
|
|
116
|
+
whiteMacrosLocation: 9,
|
|
117
|
+
uvLocation: 0,
|
|
118
|
+
dimmerLocation: 1,
|
|
119
|
+
fineDimmerLocation: 2,
|
|
120
|
+
strobeLocation: 3,
|
|
121
|
+
whiteMacros: {
|
|
122
|
+
'2800': 6,
|
|
123
|
+
'3200': 26,
|
|
124
|
+
'3500': 51,
|
|
125
|
+
'4000': 76,
|
|
126
|
+
'4500': 101,
|
|
127
|
+
'5000': 126,
|
|
128
|
+
'5600': 151,
|
|
129
|
+
'6000': 176,
|
|
130
|
+
'6500': 201,
|
|
131
|
+
},
|
|
132
|
+
name: 'WELL POD 3',
|
|
133
|
+
},
|
|
134
|
+
250: {
|
|
135
|
+
profileId: 250,
|
|
136
|
+
channels: 13,
|
|
137
|
+
rgbRelation: {
|
|
138
|
+
r: 3,
|
|
139
|
+
g: 4,
|
|
140
|
+
b: 5,
|
|
141
|
+
},
|
|
142
|
+
whiteLocation: 6,
|
|
143
|
+
amberLocation: 5,
|
|
144
|
+
whiteMacrosLocation: 7,
|
|
145
|
+
uvLocation: 0,
|
|
146
|
+
dimmerLocation: 1,
|
|
147
|
+
fineDimmerLocation: 0,
|
|
148
|
+
strobeLocation: 7,
|
|
149
|
+
whiteMacros: {
|
|
150
|
+
'2800': 6,
|
|
151
|
+
'3200': 26,
|
|
152
|
+
'3500': 51,
|
|
153
|
+
'4000': 76,
|
|
154
|
+
'4500': 101,
|
|
155
|
+
'5000': 126,
|
|
156
|
+
'5600': 151,
|
|
157
|
+
'6000': 176,
|
|
158
|
+
'6500': 201,
|
|
159
|
+
},
|
|
160
|
+
name: 'WELL PANEL',
|
|
161
|
+
},
|
|
162
|
+
260: {
|
|
163
|
+
profileId: 260,
|
|
164
|
+
channels: 13,
|
|
165
|
+
rgbRelation: {
|
|
166
|
+
r: 3,
|
|
167
|
+
g: 4,
|
|
168
|
+
b: 5,
|
|
169
|
+
},
|
|
170
|
+
whiteLocation: 6,
|
|
171
|
+
amberLocation: 5,
|
|
172
|
+
whiteMacrosLocation: 7,
|
|
173
|
+
uvLocation: 0,
|
|
174
|
+
dimmerLocation: 1,
|
|
175
|
+
fineDimmerLocation: 0,
|
|
176
|
+
strobeLocation: 7,
|
|
177
|
+
whiteMacros: {
|
|
178
|
+
'2800': 6,
|
|
179
|
+
'3200': 26,
|
|
180
|
+
'3500': 51,
|
|
181
|
+
'4000': 76,
|
|
182
|
+
'4500': 101,
|
|
183
|
+
'5000': 126,
|
|
184
|
+
'5600': 151,
|
|
185
|
+
'6000': 176,
|
|
186
|
+
'6500': 201,
|
|
187
|
+
},
|
|
188
|
+
name: 'WELL PANEL X',
|
|
189
|
+
},
|
|
190
|
+
350: {
|
|
191
|
+
profileId: 350,
|
|
192
|
+
channels: 15,
|
|
193
|
+
rgbRelation: {
|
|
194
|
+
r: 2,
|
|
195
|
+
g: 3,
|
|
196
|
+
b: 4,
|
|
197
|
+
},
|
|
198
|
+
whiteLocation: 5,
|
|
199
|
+
amberLocation: 5,
|
|
200
|
+
whiteMacrosLocation: 0,
|
|
201
|
+
uvLocation: 0,
|
|
202
|
+
dimmerLocation: 1,
|
|
203
|
+
fineDimmerLocation: 2,
|
|
204
|
+
strobeLocation: 7,
|
|
205
|
+
whiteMacros: null,
|
|
206
|
+
name: 'WELL STX180',
|
|
207
|
+
},
|
|
208
|
+
360: {
|
|
209
|
+
profileId: 360,
|
|
210
|
+
channels: 15,
|
|
211
|
+
rgbRelation: {
|
|
212
|
+
r: 2,
|
|
213
|
+
g: 3,
|
|
214
|
+
b: 4,
|
|
215
|
+
},
|
|
216
|
+
whiteLocation: 5,
|
|
217
|
+
amberLocation: 5,
|
|
218
|
+
whiteMacrosLocation: 0,
|
|
219
|
+
uvLocation: 0,
|
|
220
|
+
dimmerLocation: 1,
|
|
221
|
+
fineDimmerLocation: 2,
|
|
222
|
+
strobeLocation: 7,
|
|
223
|
+
whiteMacros: null,
|
|
224
|
+
name: 'WELL STX360',
|
|
225
|
+
},
|
|
226
|
+
450: {
|
|
227
|
+
profileId: 450,
|
|
228
|
+
channels: 14,
|
|
229
|
+
rgbRelation: {
|
|
230
|
+
r: 3,
|
|
231
|
+
g: 4,
|
|
232
|
+
b: 5,
|
|
233
|
+
},
|
|
234
|
+
whiteLocation: 6,
|
|
235
|
+
amberLocation: 0,
|
|
236
|
+
whiteMacrosLocation: 7,
|
|
237
|
+
uvLocation: 0,
|
|
238
|
+
dimmerLocation: 1,
|
|
239
|
+
fineDimmerLocation: 0,
|
|
240
|
+
strobeLocation: 2,
|
|
241
|
+
whiteMacros: {
|
|
242
|
+
'2800': 6,
|
|
243
|
+
'3200': 26,
|
|
244
|
+
'3500': 51,
|
|
245
|
+
'4000': 76,
|
|
246
|
+
'4500': 101,
|
|
247
|
+
'5000': 126,
|
|
248
|
+
'5600': 151,
|
|
249
|
+
'6000': 176,
|
|
250
|
+
'6500': 201,
|
|
251
|
+
},
|
|
252
|
+
name: 'WELL BATTEN 14',
|
|
253
|
+
},
|
|
254
|
+
|
|
255
|
+
1010: {
|
|
256
|
+
profileId: 1010,
|
|
257
|
+
channels: 4,
|
|
258
|
+
rgbRelation: {
|
|
259
|
+
r: 2,
|
|
260
|
+
g: 3,
|
|
261
|
+
b: 4,
|
|
262
|
+
},
|
|
263
|
+
whiteLocation: 0,
|
|
264
|
+
amberLocation: 0,
|
|
265
|
+
whiteMacrosLocation: 0,
|
|
266
|
+
uvLocation: 0,
|
|
267
|
+
dimmerLocation: 1,
|
|
268
|
+
fineDimmerLocation: 0,
|
|
269
|
+
strobeLocation: 0,
|
|
270
|
+
whiteMacros: null,
|
|
271
|
+
name: 'GENERIC DRGB',
|
|
272
|
+
},
|
|
273
|
+
|
|
274
|
+
1015: {
|
|
275
|
+
profileId: 1015,
|
|
276
|
+
channels: 5,
|
|
277
|
+
rgbRelation: {
|
|
278
|
+
r: 2,
|
|
279
|
+
g: 3,
|
|
280
|
+
b: 4,
|
|
281
|
+
},
|
|
282
|
+
whiteLocation: 0,
|
|
283
|
+
amberLocation: 5,
|
|
284
|
+
whiteMacrosLocation: 0,
|
|
285
|
+
uvLocation: 0,
|
|
286
|
+
dimmerLocation: 1,
|
|
287
|
+
fineDimmerLocation: 0,
|
|
288
|
+
strobeLocation: 0,
|
|
289
|
+
whiteMacros: null,
|
|
290
|
+
name: 'GENERIC DRGBA',
|
|
291
|
+
},
|
|
292
|
+
|
|
293
|
+
10001: {
|
|
294
|
+
profileId: 1001,
|
|
295
|
+
channels: 15,
|
|
296
|
+
rgbRelation: {
|
|
297
|
+
r: 2,
|
|
298
|
+
g: 3,
|
|
299
|
+
b: 4,
|
|
300
|
+
},
|
|
301
|
+
whiteLocation: 5,
|
|
302
|
+
amberLocation: 5,
|
|
303
|
+
whiteMacrosLocation: 7,
|
|
304
|
+
uvLocation: 0,
|
|
305
|
+
dimmerLocation: 1,
|
|
306
|
+
fineDimmerLocation: 0,
|
|
307
|
+
strobeLocation: 7,
|
|
308
|
+
whiteMacros: null,
|
|
309
|
+
name: 'FREEDOM 1',
|
|
310
|
+
},
|
|
311
|
+
10002: {
|
|
312
|
+
profileId: 1002,
|
|
313
|
+
channels: 15,
|
|
314
|
+
rgbRelation: {
|
|
315
|
+
r: 2,
|
|
316
|
+
g: 3,
|
|
317
|
+
b: 4,
|
|
318
|
+
},
|
|
319
|
+
whiteLocation: 5,
|
|
320
|
+
amberLocation: 5,
|
|
321
|
+
whiteMacrosLocation: 7,
|
|
322
|
+
uvLocation: 0,
|
|
323
|
+
dimmerLocation: 1,
|
|
324
|
+
fineDimmerLocation: 0,
|
|
325
|
+
strobeLocation: 7,
|
|
326
|
+
whiteMacros: null,
|
|
327
|
+
name: 'FREEDOM 2',
|
|
328
|
+
},
|
|
329
|
+
10003: {
|
|
330
|
+
profileId: 1003,
|
|
331
|
+
channels: 8,
|
|
332
|
+
rgbRelation: {
|
|
333
|
+
r: 4,
|
|
334
|
+
g: 5,
|
|
335
|
+
b: 6,
|
|
336
|
+
},
|
|
337
|
+
whiteLocation: 7,
|
|
338
|
+
amberLocation: 5,
|
|
339
|
+
whiteMacrosLocation: 7,
|
|
340
|
+
uvLocation: 0,
|
|
341
|
+
dimmerLocation: 1,
|
|
342
|
+
fineDimmerLocation: 0,
|
|
343
|
+
strobeLocation: 3,
|
|
344
|
+
whiteMacros: null,
|
|
345
|
+
name: 'FREEDOM 3',
|
|
346
|
+
},
|
|
347
|
+
10004: {
|
|
348
|
+
profileId: 1004,
|
|
349
|
+
channels: 8,
|
|
350
|
+
rgbRelation: {
|
|
351
|
+
r: 4,
|
|
352
|
+
g: 5,
|
|
353
|
+
b: 6,
|
|
354
|
+
},
|
|
355
|
+
whiteLocation: 7,
|
|
356
|
+
amberLocation: 5,
|
|
357
|
+
whiteMacrosLocation: 7,
|
|
358
|
+
uvLocation: 0,
|
|
359
|
+
dimmerLocation: 1,
|
|
360
|
+
fineDimmerLocation: 0,
|
|
361
|
+
strobeLocation: 3,
|
|
362
|
+
whiteMacros: null,
|
|
363
|
+
name: 'FREEDOM 4',
|
|
364
|
+
},
|
|
365
|
+
10005: {
|
|
366
|
+
profileId: 1005,
|
|
367
|
+
channels: 6,
|
|
368
|
+
rgbRelation: {
|
|
369
|
+
r: 2,
|
|
370
|
+
g: 3,
|
|
371
|
+
b: 4,
|
|
372
|
+
},
|
|
373
|
+
whiteLocation: 5,
|
|
374
|
+
amberLocation: 5,
|
|
375
|
+
whiteMacrosLocation: 7,
|
|
376
|
+
uvLocation: 0,
|
|
377
|
+
dimmerLocation: 1,
|
|
378
|
+
fineDimmerLocation: 0,
|
|
379
|
+
strobeLocation: 6,
|
|
380
|
+
whiteMacros: null,
|
|
381
|
+
name: 'FREEDOM 5',
|
|
382
|
+
},
|
|
383
|
+
10006: {
|
|
384
|
+
profileId: 1006,
|
|
385
|
+
channels: 8,
|
|
386
|
+
rgbRelation: {
|
|
387
|
+
r: 4,
|
|
388
|
+
g: 5,
|
|
389
|
+
b: 6,
|
|
390
|
+
},
|
|
391
|
+
whiteLocation: 7,
|
|
392
|
+
amberLocation: 5,
|
|
393
|
+
whiteMacrosLocation: 7,
|
|
394
|
+
uvLocation: 0,
|
|
395
|
+
dimmerLocation: 1,
|
|
396
|
+
fineDimmerLocation: 0,
|
|
397
|
+
strobeLocation: 3,
|
|
398
|
+
whiteMacros: null,
|
|
399
|
+
name: 'FREEDOM 6',
|
|
400
|
+
},
|
|
401
|
+
10007: {
|
|
402
|
+
profileId: 1007,
|
|
403
|
+
channels: 8,
|
|
404
|
+
rgbRelation: {
|
|
405
|
+
r: 3,
|
|
406
|
+
g: 4,
|
|
407
|
+
b: 5,
|
|
408
|
+
},
|
|
409
|
+
whiteLocation: 6,
|
|
410
|
+
amberLocation: 5,
|
|
411
|
+
whiteMacrosLocation: 7,
|
|
412
|
+
uvLocation: 0,
|
|
413
|
+
dimmerLocation: 1,
|
|
414
|
+
fineDimmerLocation: 0,
|
|
415
|
+
strobeLocation: 7,
|
|
416
|
+
whiteMacros: null,
|
|
417
|
+
name: 'FREEDOM 7',
|
|
418
|
+
},
|
|
419
|
+
|
|
420
|
+
10008: {
|
|
421
|
+
profileId: 1008,
|
|
422
|
+
channels: 9,
|
|
423
|
+
rgbRelation: {
|
|
424
|
+
r: 1,
|
|
425
|
+
g: 2,
|
|
426
|
+
b: 3,
|
|
427
|
+
},
|
|
428
|
+
whiteLocation: 4,
|
|
429
|
+
amberLocation: 5,
|
|
430
|
+
whiteMacrosLocation: 7,
|
|
431
|
+
uvLocation: 0,
|
|
432
|
+
dimmerLocation: 8,
|
|
433
|
+
fineDimmerLocation: 0,
|
|
434
|
+
strobeLocation: 6,
|
|
435
|
+
whiteMacros: null,
|
|
436
|
+
name: 'FREEDOM 8',
|
|
437
|
+
},
|
|
438
|
+
};
|
|
439
|
+
export default baseProfiles;
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"outDir": "dist",
|
|
7
|
+
"strict": true,
|
|
8
|
+
"moduleResolution": "node",
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
},
|
|
11
|
+
"include": ["src/**/*"],
|
|
12
|
+
"exclude": ["node_modules", "**/*.test.ts"]
|
|
13
|
+
}
|