@chauvet/connect-base-profiles 1.7.1 → 2.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.
@@ -14,6 +14,7 @@ export interface BaseProfile {
14
14
  fineDimmerLocation: number;
15
15
  strobeLocation: number;
16
16
  whiteMacros: Record<string, number> | null;
17
+ autoPrograms: any;
17
18
  name: string;
18
19
  }
19
20
 
@@ -35,7 +36,9 @@ const baseProfiles: Record<number, BaseProfile> = {
35
36
  fineDimmerLocation: 0,
36
37
  strobeLocation: 6,
37
38
  whiteMacros: {},
39
+ autoPrograms: null,
38
40
  name: 'WELL FIT',
41
+
39
42
  },
40
43
  60: {
41
44
  profileId: 60,
@@ -63,6 +66,7 @@ const baseProfiles: Record<number, BaseProfile> = {
63
66
  '6000': 176,
64
67
  '6500': 201,
65
68
  },
69
+ autoPrograms: null,
66
70
  name: 'WELL FIT X',
67
71
  },
68
72
  150: {
@@ -91,6 +95,7 @@ const baseProfiles: Record<number, BaseProfile> = {
91
95
  '6000': 176,
92
96
  '6500': 201,
93
97
  },
98
+ autoPrograms: null,
94
99
  name: 'WELL POD 2',
95
100
  },
96
101
  160: {
@@ -119,6 +124,7 @@ const baseProfiles: Record<number, BaseProfile> = {
119
124
  '6000': 176,
120
125
  '6500': 201,
121
126
  },
127
+ autoPrograms: null,
122
128
  name: 'WELL POD 3',
123
129
  },
124
130
  250: {
@@ -147,6 +153,7 @@ const baseProfiles: Record<number, BaseProfile> = {
147
153
  '6000': 176,
148
154
  '6500': 201,
149
155
  },
156
+ autoPrograms: null,
150
157
  name: 'WELL PANEL',
151
158
  },
152
159
  260: {
@@ -175,6 +182,7 @@ const baseProfiles: Record<number, BaseProfile> = {
175
182
  '6000': 176,
176
183
  '6500': 201,
177
184
  },
185
+ autoPrograms: null,
178
186
  name: 'WELL PANEL X',
179
187
  },
