@chauvet/connect-base-profiles 1.6.3 → 1.6.5

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.
@@ -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: 'GENERIC DRGB',
294
+ name: 'drgb',
241
295
  },
242
- 1015: {
243
- profileId: 1015,
296
+ 1050: {
297
+ profileId: 1050,
244
298
  channels: 5,
245
299
  rgbRelation: {
246
300
  r: 2,
@@ -255,7 +309,25 @@ const baseProfiles = {
255
309
  fineDimmerLocation: 0,
256
310
  strobeLocation: 0,
257
311
  whiteMacros: null,
258
- name: 'GENERIC DRGBA',
312
+ name: 'drgba',
313
+ },
314
+ 1060: {
315
+ profileId: 1060,
316
+ channels: 6,
317
+ rgbRelation: {
318
+ r: 2,
319
+ g: 3,
320
+ b: 4,
321
+ },
322
+ whiteLocation: 0,
323
+ amberLocation: 5,
324
+ whiteMacrosLocation: 0,
325
+ uvLocation: 0,
326
+ dimmerLocation: 1,
327
+ fineDimmerLocation: 0,
328
+ strobeLocation: 6,
329
+ whiteMacros: null,
330
+ name: 'drgbas',
259
331
  },
260
332
  10050: {
261
333
  profileId: 10050,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chauvet/connect-base-profiles",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "type": "module",
5
5
  "main": "dist/baseProfiles.js",
6
6
  "types": "dist/baseProfiles.d.ts",
@@ -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: 'GENERIC DRGB',
319
+ name: 'drgb',
262
320
  },
263
321
 
264
- 1015: {
265
- profileId: 1015,
322
+ 1050: {
323
+ profileId: 1050,
266
324
  channels: 5,
267
325
  rgbRelation: {
268
326
  r: 2,
@@ -277,7 +335,26 @@ const baseProfiles: Record<number, BaseProfile> = {
277
335
  fineDimmerLocation: 0,
278
336
  strobeLocation: 0,
279
337
  whiteMacros: null,
280
- name: 'GENERIC DRGBA',
338
+ name: 'drgba',
339
+ },
340
+
341
+ 1060: {
342
+ profileId: 1060,
343
+ channels: 6,
344
+ rgbRelation: {
345
+ r: 2,
346
+ g: 3,
347
+ b: 4,
348
+ },
349
+ whiteLocation: 0,
350
+ amberLocation: 5,
351
+ whiteMacrosLocation: 0,
352
+ uvLocation: 0,
353
+ dimmerLocation: 1,
354
+ fineDimmerLocation: 0,
355
+ strobeLocation: 6,
356
+ whiteMacros: null,
357
+ name: 'drgbas',
281
358
  },
282
359
 
283
360
  10050: {