@chauvet/connect-base-profiles 2.2.6 → 2.8.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.
@@ -1,3 +1,37 @@
1
+ export interface AutoProgram {
2
+ location: number;
3
+ label: string;
4
+ altLabel?: string;
5
+ defaultValue?: number;
6
+ altDefaultValue?: number;
7
+ values?: {
8
+ item: string;
9
+ value?: number;
10
+ }[];
11
+ range?: {
12
+ start: number;
13
+ end: number;
14
+ };
15
+ altRange?: {
16
+ start: number;
17
+ end: number;
18
+ };
19
+ condition?: {
20
+ location: number;
21
+ minValue?: number;
22
+ maxValue?: number;
23
+ start?: number;
24
+ end?: number;
25
+ };
26
+ altCondition?: {
27
+ location: number;
28
+ minValue?: number;
29
+ maxValue?: number;
30
+ start?: number;
31
+ end?: number;
32
+ };
33
+ }
34
+
1
35
  export interface BaseProfile {
2
36
  profileId: number;
3
37
  channels: number;
@@ -12,12 +46,9 @@ export interface BaseProfile {
12
46
  uvLocation: number;
13
47
  dimmerLocation: number;
14
48
  fineDimmerLocation: number;
15
- dimmerSpeedMode?: any;
16
49
  strobeLocation: number;
17
50
  whiteMacros: Record<string, number> | null;
18
- autoPrograms: any;
19
- effectMacro?: any;
20
- dimmerSpeedMacro?: any;
51
+ autoPrograms: AutoProgram[] | null;
21
52
  name: string;
22
53
  }
23
54
 
@@ -43,6 +74,7 @@ const baseProfiles: Record<number, BaseProfile> = {
43
74
  {
44
75
  location: 8,
45
76
  label: 'Auto Programs',
77
+ defaultValue: 0,
46
78
  values: [
47
79
  {
48
80
  item: 'Off',
@@ -150,7 +182,7 @@ const baseProfiles: Record<number, BaseProfile> = {
150
182
  },
151
183
  ],
152
184
  name: 'WELL FIT X',
153
- }, //GOOD
185
+ },
154
186
  150: {
155
187
  profileId: 150,
156
188
  channels: 12,
@@ -167,7 +199,6 @@ const baseProfiles: Record<number, BaseProfile> = {
167
199
  fineDimmerLocation: 2,
168
200
  strobeLocation: 3,
169
201
  whiteMacros: {
170
- 'Off': 0,
171
202
  '2800': 6,
172
203
  '3200': 26,
173
204
  '3500': 51,
@@ -188,23 +219,23 @@ const baseProfiles: Record<number, BaseProfile> = {
188
219
  value: 0,
189
220
  },
190
221
  {
191
- item: 'Auto 1, PulseInOut',
222
+ item: 'Auto Program 1',
192
223
  value: 11,
193
224
  },
194
225
  {
195
- item: 'Auto 2, Pulse In',
196
- value: 38,
226
+ item: 'Auto Program 2',
227
+ value: 61,
197
228
  },
198
229
  {
199
- item: 'Auto 3, Pulse Out',
200
- value: 65,
230
+ item: 'Auto Program 3',
231
+ value: 111,
201
232
  },
202
233
  {
203
- item: 'Auto 4, Smooth Fade',
234
+ item: 'Auto Program 4',
204
235
  value: 161,
205
236
  },
206
237
  {
207
- item: 'Auto Program 5, CYCLES 1-4',
238
+ item: 'Auto Program 5',
208
239
  value: 211,
209
240
  },
210
241
  ]
@@ -218,8 +249,8 @@ const baseProfiles: Record<number, BaseProfile> = {
218
249
  },
219
250
  },
220
251
  ],
221
- name: 'WELL POD 2',//updated 3-11-26, retest
222
- },//updated 3-11-26, retest, tested good
252
+ name: 'WELL POD 2',
253
+ },
223
254
  160: {
224
255
  profileId: 160,
225
256
  channels: 12,
@@ -236,7 +267,6 @@ const baseProfiles: Record<number, BaseProfile> = {
236
267
  fineDimmerLocation: 2,
237
268
  strobeLocation: 3,
238
269
  whiteMacros: {
239
- 'Off': 0,
240
270
  '2800': 6,
241
271
  '3200': 26,
242
272
  '3500': 51,
@@ -257,23 +287,23 @@ const baseProfiles: Record<number, BaseProfile> = {
257
287
  value: 0,
258
288
  },
259
289
  {
260
- item: 'Auto 1, PulseInOut',
290
+ item: 'Auto Program 1',
261
291
  value: 11,
262
292
  },
263
293
  {
264
- item: 'Auto 2, Pulse In',
265
- value: 38,
294
+ item: 'Auto Program 2',
295
+ value: 61,
266
296
  },
267
297
  {
268
- item: 'Auto 3, Pulse Out',
269
- value: 65,
298
+ item: 'Auto Program 3',
299
+ value: 111,
270
300
  },
271
301
  {
272
- item: 'Auto 4, Smooth Fade',
302
+ item: 'Auto Program 4',
273
303
  value: 161,
274
304
  },
275
305
  {
276
- item: 'Auto Program 5, CYCLES 1-4',
306
+ item: 'Auto Program 5',
277
307
  value: 211,
278
308
  },
279
309
  ]
@@ -288,7 +318,7 @@ const baseProfiles: Record<number, BaseProfile> = {
288
318
  },
289
319
  ],
290
320
  name: 'WELL POD 3',
291
- },//updated 3-11-26, retest, tested good
321
+ },
292
322
  250: {
293
323
  profileId: 250,
294
324
  channels: 13,
@@ -305,7 +335,6 @@ const baseProfiles: Record<number, BaseProfile> = {
305
335
  fineDimmerLocation: 0,
306
336
  strobeLocation: 7,
307
337
  whiteMacros: {
308
- 'Off': 0,
309
338
  '2800': 6,
310
339
  '3200': 26,
311
340
  '3500': 51,
@@ -373,7 +402,7 @@ const baseProfiles: Record<number, BaseProfile> = {
373
402
  },
374
403
  ],
375
404
  name: 'WELL PANEL',
376
- },//updated 3-11-26, retest,
405
+ },
377
406
  260: {
378
407
  profileId: 260,
379
408
  channels: 12,
@@ -390,7 +419,6 @@ const baseProfiles: Record<number, BaseProfile> = {
390
419
  fineDimmerLocation: 2,
391
420
  strobeLocation: 3,
392
421
  whiteMacros: {
393
- 'Off': 0,
394
422
  '2800': 6,
395
423
  '3200': 26,
396
424
  '3500': 51,
@@ -411,23 +439,23 @@ const baseProfiles: Record<number, BaseProfile> = {
411
439
  value: 0,
412
440
  },
413
441
  {
414
- item: 'Auto 1, PulseInOut',
442
+ item: 'Auto Program 1',
415
443
  value: 11,
416
444
  },
417
445
  {
418
- item: 'Auto 2, PulseIn',
446
+ item: 'Auto Program 2',
419
447
  value: 38,
420
448
  },
421
449
  {
422
- item: 'Auto 3, PulseOut',
450
+ item: 'Auto Program 3',
423
451
  value: 65,
424
452
  },
425
453
  {
426
- item: 'Auto 4, SmoothFade',
454
+ item: 'Auto Program 4',
427
455
  value: 92,
428
456
  },
429
457
  {
430
- item: 'Auto Program 5 CYCLES 1-4',
458
+ item: 'Auto Program 5',
431
459
  value: 119,
432
460
  },
433
461
  {
@@ -443,7 +471,7 @@ const baseProfiles: Record<number, BaseProfile> = {
443
471
  value: 200,
444
472
  },
445
473
  {
446
- item: 'Auto Program 9 CYCLES 5-8',
474
+ item: 'Auto Program 9',
447
475
  value: 227,
448
476
  },
449
477
  ]
@@ -458,7 +486,7 @@ const baseProfiles: Record<number, BaseProfile> = {
458
486
  },
459
487
  ],
460
488
  name: 'WELL PANEL X',
461
- },//updated 3-11-26, retest, tested GOOD
489
+ },
462
490
  350: {
463
491
  profileId: 350,
464
492
  channels: 15,
@@ -469,49 +497,12 @@ const baseProfiles: Record<number, BaseProfile> = {
469
497
  },
470
498
  whiteLocation: 5,
471
499
  amberLocation: 5,
472
- whiteMacrosLocation: 6,
500
+ whiteMacrosLocation: 0,
473
501
  uvLocation: 0,
474
502
  dimmerLocation: 1,
475
503
  fineDimmerLocation: 2,
476
504
  strobeLocation: 7,
477
- whiteMacros: {
478
- 'Off': 0,
479
- '2800': 6,
480
- '2900': 13,
481
- '3000': 20,
482
- '3100': 27,
483
- '3200': 34,
484
- '3300': 41,
485
- '3400': 48,
486
- '3500': 55,
487
- '3600': 62,
488
- '3700': 69,
489
- '3800': 76,
490
- '3900': 83,
491
- '4000': 90,
492
- '4100': 97,
493
- '4200': 104,
494
- '4300': 111,
495
- '4400': 118,
496
- '4500': 125,
497
- '4600': 132,
498
- '4700': 139,
499
- '4800': 146,
500
- '4900': 153,
501
- '5000': 160,
502
- '5100': 167,
503
- '5200': 174,
504
- '5300': 181,
505
- '5400': 188,
506
- '5500': 195,
507
- '5600': 202,
508
- '5700': 209,
509
- '6000': 216,
510
- '6500': 223,
511
- '7000': 230,
512
- '7500': 237,
513
- '8000': 244,
514
- },
505
+ whiteMacros: null,
515
506
  autoPrograms: [
516
507
  {
517
508
  location: 8,
@@ -630,7 +621,7 @@ const baseProfiles: Record<number, BaseProfile> = {
630
621
  value: 219,
631
622
  },
632
623
  {
633
- item: 'Auto Program 28-CYCLE THROUGH 1-27',
624
+ item: 'Auto Program 28',
634
625
  value: 227,
635
626
  },
636
627
  ]
@@ -824,34 +815,8 @@ const baseProfiles: Record<number, BaseProfile> = {
824
815
  ],
825
816
  },
826
817
  ],