180
188
  350: {
@@ -193,6 +201,7 @@ const baseProfiles: Record<number, BaseProfile> = {
193
201
  fineDimmerLocation: 2,
194
202
  strobeLocation: 7,
195
203
  whiteMacros: null,
204
+ autoPrograms: null,
196
205
  name: 'WELL STX180',
197
206
  },
198
207
  360: {
@@ -211,6 +220,7 @@ const baseProfiles: Record<number, BaseProfile> = {
211
220
  fineDimmerLocation: 2,
212
221
  strobeLocation: 7,
213
222
  whiteMacros: null,
223
+ autoPrograms: null,
214
224
  name: 'WELL STX360',
215
225
  },
216
226
  450: {
@@ -239,6 +249,7 @@ const baseProfiles: Record<number, BaseProfile> = {
239
249
  '6000': 176,
240
250
  '6500': 201,
241
251
  },
252
+ autoPrograms: null,
242
253
  name: 'WELL BATTEN 14',
243
254
  },
244
255
 
@@ -268,6 +279,7 @@ const baseProfiles: Record<number, BaseProfile> = {
268
279
  '6000': 217,
269
280
  '6500': 224,
270
281
  },
282
+ autoPrograms: null,
271
283
  name: 'onAir Panel 1 IP',
272
284
  },
273
285
  810: {
@@ -296,6 +308,7 @@ const baseProfiles: Record<number, BaseProfile> = {
296
308
  '6000': 217,
297
309
  '6500': 224,
298
310
  },
311
+ autoPrograms: null,
299
312
  name: 'onAir Panel 2 IP',
300
313
  },
301
314
  820: {
@@ -324,6 +337,7 @@ const baseProfiles: Record<number, BaseProfile> = {
324
337
  '6000': 217,
325
338
  '6500': 224,
326
339
  },
340
+ autoPrograms: null,
327
341
  name: 'onAir Panel 3 IP',
328
342
  },
329
343
  830: {
@@ -352,6 +366,7 @@ const baseProfiles: Record<number, BaseProfile> = {
352
366
  '6000': 217,
353
367
  '6500': 224,
354
368
  },
369
+ autoPrograms: null,
355
370
  name: 'onAir Panel Min IP',
356
371
  },
357
372
 
@@ -371,6 +386,7 @@ const baseProfiles: Record<number, BaseProfile> = {
371
386
  fineDimmerLocation: 0,
372
387
  strobeLocation: 0,
373
388
  whiteMacros: null,
389
+ autoPrograms: null,
374
390
  name: 'Generic RGB',
375
391
  },
376
392
 
@@ -390,6 +406,7 @@ const baseProfiles: Record<number, BaseProfile> = {
390
406
  fineDimmerLocation: 0,
391
407
  strobeLocation: 0,
392
408
  whiteMacros: null,
409
+ autoPrograms: null,
393
410
  name: 'Generic RGBA',
394
411
  },
395
412
 
@@ -409,6 +426,7 @@ const baseProfiles: Record<number, BaseProfile> = {
409
426
  fineDimmerLocation: 0,
410
427
  strobeLocation: 0,
411
428
  whiteMacros: null,
429
+ autoPrograms: null,
412
430
  name: 'Generic RGBW',
413
431
  },
414
432
 
@@ -428,6 +446,7 @@ const baseProfiles: Record<number, BaseProfile> = {
428
446
  fineDimmerLocation: 0,
429
447
  strobeLocation: 0,
430
448
  whiteMacros: null,
449
+ autoPrograms: null,
431
450
  name: 'Generic DRGB',
432
451
  },
433
452
 
@@ -447,6 +466,7 @@ const baseProfiles: Record<number, BaseProfile> = {
447
466
  fineDimmerLocation: 0,
448
467
  strobeLocation: 0,
449
468
  whiteMacros: null,
469
+ autoPrograms: null,
450
470
  name: 'Generic DRGBA',
451
471
  },
452
472
 
@@ -466,104 +486,338 @@ const baseProfiles: Record<number, BaseProfile> = {
466
486
  fineDimmerLocation: 0,
467
487
  strobeLocation: 6,
468
488
  whiteMacros: null,
489
+ autoPrograms: null,
469
490
  name: 'Generic DRGBAS',
470
491
  },
471
492
 
472
-
473
- 10050: {
474
- profileId: 10050,
475
- channels: 14,
493
+ 10100: {
494
+ profileId: 10100,
495
+ channels: 12,
476
496
  rgbRelation: {
477
497
  r: 2,
478
498
  g: 3,
479
499
  b: 4,
480
500
  },
481
- whiteLocation: 0,
501
+ whiteLocation: 6,
482
502
  amberLocation: 5,
483
503
  whiteMacrosLocation: 0,
484
- uvLocation: 0,
504
+ uvLocation: 7,
485
505
  dimmerLocation: 1,
486
506
  fineDimmerLocation: 0,
487
- strobeLocation: 6,
507
+ strobeLocation: 8,
488
508
  whiteMacros: null,
489
- name: 'FREEDOM PAR Q9',
509
+ autoPrograms: null,
510
+ name: 'FREEDOM Flex H4 IP',
490
511
  },
491
- 10060: {
492
- profileId: 10060,
493
- channels: 10,
512
+ 10110: {
513
+ profileId: 10110,
514
+ channels: 16,
494
515
  rgbRelation: {
495
516
  r: 2,
496
517
  g: 3,
497
518
  b: 4,
498
519
  },
499
- whiteLocation: 0,
520
+ whiteLocation: 6,
500
521
  amberLocation: 5,
501
522
  whiteMacrosLocation: 0,
502
- uvLocation: 0,
523
+ uvLocation: 7,
503
524
  dimmerLocation: 1,
504
525
  fineDimmerLocation: 0,
505
- strobeLocation: 7,
526
+ strobeLocation: 8,
506
527
  whiteMacros: null,
507
- name: 'FREEDOM WEDGE QUAD',
528
+ autoPrograms: null,
529
+ name: 'FREEDOM Flex H9',
508
530
  },
509
- 10070: {
510
- profileId: 10070,
511
- channels: 10,
531
+ 10120: {
532
+ profileId: 10120,
533
+ channels: 16,
512
534
  rgbRelation: {
513
535
  r: 2,
514
536
  g: 3,
515
537
  b: 4,
516
538
  },
517
- whiteLocation: 5,
518
- amberLocation: 0,
539
+ whiteLocation: 6,
540
+ amberLocation: 5,
519
541
  whiteMacrosLocation: 0,
520
- uvLocation: 0,
542
+ uvLocation: 7,
521
543
  dimmerLocation: 1,
522
544
  fineDimmerLocation: 0,
523
- strobeLocation: 6,
545
+ strobeLocation: 8,
524
546
  whiteMacros: null,
525
- name: 'FREEDOM Q1N',
526
- },
527
- 10080: {
528
- profileId: 10080,
529
- channels: 10,
547
+ autoPrograms: null,
548
+ name: 'FREEDOM Flex H9 IP',
549
+ }, // Done Andy
550
+ 10130: {
551
+ profileId: 10130,
552
+ channels: 15,
530
553
  rgbRelation: {
531
554
  r: 2,
532
555
  g: 3,
533
556
  b: 4,
534
557
  },
535
- whiteLocation: 0,
536
- amberLocation: 5,
558
+ whiteLocation: 5,
559
+ amberLocation: 0,
537
560
  whiteMacrosLocation: 0,
538
561
  uvLocation: 0,
539
562
  dimmerLocation: 1,
540
563
  fineDimmerLocation: 0,
541
564
  strobeLocation: 7,
542
565
  whiteMacros: null,
543
- name: 'FREEDOM Par Quad-4 IP',
566
+ autoPrograms: null,
567
+ name: 'FREEDOM Flex Stick',
544
568
  },
545
- 10090: {
546
- profileId: 10090,
547
- channels: 10,
569
+
570
+ 10200: {
571
+ profileId: 10200,
572
+ channels: 16,
548
573
  rgbRelation: {
549
574
  r: 2,
550
575
  g: 3,
551
576
  b: 4,
552
577
  },
553
- whiteLocation: 0,
578
+ whiteLocation: 6,
554
579
  amberLocation: 5,
555
580
  whiteMacrosLocation: 0,
556
- uvLocation: 0,
581
+ uvLocation: 7,
557
582
  dimmerLocation: 1,
558
583
  fineDimmerLocation: 0,
559
- strobeLocation: 7,
584
+ strobeLocation: 8,
560
585
  whiteMacros: null,
561
- name: 'FREEDOM Par Quad-4',
562
- },
586
+ autoPrograms: [
587
+ {
588
+ location: 8,
589
+ label: 'Auto Programs',
590
+ values: [
591
+ {
592
+ item: 'Off',
593
+ value: 0,
594
+ },
595
+ {
596
+ item: 'Auto Program 1',
597
+ value: 22,
598
+ },
599
+ {
600
+ item: 'Auto Program 2',
601
+ value: 44,
602
+ },
603
+ {
604
+ item: 'Auto Program 3',
605
+ value: 66,
606
+ },
607
+ {
608
+ item: 'Auto Program 4',
609
+ value: 88,
610
+ },
611
+ {
612
+ item: 'Auto Program 5',
613
+ value: 110,
614
+ },
615
+ {
616
+ item: 'Auto Program 6',
617
+ value: 132,
618
+ },
619
+ {
620
+ item: 'Auto Program 7',
621
+ value: 154,
622
+ },
623
+ {
624
+ item: 'Auto Program 8',
625
+ value: 176,
626
+ },
627
+ {
628
+ item: 'Auto Program 9',
629
+ value: 198,
563
630
 
564
- 10100: {
565
- profileId: 10100,
566
- channels: 16,
631
+ },
632
+ {
633
+ item: 'Auto Program 1 - 9',
634
+ value: 220,
635
+ },
636
+ {
637
+ item: 'Sound Show',
638
+ value: 242,
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ location: 9,
644
+ label: 'Foreground Dimmer',
645
+ range: {
646
+ start: 0,
647
+ end: 255
648
+ }
649
+ },
650
+ {
651
+ location: 10,
652
+ label: 'Foreground Color',
653
+ hint: 'Only active for Auto Programs 5 - 9',
654
+ values: [
655
+ {
656
+ item: 'Red',
657
+ value: 0,
658
+ },
659
+ {
660
+ item: 'Green',
661
+ value: 4,
662
+ },
663
+ {
664
+ item: 'Blue',
665
+ value: 8,
666
+ },
667
+ {
668
+ item: 'Amber',
669
+ value: 12,
670
+ },
671
+ {
672
+ item: 'Red + Green',
673
+ value: 16,
674
+ },
675
+ {
676
+ item: 'Red + Amber',
677
+ value: 24,
678
+ },
679
+ {
680
+ item: 'Green + Blue',
681
+ value: 28,
682
+ },
683
+ {
684
+ item: 'Green + Amber',
685
+ value: 32,
686
+ },
687
+ {
688
+ item: 'Blue + Amber',
689
+ value: 36,
690
+ },
691
+ {
692
+ item: 'Red + Green + Blue',
693
+ value: 40,
694
+
695
+ },
696
+ {
697
+ item: 'Red + Green + Amber',
698
+ value: 44,
699
+ },
700
+ {
701
+ item: 'Red + Blue + Amber',
702
+ value: 48,
703
+ },
704
+ {
705
+ item: 'Green + Blue + Amber',
706
+ value: 52,
707
+ },
708
+ {
709
+ item: 'Red + Green + Blue + Amber',
710
+ value: 56,
711
+
712
+ },
713
+ {
714
+ item: 'Off',
715
+ value: 60,
716
+ },
717
+
718
+ ],
719
+ },
720
+ {
721
+ location: 11,
722
+ label: 'Background Dimmer',
723
+ range: {
724
+ start: 0,
725
+ end: 255
726
+ }
727
+ },
728
+ {
729
+ location: 12,
730
+ label: 'Background Color',
731
+ hint: 'Only active for Auto Programs 5 - 9',
732
+ values: [
733
+ {
734
+ item: 'Red',
735
+ value: 0,
736
+ },
737
+ {
738
+ item: 'Green',
739
+ value: 4,
740
+ },
741
+ {
742
+ item: 'Blue',
743
+ value: 8,
744
+ },
745
+ {
746
+ item: 'Amber',
747
+ value: 12,
748
+ },
749
+ {
750
+ item: 'Red + Green',
751
+ value: 16,
752
+ },
753
+ {
754
+ item: 'Red + Amber',
755
+ value: 24,
756
+ },
757
+ {
758
+ item: 'Green + Blue',
759
+ value: 28,
760
+ },
761
+ {
762
+ item: 'Green + Amber',
763
+ value: 32,
764
+ },
765
+ {
766
+ item: 'Blue + Amber',
767
+ value: 36,
768
+ },
769
+ {
770
+ item: 'Red + Green + Blue',
771
+ value: 40,
772
+
773
+ },
774
+ {
775
+ item: 'Red + Green + Amber',
776
+ value: 44,
777
+ },
778
+ {
779
+ item: 'Red + Blue + Amber',
780
+ value: 48,
781
+ },
782
+ {
783
+ item: 'Green + Blue + Amber',
784
+ value: 52,
785
+ },
786
+ {
787
+ item: 'Red + Green + Blue + Amber',
788
+ value: 56,
789
+
790
+ },
791
+ {
792
+ item: 'Off',
793
+ value: 60,
794
+ },
795
+
796
+ ],
797
+ },
798
+ {
799
+ location: 13,
800
+ label: 'Auto Speed',
801
+ range: {
802
+ start: 0,
803
+ end: 255
804
+ },
805
+ altLabel: 'Sound Sensitivity',
806
+ altRange: {
807
+ start: 10,
808
+ end: 255
809
+ },
810
+ altCondition: {
811
+ location: 8,
812
+ minValue: 242,
813
+ }
814
+ },
815
+ ],
816
+ name: 'FREEDOM Par H9',
817
+ },
818
+ 10210: {
819
+ profileId: 10210,
820
+ channels: 12,
567
821
  rgbRelation: {
568
822
  r: 2,
569
823
  g: 3,
@@ -577,82 +831,305 @@ const baseProfiles: Record<number, BaseProfile> = {
577
831
  fineDimmerLocation: 0,
578
832
  strobeLocation: 8,
579
833
  whiteMacros: null,
580
- name: 'FREEDOM PAR H9',
834
+ autoPrograms: null,
835
+ name: 'FREEDOM Par Hex-4',
581
836
  },
582
- 10110: {
583
- profileId: 10110,
584
- channels: 16,
837
+ 10220: {
838
+ profileId: 10220,
839
+ channels: 14,
585
840
  rgbRelation: {
586
841
  r: 2,
587
842
  g: 3,
588
843
  b: 4,
589
844
  },
590
- whiteLocation: 6,
845
+ whiteLocation: 0,
591
846
  amberLocation: 5,
592
847
  whiteMacrosLocation: 0,
593
- uvLocation: 7,
848
+ uvLocation: 0,
594
849
  dimmerLocation: 1,
595
850
  fineDimmerLocation: 0,
596
- strobeLocation: 8,
851
+ strobeLocation: 6,
597
852
  whiteMacros: null,
598
- name: 'FREEDOM Flex H9',
599
- },
600
- 10120: {
601
- profileId: 10120,
602
- channels: 12,
853
+ autoPrograms: null,
854
+ name: 'FREEDOM Par Q9',
855
+ }, // Done David
856
+ 10230: {
857
+ profileId: 10230,
858
+ channels: 10,
603
859
  rgbRelation: {
604
860
  r: 2,
605
861
  g: 3,
606
862
  b: 4,
607
863
  },
608
- whiteLocation: 6,
864
+ whiteLocation: 0,
609
865
  amberLocation: 5,
610
866
  whiteMacrosLocation: 0,
611
- uvLocation: 7,
867
+ uvLocation: 0,
612
868
  dimmerLocation: 1,
613
869
  fineDimmerLocation: 0,
614
- strobeLocation: 8,
870
+ strobeLocation: 7,
615
871
  whiteMacros: null,
616
- name: 'FREEDOM H1',
872
+ autoPrograms: null,
873
+ name: 'FREEDOM Par Quad-4',
617
874
  },
618
- 10140: {
619
- profileId: 10140,
620
- channels: 16,
875
+ 10240: {
876
+ profileId: 10240,
877
+ channels: 10,
621
878
  rgbRelation: {
622
879
  r: 2,
623
880
  g: 3,
624
881
  b: 4,
625
882
  },
626
- whiteLocation: 6,
883
+ whiteLocation: 0,
627
884
  amberLocation: 5,
628
885
  whiteMacrosLocation: 0,
629
- uvLocation: 7,
886
+ uvLocation: 0,
630
887
  dimmerLocation: 1,
631
888
  fineDimmerLocation: 0,
632
- strobeLocation: 8,
889
+ strobeLocation: 7,
633
890
  whiteMacros: null,
634
- name: 'FREEDOM Flex H9 IP',
891
+ autoPrograms: null,
892
+ name: 'FREEDOM Par Quad-4 IP',
635
893
  },
636
- 10150: {
637
- profileId: 10150,
638
- channels: 12,
894
+ 10250: {
895
+ profileId: 10250,
896
+ channels: 13,
639
897
  rgbRelation: {
640
898
  r: 2,
641
899
  g: 3,
642
900
  b: 4,
643
901
  },
644
- whiteLocation: 6,
645
- amberLocation: 5,
902
+ whiteLocation: 0,
903
+ amberLocation: 0,
646
904
  whiteMacrosLocation: 0,
647
- uvLocation: 7,
905
+ uvLocation: 0,
648
906
  dimmerLocation: 1,
649
907
  fineDimmerLocation: 0,
650
- strobeLocation: 8,
908
+ strobeLocation: 5,
651
909
  whiteMacros: null,
652
- name: 'FREEDOM Flex H4 IP',
910
+ autoPrograms: [
911
+ {
912
+ location: 7,
913
+ label: 'Auto Programs',
914
+ values: [
915
+ {
916
+ item: 'Off',
917
+ value: 0,
918
+ },
919
+ {
920
+ item: 'Auto Program 1',
921
+ value: 22,
922
+ },
923
+ {
924
+ item: 'Auto Program 2',
925
+ value: 44,
926
+ },
927
+ {
928
+ item: 'Auto Program 3',
929
+ value: 66,
930
+ },
931
+ {
932
+ item: 'Auto Program 4',
933
+ value: 88,
934
+ },
935
+ {
936
+ item: 'Auto Program 5',
937
+ value: 110,
938
+ },
939
+ {
940
+ item: 'Auto Program 6',
941
+ value: 132,
942
+ },
943
+ {
944
+ item: 'Auto Program 7',
945
+ value: 154,
946
+ },
947
+ {
948
+ item: 'Auto Program 8',
949
+ value: 176,
950
+ },
951
+ {
952
+ item: 'Auto Program 9',
953
+ value: 198,
954
+
955
+ },
956
+ {
957
+ item: 'Auto Program 1 - 4',
958
+ value: 220,
959
+ },
960
+ {
961
+ item: 'Sound Show',
962
+ value: 242,
963
+ }
964
+ ]
965
+ },
966
+ {
967
+ location: 8,
968
+ label: 'Foreground Dimmer',
969
+ range: {
970
+ start: 0,
971
+ end: 255
972
+ }
973
+ },
974
+ {
975
+ location: 10,
976
+ label: 'Foreground Color',
977
+ hint: 'Only active for Auto Programs 5 - 9',
978
+ values: [
979
+ {
980
+ item: 'Red',
981
+ value: 0,
982
+ },
983
+ {
984
+ item: 'Green',
985
+ value: 6,
986
+ },
987
+ {
988
+ item: 'Blue',
989
+ value: 11,
990
+ },
991
+ {
992
+ item: 'Red + Green',
993
+ value: 16,
994
+ },
995
+ {
996
+ item: 'Red + Blue',
997
+ value: 21,
998
+ },
999
+ {
1000
+ item: 'Green + Blue',
1001
+ value: 26,
1002
+ },
1003
+ {
1004
+ item: 'Red + Green + Blue',
1005
+ value: 31,
1006
+ },
1007
+ {
1008
+ item: 'Off',
1009
+ value: 36,
1010
+ },
1011
+
1012
+ ],
1013
+ },
1014
+ {
1015
+ location: 10,
1016
+ label: 'Background Dimmer',
1017
+ range: {
1018
+ start: 0,
1019
+ end: 255
1020
+ }
1021
+ },
1022
+ {
1023
+ location: 12,
1024
+ label: 'Background Color',
1025
+ hint: 'Only active for Auto Programs 5 - 9',
1026
+ values: [
1027
+ {
1028
+ item: 'Red',
1029
+ value: 0,
1030
+ },
1031
+ {
1032
+ item: 'Green',
1033
+ value: 6,
1034
+ },
1035
+ {
1036
+ item: 'Blue',
1037
+ value: 11,
1038
+ },
1039
+ {
1040
+ item: 'Red + Green',
1041
+ value: 16,
1042
+ },
1043
+ {
1044
+ item: 'Red + Blue',
1045
+ value: 21,
1046
+ },
1047
+ {
1048
+ item: 'Green + Blue',
1049
+ value: 26,
1050
+ },
1051
+ {
1052
+ item: 'Red + Green + Blue',
1053
+ value: 31,
1054
+ },
1055
+ {
1056
+ item: 'Off',
1057
+ value: 36,
1058
+ },
1059
+
1060
+ ],
1061
+ },
1062
+ {
1063
+ location: 13,
1064
+ label: 'Auto Speed',
1065
+ range: {
1066
+ start: 0,
1067
+ end: 255
1068
+ },
1069
+ altLabel: 'Sound Sensitivity',
1070
+ altRange: {
1071
+ start: 10,
1072
+ end: 255
1073
+ },
1074
+ altCondition: {
1075
+ location: 7,
1076
+ minValue: 242,
1077
+ }
1078
+ },
1079
+ ],
1080
+ name: 'FREEDOM Par T6',
1081
+ }, // Done Andy
1082
+ 10260: {
1083
+ profileId: 10260,
1084
+ channels: 9,
1085
+ rgbRelation: {
1086
+ r: 2,
1087
+ g: 3,
1088
+ b: 4,
1089
+ },
1090
+ whiteLocation: 0,
1091
+ amberLocation: 0,
1092
+ whiteMacrosLocation: 0,
1093
+ uvLocation: 0,
1094
+ dimmerLocation: 1,
1095
+ fineDimmerLocation: 0,
1096
+ strobeLocation: 6,
1097
+ whiteMacros: null,
1098
+ autoPrograms: null,
1099
+ name: 'FREEDOM Par Tri-6',
1100
+ },
1101
+
1102
+ 10300: {
1103
+ profileId: 10300,
1104
+ channels: 10,
1105
+ rgbRelation: {
1106
+ r: 2,
1107
+ g: 3,
1108
+ b: 4,
1109
+ },
1110
+ whiteLocation: 5,
1111
+ amberLocation: 0,
1112
+ whiteMacrosLocation: 6,
1113
+ uvLocation: 0,
1114
+ dimmerLocation: 1,
1115
+ fineDimmerLocation: 0,
1116
+ strobeLocation: 7,
1117
+ whiteMacros: {
1118
+ '2800': 10,
1119
+ '3200': 57,
1120
+ '3500': 82,
1121
+ '4000': 107,
1122
+ '4500': 132,
1123
+ '5000': 157,
1124
+ '5600': 182,
1125
+ '6000': 207,
1126
+ '6500': 232,
1127
+ },
1128
+ autoPrograms: null,
1129
+ name: 'FREEDOM Cyc',
653
1130
  },
654
- 10160: {
655
- profileId: 10160,
1131
+ 10310: {
1132
+ profileId: 10310,
656
1133
  channels: 12,
657
1134
  rgbRelation: {
658
1135
  r: 2,
@@ -667,12 +1144,12 @@ const baseProfiles: Record<number, BaseProfile> = {
667
1144
  fineDimmerLocation: 0,
668
1145
  strobeLocation: 8,
669
1146
  whiteMacros: null,
670
- name: 'FREEDOM PAR HEX-4',
1147
+ autoPrograms: null,
1148
+ name: 'FREEDOM H1',
671
1149
  },
672
-
673
- 10200: {
674
- profileId: 10200,
675
- channels: 15,
1150
+ 10320: {
1151
+ profileId: 10320,
1152
+ channels: 10,
676
1153
  rgbRelation: {
677
1154
  r: 2,
678
1155
  g: 3,
@@ -684,12 +1161,13 @@ const baseProfiles: Record<number, BaseProfile> = {
684
1161
  uvLocation: 0,
685
1162
  dimmerLocation: 1,
686
1163
  fineDimmerLocation: 0,
687
- strobeLocation: 7,
1164
+ strobeLocation: 6,
688
1165
  whiteMacros: null,
689
- name: 'FREEDOM FLEX STICK',
1166
+ autoPrograms: null,
1167
+ name: 'FREEDOM Q1N',
690
1168
  },
691
- 10210: {
692
- profileId: 10210,
1169
+ 10330: {
1170
+ profileId: 10330,
693
1171
  channels: 8,
694
1172
  rgbRelation: {
695
1173
  r: 2,
@@ -704,41 +1182,91 @@ const baseProfiles: Record<number, BaseProfile> = {
704
1182
  fineDimmerLocation: 0,
705
1183
  strobeLocation: 6,
706
1184
  whiteMacros: null,
707
- name: 'FREEDOM STICK',
1185
+ autoPrograms: null,
1186
+ name: 'FREEDOM Stick',
708
1187
  },
709
-
710
- 10300: {
711
- profileId: 10300,
1188
+ 10340: {
1189
+ profileId: 10340,
712
1190
  channels: 10,
713
1191
  rgbRelation: {
714
1192
  r: 2,
715
1193
  g: 3,
716
1194
  b: 4,
717
1195
  },
718
- whiteLocation: 5,
719
- amberLocation: 0,
720
- whiteMacrosLocation: 6,
1196
+ whiteLocation: 0,
1197
+ amberLocation: 5,
1198
+ whiteMacrosLocation: 0,
721
1199
  uvLocation: 0,
722
1200
  dimmerLocation: 1,
723
1201
  fineDimmerLocation: 0,
724
1202
  strobeLocation: 7,
725
- whiteMacros: {
726
- '2800': 10,
727
- '3200': 57,
728
- '3500': 82,
729
- '4000': 107,
730
- '4500': 132,
731
- '5000': 157,
732
- '5600': 182,
733
- '6000': 207,
734
- '6500': 232,
1203
+ whiteMacros: null,
1204
+ autoPrograms: null,
1205
+ name: 'FREEDOM Wedge Quad',
1206
+ },
1207
+ 11010: {
1208
+ profileId: 11010,
1209
+ channels: 3,
1210
+ rgbRelation: {
1211
+ r: 1,
1212
+ g: 2,
1213
+ b: 3,
735
1214
  },
736
- name: 'FREEDOM Cyc',
1215
+ whiteLocation: 0,
1216
+ amberLocation: 0,
1217
+ whiteMacrosLocation: 0,
1218
+ uvLocation: 0,
1219
+ dimmerLocation: 0,
1220
+ fineDimmerLocation: 0,
1221
+ strobeLocation: 0,
1222
+ whiteMacros: null,
1223
+ autoPrograms: null,
1224
+ name: 'Generic RGB',
737
1225
  },
738
1226
 
739
- 10400: {
740
- profileId: 10150,
741
- channels: 13,
1227
+ 11015: {
1228
+ profileId: 11015,
1229
+ channels: 4,
1230
+ rgbRelation: {
1231
+ r: 1,
1232
+ g: 2,
1233
+ b: 3,
1234
+ },
1235
+ whiteLocation: 0,
1236
+ amberLocation: 4,
1237
+ whiteMacrosLocation: 0,
1238
+ uvLocation: 0,
1239
+ dimmerLocation: 0,
1240
+ fineDimmerLocation: 0,
1241
+ strobeLocation: 0,
1242
+ whiteMacros: null,
1243
+ autoPrograms: null,
1244
+ name: 'Generic RGBA',
1245
+ },
1246
+
1247
+ 11020: {
1248
+ profileId: 11020,
1249
+ channels: 4,
1250
+ rgbRelation: {
1251
+ r: 1,
1252
+ g: 2,
1253
+ b: 3,
1254
+ },
1255
+ whiteLocation: 4,
1256
+ amberLocation: 0,
1257
+ whiteMacrosLocation: 0,
1258
+ uvLocation: 0,
1259
+ dimmerLocation: 0,
1260
+ fineDimmerLocation: 0,
1261
+ strobeLocation: 0,
1262
+ whiteMacros: null,
1263
+ autoPrograms: null,
1264
+ name: 'Generic RGBW',
1265
+ },
1266
+
1267
+ 11030: {
1268
+ profileId: 11030,
1269
+ channels: 4,
742
1270
  rgbRelation: {
743
1271
  r: 2,
744
1272
  g: 3,
@@ -750,27 +1278,50 @@ const baseProfiles: Record<number, BaseProfile> = {
750
1278
  uvLocation: 0,
751
1279
  dimmerLocation: 1,
752
1280
  fineDimmerLocation: 0,
753
- strobeLocation: 5,
1281
+ strobeLocation: 0,
754
1282
  whiteMacros: null,
755
- name: 'FREEDOM PAR T6',
1283
+ autoPrograms: null,
1284
+ name: 'Generic DRGB',
756
1285
  },
757
- 10410: {
758
- profileId: 10410,
759
- channels: 9,
1286
+
1287
+ 11050: {
1288
+ profileId: 11050,
1289
+ channels: 5,
760
1290
  rgbRelation: {
761
1291
  r: 2,
762
1292
  g: 3,
763
1293
  b: 4,
764
1294
  },
765
1295
  whiteLocation: 0,
766
- amberLocation: 0,
1296
+ amberLocation: 5,
1297
+ whiteMacrosLocation: 0,
1298
+ uvLocation: 0,
1299
+ dimmerLocation: 1,
1300
+ fineDimmerLocation: 0,
1301
+ strobeLocation: 0,
1302
+ whiteMacros: null,
1303
+ autoPrograms: null,
1304
+ name: 'Generic DRGBA',
1305
+ },
1306
+
1307
+ 11060: {
1308
+ profileId: 11060,
1309
+ channels: 6,
1310
+ rgbRelation: {
1311
+ r: 2,
1312
+ g: 3,
1313
+ b: 4,
1314
+ },
1315
+ whiteLocation: 0,
1316
+ amberLocation: 5,
767
1317
  whiteMacrosLocation: 0,
768
1318
  uvLocation: 0,
769
1319
  dimmerLocation: 1,
770
1320
  fineDimmerLocation: 0,
771
1321
  strobeLocation: 6,
772
1322
  whiteMacros: null,
773
- name: 'FREEDOM PAR TRI-6',
1323
+ autoPrograms: null,
1324
+ name: 'Generic DRGBAS',
774
1325
  },
775
1326
 
776
1327
  };