@chauvet/connect-base-profiles 1.6.3 → 1.6.4
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/dist/baseProfiles.js +58 -4
- package/package.json +1 -1
- package/src/baseProfiles.ts +62 -4
package/dist/baseProfiles.js
CHANGED
|
@@ -223,6 +223,60 @@ const baseProfiles = {
|
|
|
223
223
|
},
|
|
224
224
|
1010: {
|
|
225
225
|
profileId: 1010,
|
|
226
|
+
channels: 3,
|
|
227
|
+
rgbRelation: {
|
|
228
|
+
r: 1,
|
|
229
|
+
g: 2,
|
|
230
|
+
b: 3,
|
|
231
|
+
},
|
|
232
|
+
whiteLocation: 0,
|
|
233
|
+
amberLocation: 0,
|
|
234
|
+
whiteMacrosLocation: 0,
|
|
235
|
+
uvLocation: 0,
|
|
236
|
+
dimmerLocation: 0,
|
|
237
|
+
fineDimmerLocation: 0,
|
|
238
|
+
strobeLocation: 0,
|
|
239
|
+
whiteMacros: null,
|
|
240
|
+
name: 'rgb',
|
|
241
|
+
},
|
|
242
|
+
1015: {
|
|
243
|
+
profileId: 1015,
|
|
244
|
+
channels: 4,
|
|
245
|
+
rgbRelation: {
|
|
246
|
+
r: 1,
|
|
247
|
+
g: 2,
|
|
248
|
+
b: 3,
|
|
249
|
+
},
|
|
250
|
+
whiteLocation: 0,
|
|
251
|
+
amberLocation: 4,
|
|
252
|
+
whiteMacrosLocation: 0,
|
|
253
|
+
uvLocation: 0,
|
|
254
|
+
dimmerLocation: 0,
|
|
255
|
+
fineDimmerLocation: 0,
|
|
256
|
+
strobeLocation: 0,
|
|
257
|
+
whiteMacros: null,
|
|
258
|
+
name: 'rgba',
|
|
259
|
+
},
|
|
260
|
+
1020: {
|
|
261
|
+
profileId: 1020,
|
|
262
|
+
channels: 4,
|
|
263
|
+
rgbRelation: {
|
|
264
|
+
r: 1,
|
|
265
|
+
g: 2,
|
|
266
|
+
b: 3,
|
|
267
|
+
},
|
|
268
|
+
whiteLocation: 4,
|
|
269
|
+
amberLocation: 0,
|
|
270
|
+
whiteMacrosLocation: 0,
|
|
271
|
+
uvLocation: 0,
|
|
272
|
+
dimmerLocation: 0,
|
|
273
|
+
fineDimmerLocation: 0,
|
|
274
|
+
strobeLocation: 0,
|
|
275
|
+
whiteMacros: null,
|
|
276
|
+
name: 'rgbw',
|
|
277
|
+
},
|
|
278
|
+
1030: {
|
|
279
|
+
profileId: 1030,
|
|
226
280
|
channels: 4,
|
|
227
281
|
rgbRelation: {
|
|
228
282
|
r: 2,
|
|
@@ -237,10 +291,10 @@ const baseProfiles = {
|
|
|
237
291
|
fineDimmerLocation: 0,
|
|
238
292
|
strobeLocation: 0,
|
|
239
293
|
whiteMacros: null,
|
|
240
|
-
name: '
|
|
294
|
+
name: 'drgb',
|
|
241
295
|
},
|
|
242
|
-
|
|
243
|
-
profileId:
|
|
296
|
+
1050: {
|
|
297
|
+
profileId: 1050,
|
|
244
298
|
channels: 5,
|
|
245
299
|
rgbRelation: {
|
|
246
300
|
r: 2,
|
|
@@ -255,7 +309,7 @@ const baseProfiles = {
|
|
|
255
309
|
fineDimmerLocation: 0,
|
|
256
310
|
strobeLocation: 0,
|
|
257
311
|
whiteMacros: null,
|
|
258
|
-
name: '
|
|
312
|
+
name: 'drgba',
|
|
259
313
|
},
|
|
260
314
|
10050: {
|
|
261
315
|
profileId: 10050,
|
package/package.json
CHANGED
package/src/baseProfiles.ts
CHANGED
|
@@ -244,6 +244,64 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
244
244
|
|
|
245
245
|
1010: {
|
|
246
246
|
profileId: 1010,
|
|
247
|
+
channels: 3,
|
|
248
|
+
rgbRelation: {
|
|
249
|
+
r: 1,
|
|
250
|
+
g: 2,
|
|
251
|
+
b: 3,
|
|
252
|
+
},
|
|
253
|
+
whiteLocation: 0,
|
|
254
|
+
amberLocation: 0,
|
|
255
|
+
whiteMacrosLocation: 0,
|
|
256
|
+
uvLocation: 0,
|
|
257
|
+
dimmerLocation: 0,
|
|
258
|
+
fineDimmerLocation: 0,
|
|
259
|
+
strobeLocation: 0,
|
|
260
|
+
whiteMacros: null,
|
|
261
|
+
name: 'rgb',
|
|
262
|
+
},
|
|
263
|
+
|
|
264
|
+
1015: {
|
|
265
|
+
profileId: 1015,
|
|
266
|
+
channels: 4,
|
|
267
|
+
rgbRelation: {
|
|
268
|
+
r: 1,
|
|
269
|
+
g: 2,
|
|
270
|
+
b: 3,
|
|
271
|
+
},
|
|
272
|
+
whiteLocation: 0,
|
|
273
|
+
amberLocation: 4,
|
|
274
|
+
whiteMacrosLocation: 0,
|
|
275
|
+
uvLocation: 0,
|
|
276
|
+
dimmerLocation: 0,
|
|
277
|
+
fineDimmerLocation: 0,
|
|
278
|
+
strobeLocation: 0,
|
|
279
|
+
whiteMacros: null,
|
|
280
|
+
name: 'rgba',
|
|
281
|
+
},
|
|
282
|
+
|
|
283
|
+
1020: {
|
|
284
|
+
profileId: 1020,
|
|
285
|
+
channels: 4,
|
|
286
|
+
rgbRelation: {
|
|
287
|
+
r: 1,
|
|
288
|
+
g: 2,
|
|
289
|
+
b: 3,
|
|
290
|
+
},
|
|
291
|
+
whiteLocation: 4,
|
|
292
|
+
amberLocation: 0,
|
|
293
|
+
whiteMacrosLocation: 0,
|
|
294
|
+
uvLocation: 0,
|
|
295
|
+
dimmerLocation: 0,
|
|
296
|
+
fineDimmerLocation: 0,
|
|
297
|
+
strobeLocation: 0,
|
|
298
|
+
whiteMacros: null,
|
|
299
|
+
name: 'rgbw',
|
|
300
|
+
},
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
1030: {
|
|
304
|
+
profileId: 1030,
|
|
247
305
|
channels: 4,
|
|
248
306
|
rgbRelation: {
|
|
249
307
|
r: 2,
|
|
@@ -258,11 +316,11 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
258
316
|
fineDimmerLocation: 0,
|
|
259
317
|
strobeLocation: 0,
|
|
260
318
|
whiteMacros: null,
|
|
261
|
-
name: '
|
|
319
|
+
name: 'drgb',
|
|
262
320
|
},
|
|
263
321
|
|
|
264
|
-
|
|
265
|
-
profileId:
|
|
322
|
+
1050: {
|
|
323
|
+
profileId: 1050,
|
|
266
324
|
channels: 5,
|
|
267
325
|
rgbRelation: {
|
|
268
326
|
r: 2,
|
|
@@ -277,7 +335,7 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
277
335
|
fineDimmerLocation: 0,
|
|
278
336
|
strobeLocation: 0,
|
|
279
337
|
whiteMacros: null,
|
|
280
|
-
name: '
|
|
338
|
+
name: 'drgba',
|
|
281
339
|
},
|
|
282
340
|
|
|
283
341
|
10050: {
|