827
- dimmerSpeedMode: [
828
- {
829
- location: 14,
830
- label: 'Dimmer Speed Override',
831
- defaultValue: 0,
832
- values: [
833
- {
834
- item: 'Off',
835
- value: 52,
836
- },
837
- {
838
- item: 'Dim Mode 1 (fast)',
839
- value: 102,
840
- },
841
- {
842
- item: 'Dim Mode 2 (medium)',
843
- value: 153,
844
- },
845
- {
846
- item: 'Dim Mode 3 (slow)',
847
- value: 204,
848
- }
849
- ]
850
- },
851
-
852
- ],
853
818
  name: 'WELL STX180',
854
- },//updated Anthony, UPDATED AGAIN 3-11-26, retest, tested GOOD
819
+ },
855
820
  360: {
856
821
  profileId: 360,
857
822
  channels: 15,
@@ -862,52 +827,17 @@ const baseProfiles: Record<number, BaseProfile> = {
862
827
  },
863
828
  whiteLocation: 5,
864
829
  amberLocation: 5,
865
- whiteMacrosLocation: 6,
830
+ whiteMacrosLocation: 0,
866
831
  uvLocation: 0,
867
832
  dimmerLocation: 1,
868
833
  fineDimmerLocation: 2,
869
834
  strobeLocation: 7,
870
- whiteMacros: {
871
- '2800': 6,
872
- '2900': 13,
873
- '3000': 20,
874
- '3100': 27,
875
- '3200': 34,
876
- '3300': 41,
877
- '3400': 48,
878
- '3500': 55,
879
- '3600': 62,
880
- '3700': 69,
881
- '3800': 76,
882
- '3900': 83,
883
- '4000': 90,
884
- '4100': 97,
885
- '4200': 104,
886
- '4300': 111,
887
- '4400': 118,
888
- '4500': 125,
889
- '4600': 132,
890
- '4700': 139,
891
- '4800': 146,
892
- '4900': 153,
893
- '5000': 160,
894
- '5100': 167,
895
- '5200': 174,
896
- '5300': 181,
897
- '5400': 188,
898
- '5500': 195,
899
- '5600': 202,
900
- '5700': 209,
901
- '6000': 216,
902
- '6500': 223,
903
- '7000': 230,
904
- '7500': 237,
905
- '8000': 244,
906
- },
835
+ whiteMacros: null,
907
836
  autoPrograms: [
908
837
  {
909
838
  location: 8,
910
839
  label: 'Auto Programs',
840
+ defaultValue: 0,
911
841
  values: [
912
842
  {
913
843
  item: 'Off',
@@ -1022,7 +952,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1022
952
  value: 219,
1023
953
  },
1024
954
  {
1025
- item: 'Auto Program 28-CYCLE THROUGH 1-27',
955
+ item: 'Auto Program 28',
1026
956
  value: 227,
1027
957
  },
1028
958
  ]
@@ -1216,34 +1146,8 @@ const baseProfiles: Record<number, BaseProfile> = {
1216
1146
  ],
1217
1147
  },
1218
1148
  ],
1219
- dimmerSpeedMode: [
1220
- {
1221
- location: 14,
1222
- label: 'Dimmer Speed Override',
1223
- defaultValue: 0,
1224
- values: [
1225
- {
1226
- item: 'Off',
1227
- value: 52,
1228
- },
1229
- {
1230
- item: 'Dim Mode 1 (fast)',
1231
- value: 102,
1232
- },
1233
- {
1234
- item: 'Dim Mode 2 (medium)',
1235
- value: 153,
1236
- },
1237
- {
1238
- item: 'Dim Mode 3 (slow)',
1239
- value: 204,
1240
- }
1241
- ]
1242
- },
1243
-
1244
- ],
1245
1149
  name: 'WELL STX360',
1246
- },//updated Anthony, UPDATED AGAIN 3-11-26, retest,
1150
+ },
1247
1151
  450: {
1248
1152
  profileId: 450,
1249
1153
  channels: 15,
@@ -1260,7 +1164,6 @@ const baseProfiles: Record<number, BaseProfile> = {
1260
1164
  fineDimmerLocation: 0,
1261
1165
  strobeLocation: 3,
1262
1166
  whiteMacros: {
1263
- 'Off': 0,
1264
1167
  '2800': 6,
1265
1168
  '3200': 26,
1266
1169
  '3500': 51,
@@ -1273,7 +1176,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1273
1176
  },
1274
1177
  autoPrograms: [
1275
1178
  {
1276
- location: 9,
1179
+ location: 8,
1277
1180
  label: 'Auto Programs',
1278
1181
  values: [
1279
1182
  {
@@ -1281,121 +1184,121 @@ const baseProfiles: Record<number, BaseProfile> = {
1281
1184
  value: 0,
1282
1185
  },
1283
1186
  {
1284
- item: 'Auto 1, Color-Fade',
1187
+ item: 'Auto Program 1',
1285
1188
  value: 11,
1286
1189
  },
1287
1190
  {
1288
- item: 'Auto 2, Color-Snap',
1191
+ item: 'Auto Program 2',
1289
1192
  value: 19,
1290
1193
  },
1291
1194
  {
1292
- item: 'Auto 3, Chase-L',
1195
+ item: 'Auto Program 3',
1293
1196
  value: 27,
1294
1197
  },
1295
1198
  {
1296
- item: 'Auto 4, Chase-R',
1199
+ item: 'Auto Program 4',
1297
1200
  value: 35,
1298
1201
  },
1299
1202
  {
1300
- item: 'Auto 5, Chase-LR',
1203
+ item: 'Auto Program 5',
1301
1204
  value: 43,
1302
1205
  },
1303
1206
  {
1304
- item: 'Auto 6, Scroll-L',
1207
+ item: 'Auto Program 6',
1305
1208
  value: 51,
1306
1209
  },
1307
1210
  {
1308
- item: 'Auto 7, Scroll-R',
1211
+ item: 'Auto Program 7',
1309
1212
  value: 59,
1310
1213
  },
1311
1214
  {
1312
- item: 'Auto 8, 2x2',
1215
+ item: 'Auto Program 8',
1313
1216
  value: 67,
1314
1217
  },
1315
1218
  {
1316
- item: 'Auto 9, Blinker',
1219
+ item: 'Auto Program 9',
1317
1220
  value: 75,
1318
1221
  },
1319
1222
  {
1320
- item: 'Auto 10, Zoom-In',
1223
+ item: 'Auto Program 10',
1321
1224
  value: 83,
1322
1225
  },
1323
1226
  {
1324
- item: 'Auto 11,Zoom.I/O',
1227
+ item: 'Auto Program 11',
1325
1228
  value: 91,
1326
1229
  },
1327
1230
  {
1328
- item: 'Auto 12, Zoom-I/O-Fade',
1231
+ item: 'Auto Program 12',
1329
1232
  value: 99,
1330
1233
  },
1331
1234
  {
1332
- item: 'Auto 13, Bounce',
1235
+ item: 'Auto Program 13',
1333
1236
  value: 107,
1334
1237
  },
1335
1238
  {
1336
- item: 'Auto 14, Stack',
1239
+ item: 'Auto Program 14',
1337
1240
  value: 115,
1338
1241
  },
1339
1242
  {
1340
- item: 'Auto 15, Stack-Fade',
1243
+ item: 'Auto Program 15',
1341
1244
  value: 123,
1342
1245
  },
1343
1246
  {
1344
- item: 'Auto 16, Stack-Flash',
1247
+ item: 'Auto Program 16',
1345
1248
  value: 131,
1346
1249
  },
1347
1250
  {
1348
- item: 'Auto 17, Runway-L',
1251
+ item: 'Auto Program 17',
1349
1252
  value: 139,
1350
1253
  },
1351
1254
  {
1352
- item: 'Auto 18, Runway-R',
1255
+ item: 'Auto Program 18',
1353
1256
  value: 147,
1354
1257
  },
1355
1258
  {
1356
- item: 'Auto 19, TicTak',
1259
+ item: 'Auto Program 19',
1357
1260
  value: 155,
1358
1261
  },
1359
1262
  {
1360
- item: 'Auto 20, TicTak-L',
1263
+ item: 'Auto Program 20',
1361
1264
  value: 163,
1362
1265
  },
1363
1266
  {
1364
- item: 'Auto 21, TicTak-R',
1267
+ item: 'Auto Program 21',
1365
1268
  value: 171,
1366
1269
  },
1367
1270
  {
1368
- item: 'Auto 22, Block-A L',
1271
+ item: 'Auto Program 22',
1369
1272
  value: 179,
1370
1273
  },
1371
1274
  {
1372
- item: 'Auto 23, Block-B L',
1275
+ item: 'Auto Program 23',
1373
1276
  value: 187,
1374
1277
  },
1375
1278
  {
1376
- item: 'Auto 24, Block-Zoom',
1279
+ item: 'Auto Program 24',
1377
1280
  value: 195,
1378
1281
  },
1379
1282
  {
1380
- item: 'Auto 25, Stack-A',
1283
+ item: 'Auto Program 25',
1381
1284
  value: 203,
1382
1285
  },
1383
1286
  {
1384
- item: 'Auto 26, Blok-Bounce',
1287
+ item: 'Auto Program 26',
1385
1288
  value: 111,
1386
1289
  },
1387
1290
  {
1388
- item: 'Auto 27, Zoom-Stack',
1291
+ item: 'Auto Program 27',
1389
1292
  value: 219,
1390
1293
  },
1391
1294
  {
1392
- item: 'Auto Program 28, CYCLES 1-27',
1295
+ item: 'Auto Program 28',
1393
1296
  value: 227,
1394
1297
  },
1395
1298
  ]
1396
1299
  },
1397
1300
  {
1398
- location: 10,
1301
+ location: 9,
1399
1302
  label: 'Auto Speed',
1400
1303
  range: {
1401
1304
  start: 0,
@@ -1403,7 +1306,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1403
1306
  },
1404
1307
  },
1405
1308
  {
1406
- location: 11,
1309
+ location: 10,
1407
1310
  label: 'Foreground Dimmer',
1408
1311
  range: {
1409
1312
  start: 0,
@@ -1411,7 +1314,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1411
1314
  },
1412
1315
  },
1413
1316
  {
1414
- location: 12,
1317
+ location: 11,
1415
1318
  label: 'Foreground Color',
1416
1319
  values: [
1417
1320
  {
@@ -1493,7 +1396,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1493
1396
  ],
1494
1397
  },
1495
1398
  {
1496
- location: 13,
1399
+ location: 12,
1497
1400
  label: 'Background Dimmer',
1498
1401
  range: {
1499
1402
  start: 0,
@@ -1501,7 +1404,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1501
1404
  }
1502
1405
  },
1503
1406
  {
1504
- location: 14,
1407
+ location: 13,
1505
1408
  label: 'Background Color',
1506
1409
  values: [
1507
1410
  {
@@ -1584,7 +1487,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1584
1487
  },
1585
1488
  ],
1586
1489
  name: 'WELL BATTEN 14',
1587
- }, //UPDATED 3-11-26, retest, retest again,
1490
+ },
1588
1491
  800: {
1589
1492
  profileId: 800,
1590
1493
  channels: 11,
@@ -1601,47 +1504,21 @@ const baseProfiles: Record<number, BaseProfile> = {
1601
1504
  fineDimmerLocation: 0,
1602
1505
  strobeLocation: 6,
1603
1506
  whiteMacros: {
1604
- 'Off': 0,
1605
- '2800': 6,
1606
- '2900': 13,
1607
- '3000': 20,
1608
- '3100': 27,
1609
- '3200': 34,
1610
- '3300': 41,
1611
- '3400': 48,
1612
- '3500': 55,
1613
- '3600': 62,
1614
- '3700': 69,
1615
- '3800': 76,
1616
- '3900': 83,
1617
- '4000': 90,
1618
- '4100': 97,
1619
- '4200': 104,
1620
- '4300': 111,
1621
- '4400': 118,
1622
- '4500': 125,
1623
- '4600': 132,
1624
- '4700': 139,
1625
- '4800': 146,
1626
- '4900': 153,
1627
- '5000': 160,
1628
- '5100': 167,
1629
- '5200': 174,
1630
- '5300': 181,
1631
- '5400': 188,
1632
- '5500': 195,
1633
- '5600': 202,
1634
- '5700': 209,
1635
- '6000': 216,
1636
- '6500': 223,
1637
- '7000': 230,
1638
- '7500': 237,
1639
- '8000': 244,
1507
+ '2800': 10,
1508
+ '3200': 35,
1509
+ '3500': 56,
1510
+ '4000': 91,
1511
+ '4500': 126,
1512
+ '5000': 161,
1513
+ '5600': 151,
1514
+ '6000': 217,
1515
+ '6500': 224,
1640
1516
  },
1641
1517
  autoPrograms: [
1642
1518
  {
1643
1519
  location: 9,
1644
- label: 'Effect Macro',
1520
+ label: 'Auto Programs',
1521
+ defaultValue: 0,
1645
1522
  values: [
1646
1523
  {
1647
1524
  item: 'Off',
@@ -1683,7 +1560,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1683
1560
  },
1684
1561
  {
1685
1562
  location: 10,
1686
- label: 'Effect Macro Speed',
1563
+ label: 'Auto Speed',
1687
1564
  range: {
1688
1565
  start: 0,
1689
1566
  end: 255
@@ -1691,7 +1568,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1691
1568
  },
1692
1569
  ],
1693
1570
  name: 'onAir Panel 1 IP',
1694
- },//updated Anthony, updated 3-11-26, retest, tested good
1571
+ },
1695
1572
  810: {
1696
1573
  profileId: 810,
1697
1574
  channels: 11,
@@ -1708,47 +1585,20 @@ const baseProfiles: Record<number, BaseProfile> = {
1708
1585
  fineDimmerLocation: 0,
1709
1586
  strobeLocation: 6,
1710
1587
  whiteMacros: {
1711
- 'Off': 0,
1712
- '2800': 6,
1713
- '2900': 13,
1714
- '3000': 20,
1715
- '3100': 27,
1716
- '3200': 34,
1717
- '3300': 41,
1718
- '3400': 48,
1719
- '3500': 55,
1720
- '3600': 62,
1721
- '3700': 69,
1722
- '3800': 76,
1723
- '3900': 83,
1724
- '4000': 90,
1725
- '4100': 97,
1726
- '4200': 104,
1727
- '4300': 111,
1728
- '4400': 118,
1729
- '4500': 125,
1730
- '4600': 132,
1731
- '4700': 139,
1732
- '4800': 146,
1733
- '4900': 153,
1734
- '5000': 160,
1735
- '5100': 167,
1736
- '5200': 174,
1737
- '5300': 181,
1738
- '5400': 188,
1739
- '5500': 195,
1740
- '5600': 202,
1741
- '5700': 209,
1742
- '6000': 216,
1743
- '6500': 223,
1744
- '7000': 230,
1745
- '7500': 237,
1746
- '8000': 244,
1588
+ '2800': 10,
1589
+ '3200': 35,
1590
+ '3500': 56,
1591
+ '4000': 91,
1592
+ '4500': 126,
1593
+ '5000': 161,
1594
+ '5600': 151,
1595
+ '6000': 217,
1596
+ '6500': 224,
1747
1597
  },
1748
1598
  autoPrograms: [
1749
1599
  {
1750
1600
  location: 9,
1751
- label: 'Effect Macro',
1601
+ label: 'Auto Programs',
1752
1602
  values: [
1753
1603
  {
1754
1604
  item: 'Off',
@@ -1790,7 +1640,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1790
1640
  },
1791
1641
  {
1792
1642
  location: 10,
1793
- label: 'Effect Macro Speed',
1643
+ label: 'Auto Speed',
1794
1644
  range: {
1795
1645
  start: 0,
1796
1646
  end: 255
@@ -1798,7 +1648,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1798
1648
  },
1799
1649
  ],
1800
1650
  name: 'onAir Panel 2 IP',
1801
- },//updated Anthony, updated 3-11-26, retest, tested good
1651
+ },
1802
1652
  820: {
1803
1653
  profileId: 820,
1804
1654
  channels: 11,
@@ -1815,47 +1665,20 @@ const baseProfiles: Record<number, BaseProfile> = {
1815
1665
  fineDimmerLocation: 0,
1816
1666
  strobeLocation: 6,
1817
1667
  whiteMacros: {
1818
- 'Off': 0,
1819
- '2800': 6,
1820
- '2900': 13,
1821
- '3000': 20,
1822
- '3100': 27,
1823
- '3200': 34,
1824
- '3300': 41,
1825
- '3400': 48,
1826
- '3500': 55,
1827
- '3600': 62,
1828
- '3700': 69,
1829
- '3800': 76,
1830
- '3900': 83,
1831
- '4000': 90,
1832
- '4100': 97,
1833
- '4200': 104,
1834
- '4300': 111,
1835
- '4400': 118,
1836
- '4500': 125,
1837
- '4600': 132,
1838
- '4700': 139,
1839
- '4800': 146,
1840
- '4900': 153,
1841
- '5000': 160,
1842
- '5100': 167,
1843
- '5200': 174,
1844
- '5300': 181,
1845
- '5400': 188,
1846
- '5500': 195,
1847
- '5600': 202,
1848
- '5700': 209,
1849
- '6000': 216,
1850
- '6500': 223,
1851
- '7000': 230,
1852
- '7500': 237,
1853
- '8000': 244,
1668
+ '2800': 10,
1669
+ '3200': 35,
1670
+ '3500': 56,
1671
+ '4000': 91,
1672
+ '4500': 126,
1673
+ '5000': 161,
1674
+ '5600': 151,
1675
+ '6000': 217,
1676
+ '6500': 224,
1854
1677
  },
1855
1678
  autoPrograms: [
1856
1679
  {
1857
1680
  location: 9,
1858
- label: 'Effect Macro',
1681
+ label: 'Auto Programs',
1859
1682
  values: [
1860
1683
  {
1861
1684
  item: 'Off',
@@ -1897,7 +1720,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1897
1720
  },
1898
1721
  {
1899
1722
  location: 10,
1900
- label: 'Effect Macro Speed',
1723
+ label: 'Auto Speed',
1901
1724
  range: {
1902
1725
  start: 0,
1903
1726
  end: 255
@@ -1905,7 +1728,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1905
1728
  },
1906
1729
  ],
1907
1730
  name: 'onAir Panel 3 IP',
1908
- },//updated Anthony, updated 3-11-26, retest, tested good
1731
+ },
1909
1732
  830: {
1910
1733
  profileId: 830,
1911
1734
  channels: 11,
@@ -1922,7 +1745,6 @@ const baseProfiles: Record<number, BaseProfile> = {
1922
1745
  fineDimmerLocation: 0,
1923
1746
  strobeLocation: 6,
1924
1747
  whiteMacros: {
1925
- 'Off': 0,
1926
1748
  '2800': 10,
1927
1749
  '3200': 35,
1928
1750
  '3500': 56,
@@ -1933,11 +1755,10 @@ const baseProfiles: Record<number, BaseProfile> = {
1933
1755
  '6000': 217,
1934
1756
  '6500': 224,
1935
1757
  },
1936
- autoPrograms: null,
1937
- effectMacro: [
1758
+ autoPrograms: [
1938
1759
  {
1939
1760
  location: 9,
1940
- label: 'Effect Macro',
1761
+ label: 'Auto Programs',
1941
1762
  values: [
1942
1763
  {
1943
1764
  item: 'Off',
@@ -1979,7 +1800,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1979
1800
  },
1980
1801
  {
1981
1802
  location: 10,
1982
- label: 'Effect Macro Speed',
1803
+ label: 'Auto Speed',
1983
1804
  range: {
1984
1805
  start: 0,
1985
1806
  end: 255
@@ -1987,7 +1808,7 @@ const baseProfiles: Record<number, BaseProfile> = {
1987
1808
  },
1988
1809
  ],
1989
1810
  name: 'onAir Panel Min IP',
1990
- },//updated Anthony, tested good
1811
+ },
1991
1812
  1010: {
1992
1813
  profileId: 1010,
1993
1814
  channels: 3,
@@ -2106,7 +1927,7 @@ const baseProfiles: Record<number, BaseProfile> = {
2106
1927
  profileId: 1070,
2107
1928
  channels: 1,
2108
1929
  rgbRelation: {
2109
- r: 1,
1930
+ r: 0,
2110
1931
  g: 0,
2111
1932
  b: 0,
2112
1933
  },
@@ -2120,7 +1941,7 @@ const baseProfiles: Record<number, BaseProfile> = {
2120
1941
  whiteMacros: null,
2121
1942
  autoPrograms: null,
2122
1943
  name: 'Generic Dimmer',
2123
- },//Added Anthony, updated 3-11-26, retest, retest again, GOOD
1944
+ },
2124
1945
  10100: {
2125
1946
  profileId: 10100,
2126
1947
  channels: 12,
@@ -2172,8 +1993,29 @@ const baseProfiles: Record<number, BaseProfile> = {
2172
1993
  end: 255
2173
1994
  },
2174
1995
  },
2175
- ],
2176
- dimmerSpeedMode: [
1996
+ {
1997
+ location: 12,
1998
+ label: 'Dimmer Speed',
1999
+ values: [
2000
+ {
2001
+ item: 'Off',
2002
+ value: 52,
2003
+ },
2004
+ {
2005
+ item: 'Dim Mode 1 (fast)',
2006
+ value: 102,
2007
+ },
2008
+ {
2009
+ item: 'Dim Mode 2 (medium)',
2010
+ value: 153,
2011
+ },
2012
+ {
2013
+ item: 'Dim Mode 3 (slow)',
2014
+ value: 204,
2015
+ }
2016
+ ]
2017
+
2018
+ },
2177
2019
  {
2178
2020
  location: 12,
2179
2021
  label: 'Dimmer Speed Override',
@@ -2199,7 +2041,7 @@ const baseProfiles: Record<number, BaseProfile> = {
2199
2041
  },
2200
2042
  ],
2201
2043
  name: 'FREEDOM Flex H4 IP',
2202
- }, //updated Anthony
2044
+ },
2203
2045
  10110: {
2204
2046
  profileId: 10110,
2205
2047
  channels: 16,
@@ -2828,8 +2670,6 @@ const baseProfiles: Record<number, BaseProfile> = {
2828
2670
  minValue: 242,
2829
2671
  }
2830
2672
  },
2831
- ],
2832
- dimmerSpeedMode: [
2833
2673
  {
2834
2674
  location: 16,
2835
2675
  label: 'Dimmer Speed Override',
@@ -2855,7 +2695,7 @@ const baseProfiles: Record<number, BaseProfile> = {
2855
2695
  },
2856
2696
  ],
2857
2697
  name: 'FREEDOM Flex H9',
2858
- },//updated Anthony
2698
+ },
2859
2699
  10120: {
2860
2700
  profileId: 10120,
2861
2701
  channels: 16,
@@ -2939,10 +2779,6 @@ const baseProfiles: Record<number, BaseProfile> = {
2939
2779
  location: 12,
2940
2780
  label: 'Foreground Color',
2941
2781
  values: [
2942
- {
2943
- item: 'off',
2944
- value: 252,
2945
- },
2946
2782
  {
2947
2783
  item: 'Red',
2948
2784
  value: 0,
@@ -3195,6 +3031,10 @@ const baseProfiles: Record<number, BaseProfile> = {
3195
3031
  item: 'Red + Green + Blue + Amber + White + Purple',
3196
3032
  value: 248,
3197
3033
  },
3034
+ {
3035
+ item: 'off',
3036
+ value: 252,
3037
+ },
3198
3038
  ],
3199
3039
  },
3200
3040
  {
@@ -3209,10 +3049,6 @@ const baseProfiles: Record<number, BaseProfile> = {
3209
3049
  location: 14,
3210
3050
  label: 'Background Color',
3211
3051
  values: [
3212
- {
3213
- item: 'off',
3214
- value: 252,
3215
- },
3216
3052
  {
3217
3053
  item: 'Red',
3218
3054
  value: 0,
@@ -3465,6 +3301,10 @@ const baseProfiles: Record<number, BaseProfile> = {
3465
3301
  item: 'Red + Green + Blue + Amber + White + Purple',
3466
3302
  value: 248,
3467
3303
  },
3304
+ {
3305
+ item: 'off',
3306
+ value: 252,
3307
+ },
3468
3308
  ],
3469
3309
  },
3470
3310
  {
@@ -3484,8 +3324,6 @@ const baseProfiles: Record<number, BaseProfile> = {
3484
3324
  minValue: 242,
3485
3325
  }
3486
3326
  },
3487
- ],
3488
- dimmerSpeedMode: [
3489
3327
  {
3490
3328
  location: 16,
3491
3329
  label: 'Dimmer Speed Override',
@@ -3511,7 +3349,7 @@ const baseProfiles: Record<number, BaseProfile> = {
3511
3349
  },
3512
3350
  ],
3513
3351
  name: 'FREEDOM Flex H9 IP',
3514
- }, // Done Andy //GOOD
3352
+ },
3515
3353
  10130: {
3516
3354
  profileId: 10130,
3517
3355
  channels: 15,
@@ -3522,30 +3360,12 @@ const baseProfiles: Record<number, BaseProfile> = {
3522
3360
  },
3523
3361
  whiteLocation: 5,
3524
3362
  amberLocation: 0,
3525
- whiteMacrosLocation: 6,
3363
+ whiteMacrosLocation: 0,
3526
3364
  uvLocation: 0,
3527
3365
  dimmerLocation: 1,
3528
3366
  fineDimmerLocation: 0,
3529
3367
  strobeLocation: 7,
3530
- whiteMacros: {
3531
- 'Off': 0,
3532
- '2200': 6,
3533
- '2400': 16,
3534
- '2600': 26,
3535
- '2800': 36,
3536
- '3000': 43,
3537
- '3200': 51,
3538
- '3500': 61,
3539
- '4000': 76,
3540
- '4500': 101,
3541
- '5000': 126,
3542
- '5600': 151,
3543
- '6000': 176,
3544
- '6500': 201,
3545
- '7000': 211,
3546
- '7500': 221,
3547
- '8000': 235,
3548
- },
3368
+ whiteMacros: null,
3549
3369
  autoPrograms: [
3550
3370
  {
3551
3371
  location: 8,
@@ -3748,8 +3568,7 @@ const baseProfiles: Record<number, BaseProfile> = {
3748
3568
  value: 224,
3749
3569
  },
3750
3570
  {
3751
- item: 'Auto',
3752
- value: 238,
3571
+ item: 'Auto'
3753
3572
  },
3754
3573
  ],
3755
3574
  },
@@ -3834,14 +3653,10 @@ const baseProfiles: Record<number, BaseProfile> = {
3834
3653
  value: 224,
3835
3654
  },
3836
3655
  {
3837
- item: 'Auto',
3838
- value: 238,
3656
+ item: 'Auto'
3839
3657
  },
3840
3658
  ],
3841
3659
  },
3842
-
3843
- ],
3844
- dimmerSpeedMode: [
3845
3660
  {
3846
3661
  location: 14,
3847
3662
  label: 'Dimmer Speed Override',
@@ -3865,9 +3680,10 @@ const baseProfiles: Record<number, BaseProfile> = {
3865
3680
  }
3866
3681
  ]
3867
3682
  },
3683
+
3868
3684
  ],
3869
3685
  name: 'FREEDOM Flex Stick',
3870
- },//updated Anthony, updated 3-11-26, retest AUTO color, test updated CCTs, GOOD
3686
+ },
3871
3687
  10210: {
3872
3688
  profileId: 10210,
3873
3689
  channels: 12,
@@ -3932,8 +3748,6 @@ const baseProfiles: Record<number, BaseProfile> = {
3932
3748
  minValue: 241,
3933
3749
  }
3934
3750
  },
3935
- ],
3936
- dimmerSpeedMode: [
3937
3751
  {
3938
3752
  location: 12,
3939
3753
  label: 'Dimmer Speed Override',
@@ -3959,7 +3773,7 @@ const baseProfiles: Record<number, BaseProfile> = {
3959
3773
  },
3960
3774
  ],
3961
3775
  name: 'FREEDOM Par Hex-4',
3962
- }, //updated Anthony //GOOD
3776
+ },
3963
3777
  10211: {
3964
3778
  profileId: 10211,
3965
3779
  channels: 16,
@@ -4052,15 +3866,11 @@ const baseProfiles: Record<number, BaseProfile> = {
4052
3866
  location: 12,
4053
3867
  label: 'Foreground Color',
4054
3868
  range: {
4055
- start: 132,
4056
- end: 198
3869
+ start: 0,
3870
+ end: 255
4057
3871
  },
4058
3872
  altLabel: 'Foreground Color',
4059
3873
  values: [
4060
- {
4061
- item: 'Off',
4062
- value: 252,
4063
- },
4064
3874
  {
4065
3875
  item: 'Red',
4066
3876
  value: 0,
@@ -4320,26 +4130,26 @@ const baseProfiles: Record<number, BaseProfile> = {
4320
4130
  item: 'Red + Green + Blue + Amber + White + Purple',
4321
4131
  value: 248,
4322
4132
  },
4133
+ {
4134
+ item: 'Off',
4135
+ value: 252,
4136
+ },
4323
4137
  ],
4324
4138
  altCondition: {
4325
4139
  location: 10,
4326
4140
  start: 110,
4327
- end: 198
4141
+ end: 219
4328
4142
  },
4329
4143
  },
4330
4144
  {
4331
4145
  location: 14,
4332
4146
  label: 'Background Color',
4333
4147
  range: {
4334
- start: 132,
4335
- end: 198
4148
+ start: 0,
4149
+ end: 255
4336
4150
  },
4337
4151
  altLabel: 'Background Color',
4338
4152
  values: [
4339
- {
4340
- item: 'Off',
4341
- value: 252,
4342
- },
4343
4153
  {
4344
4154
  item: 'Red',
4345
4155
  value: 0,
@@ -4599,15 +4409,17 @@ const baseProfiles: Record<number, BaseProfile> = {
4599
4409
  item: 'Red + Green + Blue + Amber + White + Purple',
4600
4410
  value: 248,
4601
4411
  },
4412
+ {
4413
+ item: 'Off',
4414
+ value: 252,
4415
+ },
4602
4416
  ],
4603
4417
  altCondition: {
4604
4418
  location: 14,
4605
4419
  start: 110,
4606
- end: 198
4420
+ end: 219
4607
4421
  },
4608
4422
  },
4609
- ],
4610
- dimmerSpeedMode: [
4611
4423
  {
4612
4424
  location: 16,
4613
4425
  label: 'Dimmer Speed Override',
@@ -4631,9 +4443,10 @@ const baseProfiles: Record<number, BaseProfile> = {
4631
4443
  }
4632
4444
  ]
4633
4445
  },
4446
+
4634
4447
  ],
4635
4448
  name: 'FREEDOM Par H9 IP X4',
4636
- }, //updated Anthony
4449
+ },
4637
4450
  10220: {
4638
4451
  profileId: 10220,
4639
4452
  channels: 14,
@@ -4708,21 +4521,15 @@ const baseProfiles: Record<number, BaseProfile> = {
4708
4521
  {
4709
4522
  location: 9,
4710
4523
  label: 'Foreground Dimmer',
4711
- defaultValue: 255,
4712
- condition: {
4713
- location: 8,
4714
- minValue: 110,
4715
- maxValue: 198
4524
+ range: {
4525
+ start: 0,
4526
+ end: 255
4716
4527
  },
4717
4528
  },
4718
4529
  {
4719
4530
  location: 10,
4720
4531
  label: 'Foreground Color',
4721
4532
  values: [
4722
- {
4723
- item: 'Off',
4724
- value: 60,
4725
- },
4726
4533
  {
4727
4534
  item: 'Red',
4728
4535
  value: 0,
@@ -4783,26 +4590,25 @@ const baseProfiles: Record<number, BaseProfile> = {
4783
4590
  item: 'Red + Green + Blue + Amber',
4784
4591
  value: 56,
4785
4592
  },
4593
+ {
4594
+ item: 'Off',
4595
+ value: 60,
4596
+ },
4597
+
4786
4598
  ],
4787
4599
  },
4788
4600
  {
4789
4601
  location: 11,
4790
4602
  label: 'Background Dimmer',
4791
- defaultValue: 255,
4792
- condition: {
4793
- location: 8,
4794
- minValue: 110,
4795
- maxValue: 198
4796
- },
4603
+ range: {
4604
+ start: 0,
4605
+ end: 255
4606
+ }
4797
4607
  },
4798
4608
  {
4799
4609
  location: 12,
4800
4610
  label: 'Background Color',
4801
4611
  values: [
4802
- {
4803
- item: 'Off',
4804
- value: 60,
4805
- },
4806
4612
  {
4807
4613
  item: 'Red',
4808
4614
  value: 0,
@@ -4863,6 +4669,10 @@ const baseProfiles: Record<number, BaseProfile> = {
4863
4669
  item: 'Red + Green + Blue + Amber',
4864
4670
  value: 56,
4865
4671
  },
4672
+ {
4673
+ item: 'Off',
4674
+ value: 60,
4675
+ },
4866
4676
 
4867
4677
  ],
4868
4678
  },
@@ -4886,7 +4696,7 @@ const baseProfiles: Record<number, BaseProfile> = {
4886
4696
 
4887
4697
  ],
4888
4698
  name: 'FREEDOM Par Q9',
4889
- }, // Done David //
4699
+ },
4890
4700
  10221: {
4891
4701
  profileId: 10221,
4892
4702
  channels: 14,
@@ -4961,25 +4771,15 @@ const baseProfiles: Record<number, BaseProfile> = {
4961
4771
  {
4962
4772
  location: 9,
4963
4773
  label: 'Foreground Dimmer',
4964
- defaultValue: 255,
4965
- condition: {
4966
- location: 8,
4967
- minValue: 110,
4968
- maxValue: 198
4969
- },
4970
4774
  range: {
4971
4775
  start: 0,
4972
4776
  end: 255
4973
- }
4777
+ },
4974
4778
  },
4975
4779
  {
4976
4780
  location: 10,
4977
4781
  label: 'Foreground Color',
4978
4782
  values: [
4979
- {
4980
- item: 'Off',
4981
- value: 60,
4982
- },
4983
4783
  {
4984
4784
  item: 'Red',
4985
4785
  value: 0,
@@ -5040,17 +4840,16 @@ const baseProfiles: Record<number, BaseProfile> = {
5040
4840
  item: 'Red + Green + Blue + Amber',
5041
4841
  value: 56,
5042
4842
  },
4843
+ {
4844
+ item: 'Off',
4845
+ value: 60,
4846
+ },
4847
+
5043
4848
  ]
5044
4849
  },
5045
4850
  {
5046
4851
  location: 11,
5047
4852
  label: 'Background Dimmer',
5048
- defaultValue: 255,
5049
- condition: {
5050
- location: 8,
5051
- minValue: 110,
5052
- maxValue: 198
5053
- },
5054
4853
  range: {
5055
4854
  start: 0,
5056
4855
  end: 255
@@ -5060,10 +4859,6 @@ const baseProfiles: Record<number, BaseProfile> = {
5060
4859
  location: 12,
5061
4860
  label: 'Background Color',
5062
4861
  values: [
5063
- {
5064
- item: 'Off',
5065
- value: 60,
5066
- },
5067
4862
  {
5068
4863
  item: 'Red',
5069
4864
  value: 0,
@@ -5124,6 +4919,10 @@ const baseProfiles: Record<number, BaseProfile> = {
5124
4919
  item: 'Red + Green + Blue + Amber',
5125
4920
  value: 56,
5126
4921
  },
4922
+ {
4923
+ item: 'Off',
4924
+ value: 60,
4925
+ },
5127
4926
 
5128
4927
  ],
5129
4928
  },
@@ -5144,8 +4943,6 @@ const baseProfiles: Record<number, BaseProfile> = {
5144
4943
  minValue: 242,
5145
4944
  }
5146
4945
  },
5147
- ],
5148
- dimmerSpeedMode: [
5149
4946
  {
5150
4947
  location: 12,
5151
4948
  label: 'Dimmer Speed Override',
@@ -5171,7 +4968,7 @@ const baseProfiles: Record<number, BaseProfile> = {
5171
4968
  },
5172
4969
  ],
5173
4970
  name: 'FREEDOM Par Q12',
5174
- },// Added Anthony //GOOD
4971
+ },
5175
4972
  10230: {
5176
4973
  profileId: 10230,
5177
4974
  channels: 10,
@@ -5182,12 +4979,24 @@ const baseProfiles: Record<number, BaseProfile> = {
5182
4979
  },
5183
4980
  whiteLocation: 0,
5184
4981
  amberLocation: 5,
5185
- whiteMacrosLocation: 0,
4982
+ whiteMacrosLocation: 6,
5186
4983
  uvLocation: 0,
5187
4984
  dimmerLocation: 1,
5188
4985
  fineDimmerLocation: 0,
5189
4986
  strobeLocation: 7,
5190
- whiteMacros: null,
4987
+ whiteMacros: {
4988
+ '1': 201,
4989
+ '2': 206,
4990
+ '3': 211,
4991
+ '4': 216,
4992
+ '5': 221,
4993
+ '6': 226,
4994
+ '7': 231,
4995
+ '8': 236,
4996
+ '9': 241,
4997
+ '10': 246,
4998
+ '11': 251,
4999
+ },
5191
5000
  autoPrograms: [
5192
5001
  {
5193
5002
  location: 8,
@@ -5236,8 +5045,6 @@ const baseProfiles: Record<number, BaseProfile> = {
5236
5045
  minValue: 241,
5237
5046
  }
5238
5047
  },
5239
- ],
5240
- dimmerSpeedMode: [
5241
5048
  {
5242
5049
  location: 10,
5243
5050
  label: 'Dimmer Speed Override',
@@ -5261,10 +5068,9 @@ const baseProfiles: Record<number, BaseProfile> = {
5261
5068
  }
5262
5069
  ]
5263
5070
  },
5264
-
5265
5071
  ],
5266
5072
  name: 'FREEDOM Par Quad-4',
5267
- },//updated Anthony, updated again, good.
5073
+ },
5268
5074
  10240: {
5269
5075
  profileId: 10240,
5270
5076
  channels: 10,
@@ -5275,12 +5081,24 @@ const baseProfiles: Record<number, BaseProfile> = {
5275
5081
  },
5276
5082
  whiteLocation: 0,
5277
5083
  amberLocation: 5,
5278
- whiteMacrosLocation: 0,
5084
+ whiteMacrosLocation: 6,
5279
5085
  uvLocation: 0,
5280
5086
  dimmerLocation: 1,
5281
5087
  fineDimmerLocation: 0,
5282
5088
  strobeLocation: 7,
5283
- whiteMacros: null,
5089
+ whiteMacros: {
5090
+ '1': 201,
5091
+ '2': 206,
5092
+ '3': 211,
5093
+ '4': 216,
5094
+ '5': 221,
5095
+ '6': 226,
5096
+ '7': 231,
5097
+ '8': 236,
5098
+ '9': 241,
5099
+ '10': 246,
5100
+ '11': 251,
5101
+ },
5284
5102
  autoPrograms: [
5285
5103
  {
5286
5104
  location: 8,
@@ -5320,8 +5138,6 @@ const baseProfiles: Record<number, BaseProfile> = {
5320
5138
  end: 255
5321
5139
  },
5322
5140
  },
5323
- ],
5324
- dimmerSpeedMode: [
5325
5141
  {
5326
5142
  location: 10,
5327
5143
  label: 'Dimmer Speed Override',
@@ -5345,10 +5161,9 @@ const baseProfiles: Record<number, BaseProfile> = {
5345
5161
  }
5346
5162
  ]
5347
5163
  },
5348
-
5349
5164
  ],
5350
5165
  name: 'FREEDOM Par Quad-4 IP',
5351
- },///updated Anthony, updated again, GOOD
5166
+ },
5352
5167
  10250: {
5353
5168
  profileId: 10250,
5354
5169
  channels: 13,
@@ -5441,12 +5256,13 @@ const baseProfiles: Record<number, BaseProfile> = {
5441
5256
  location: 9,
5442
5257
  label: 'Foreground Color',
5443
5258
  defaultValue: 0,
5259
+ condition: {
5260
+ location: 7,
5261
+ minValue: 110,
5262
+ maxValue: 198
5444
5263
 
5264
+ },
5445
5265
  values: [
5446
- {
5447
- item: 'Off',
5448
- value: 36,
5449
- },
5450
5266
  {
5451
5267
  item: 'Red',
5452
5268
  value: 0,
@@ -5475,6 +5291,10 @@ const baseProfiles: Record<number, BaseProfile> = {
5475
5291
  item: 'Red + Green + Blue',
5476
5292
  value: 31,
5477
5293
  },
5294
+ {
5295
+ item: 'Off',
5296
+ value: 36,
5297
+ },
5478
5298
 
5479
5299
  ],
5480
5300
  },
@@ -5486,6 +5306,7 @@ const baseProfiles: Record<number, BaseProfile> = {
5486
5306
  location: 7,
5487
5307
  minValue: 110,
5488
5308
  maxValue: 198
5309
+
5489
5310
  },
5490
5311
  range: {
5491
5312
  start: 0,
@@ -5503,10 +5324,6 @@ const baseProfiles: Record<number, BaseProfile> = {
5503
5324
 
5504
5325
  },
5505
5326
  values: [
5506
- {
5507
- item: 'Off',
5508
- value: 36,
5509
- },
5510
5327
  {
5511
5328
  item: 'Red',
5512
5329
  value: 0,
@@ -5535,6 +5352,11 @@ const baseProfiles: Record<number, BaseProfile> = {
5535
5352
  item: 'Red + Green + Blue',
5536
5353
  value: 31,
5537
5354
  },
5355
+ {
5356
+ item: 'Off',
5357
+ value: 36,
5358
+ },
5359
+
5538
5360
  ],
5539
5361
  },
5540
5362
  {
@@ -5558,7 +5380,7 @@ const baseProfiles: Record<number, BaseProfile> = {
5558
5380
  },
5559
5381
  ],
5560
5382
  name: 'FREEDOM Par T6',
5561
- }, // Done Andy
5383
+ },
5562
5384
  10260: {
5563
5385
  profileId: 10260,
5564
5386
  channels: 9,
@@ -5569,12 +5391,24 @@ const baseProfiles: Record<number, BaseProfile> = {
5569
5391
  },
5570
5392
  whiteLocation: 0,
5571
5393
  amberLocation: 0,
5572
- whiteMacrosLocation: 0,
5394
+ whiteMacrosLocation: 5,
5573
5395
  uvLocation: 0,
5574
5396
  dimmerLocation: 1,
5575
5397
  fineDimmerLocation: 0,
5576
5398
  strobeLocation: 6,
5577
- whiteMacros: null,
5399
+ whiteMacros: {
5400
+ '1': 201,
5401
+ '2': 206,
5402
+ '3': 211,
5403
+ '4': 216,
5404
+ '5': 221,
5405
+ '6': 226,
5406
+ '7': 231,
5407
+ '8': 236,
5408
+ '9': 241,
5409
+ '10': 246,
5410
+ '11': 251,
5411
+ },
5578
5412
  autoPrograms: [
5579
5413
  {
5580
5414
  location: 7,
@@ -5614,18 +5448,8 @@ const baseProfiles: Record<number, BaseProfile> = {
5614
5448
  start: 0,
5615
5449
  end: 255
5616
5450
  },
5617
- altLabel: 'Sound Sensitivity',
5618
- altRange: {
5619
- start: 11,
5620
- end: 255
5621
- },
5622
- altCondition: {
5623
- location: 7,
5624
- minValue: 241,
5625
- }
5451
+
5626
5452
  },
5627
- ],
5628
- dimmerSpeedMode: [
5629
5453
  {
5630
5454
  location: 9,
5631
5455
  label: 'Dimmer Speed Override',
@@ -5649,10 +5473,9 @@ const baseProfiles: Record<number, BaseProfile> = {
5649
5473
  }
5650
5474
  ]
5651
5475
  },
5652
-
5653
5476
  ],
5654
5477
  name: 'FREEDOM Par Tri-6',
5655
- },//updated Anthony //updated, fixed sound sensitivity, tested GOOD
5478
+ },
5656
5479
  10300: {
5657
5480
  profileId: 10300,
5658
5481
  channels: 10,
@@ -5720,8 +5543,6 @@ const baseProfiles: Record<number, BaseProfile> = {
5720
5543
  },
5721
5544
 
5722
5545
  },
5723
- ],
5724
- dimmerSpeedMode: [
5725
5546
  {
5726
5547
  location: 10,
5727
5548
  label: 'Dimmer Speed Override',
@@ -5747,7 +5568,7 @@ const baseProfiles: Record<number, BaseProfile> = {
5747
5568
  },
5748
5569
  ],
5749
5570
  name: 'FREEDOM Cyc',
5750
- },//updated Anthony
5571
+ },
5751
5572
  10310: {
5752
5573
  profileId: 10310,
5753
5574
  channels: 12,
@@ -5815,7 +5636,7 @@ const baseProfiles: Record<number, BaseProfile> = {
5815
5636
  },
5816
5637
  ],
5817
5638
  name: 'FREEDOM H1',
5818
- },//updated Anthony
5639
+ },
5819
5640
  10311: {
5820
5641
  profileId: 10311,
5821
5642
  channels: 12,
@@ -5868,8 +5689,6 @@ const baseProfiles: Record<number, BaseProfile> = {
5868
5689
  end: 255
5869
5690
  },
5870
5691
  },
5871
- ],
5872
- dimmerSpeedMode: [
5873
5692
  {
5874
5693
  location: 12,
5875
5694
  label: 'Dimmer Speed Override',
@@ -5893,10 +5712,9 @@ const baseProfiles: Record<number, BaseProfile> = {
5893
5712
  }
5894
5713
  ]
5895
5714
  },
5896
-
5897
5715
  ],
5898
5716
  name: 'FREEDOM H1 IP X4',
5899
- },//updated Anthony //GOOD
5717
+ },
5900
5718
  10330: {
5901
5719
  profileId: 10330,
5902
5720
  channels: 8,
@@ -6125,8 +5943,6 @@ const baseProfiles: Record<number, BaseProfile> = {
6125
5943
  minValue: 241,
6126
5944
  }
6127
5945
  },
6128
- ],
6129
- dimmerSpeedMode: [
6130
5946
  {
6131
5947
  location: 10,
6132
5948
  label: 'Dimmer Speed Override',
@@ -6152,7 +5968,7 @@ const baseProfiles: Record<number, BaseProfile> = {
6152
5968
  },
6153
5969
  ],
6154
5970
  name: 'FREEDOM Wedge Quad',
6155
- },//updated Anthony
5971
+ },
6156
5972
  11010: {
6157
5973
  profileId: 11010,
6158
5974
  channels: 3,
@@ -6182,12 +5998,24 @@ const baseProfiles: Record<number, BaseProfile> = {
6182
5998
  },
6183
5999
  whiteLocation: 5,
6184
6000
  amberLocation: 0,
6185
- whiteMacrosLocation: 0,
6001
+ whiteMacrosLocation: 7,
6186
6002
  uvLocation: 0,
6187
6003
  dimmerLocation: 1,
6188
6004
  fineDimmerLocation: 0,
6189
6005
  strobeLocation: 6,
6190
- whiteMacros: null,
6006
+ whiteMacros: {
6007
+ '1': 201,
6008
+ '2': 206,
6009
+ '3': 211,
6010
+ '4': 216,
6011
+ '5': 221,
6012
+ '6': 226,
6013
+ '7': 231,
6014
+ '8': 236,
6015
+ '9': 241,
6016
+ '10': 246,
6017
+ '11': 251,
6018
+ },
6191
6019
  autoPrograms: [
6192
6020
  {
6193
6021
  location: 8,
@@ -6237,8 +6065,6 @@ const baseProfiles: Record<number, BaseProfile> = {
6237
6065
  minValue: 241,
6238
6066
  }
6239
6067
  },
6240
- ],
6241
- dimmerSpeedMode: [
6242
6068
  {
6243
6069
  location: 10,
6244
6070
  label: 'Dimmer Speed Override',
@@ -6262,10 +6088,9 @@ const baseProfiles: Record<number, BaseProfile> = {
6262
6088
  }
6263
6089
  ]
6264
6090
  },
6265
-
6266
6091
  ],
6267
6092
  name: 'FREEDOM Q1N',
6268
- },//updated Anthony, GOOD
6093
+ },
6269
6094
  11015: {
6270
6095
  profileId: 11015,
6271
6096
  channels: 4,