@chauvet/connect-base-profiles 1.4.0 → 1.6.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/dist/baseProfiles.js +20 -30
- package/package.json +1 -1
- package/src/baseProfiles.ts +18 -18
package/dist/baseProfiles.js
CHANGED
|
@@ -9,22 +9,12 @@ const baseProfiles = {
|
|
|
9
9
|
},
|
|
10
10
|
whiteLocation: 0,
|
|
11
11
|
amberLocation: 5,
|
|
12
|
-
whiteMacrosLocation:
|
|
12
|
+
whiteMacrosLocation: 0,
|
|
13
13
|
uvLocation: 0,
|
|
14
14
|
dimmerLocation: 1,
|
|
15
15
|
fineDimmerLocation: 0,
|
|
16
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
|
-
},
|
|
17
|
+
whiteMacros: {},
|
|
28
18
|
name: 'WELL FIT',
|
|
29
19
|
},
|
|
30
20
|
60: {
|
|
@@ -120,8 +110,8 @@ const baseProfiles = {
|
|
|
120
110
|
b: 5,
|
|
121
111
|
},
|
|
122
112
|
whiteLocation: 6,
|
|
123
|
-
amberLocation:
|
|
124
|
-
whiteMacrosLocation:
|
|
113
|
+
amberLocation: 0,
|
|
114
|
+
whiteMacrosLocation: 9,
|
|
125
115
|
uvLocation: 0,
|
|
126
116
|
dimmerLocation: 1,
|
|
127
117
|
fineDimmerLocation: 0,
|
|
@@ -141,19 +131,19 @@ const baseProfiles = {
|
|
|
141
131
|
},
|
|
142
132
|
260: {
|
|
143
133
|
profileId: 260,
|
|
144
|
-
channels:
|
|
134
|
+
channels: 12,
|
|
145
135
|
rgbRelation: {
|
|
146
|
-
r:
|
|
147
|
-
g:
|
|
148
|
-
b:
|
|
136
|
+
r: 4,
|
|
137
|
+
g: 5,
|
|
138
|
+
b: 6,
|
|
149
139
|
},
|
|
150
|
-
whiteLocation:
|
|
151
|
-
amberLocation:
|
|
152
|
-
whiteMacrosLocation:
|
|
140
|
+
whiteLocation: 7,
|
|
141
|
+
amberLocation: 0,
|
|
142
|
+
whiteMacrosLocation: 9,
|
|
153
143
|
uvLocation: 0,
|
|
154
144
|
dimmerLocation: 1,
|
|
155
|
-
fineDimmerLocation:
|
|
156
|
-
strobeLocation:
|
|
145
|
+
fineDimmerLocation: 2,
|
|
146
|
+
strobeLocation: 3,
|
|
157
147
|
whiteMacros: {
|
|
158
148
|
'2800': 6,
|
|
159
149
|
'3200': 26,
|
|
@@ -205,19 +195,19 @@ const baseProfiles = {
|
|
|
205
195
|
},
|
|
206
196
|
450: {
|
|
207
197
|
profileId: 450,
|
|
208
|
-
channels:
|
|
198
|
+
channels: 15,
|
|
209
199
|
rgbRelation: {
|
|
210
|
-
r:
|
|
211
|
-
g:
|
|
212
|
-
b:
|
|
200
|
+
r: 4,
|
|
201
|
+
g: 5,
|
|
202
|
+
b: 6,
|
|
213
203
|
},
|
|
214
|
-
whiteLocation:
|
|
204
|
+
whiteLocation: 7,
|
|
215
205
|
amberLocation: 0,
|
|
216
|
-
whiteMacrosLocation:
|
|
206
|
+
whiteMacrosLocation: 8,
|
|
217
207
|
uvLocation: 0,
|
|
218
208
|
dimmerLocation: 1,
|
|
219
209
|
fineDimmerLocation: 0,
|
|
220
|
-
strobeLocation:
|
|
210
|
+
strobeLocation: 3,
|
|
221
211
|
whiteMacros: {
|
|
222
212
|
'2800': 6,
|
|
223
213
|
'3200': 26,
|
package/package.json
CHANGED
package/src/baseProfiles.ts
CHANGED
|
@@ -130,8 +130,8 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
130
130
|
b: 5,
|
|
131
131
|
},
|
|
132
132
|
whiteLocation: 6,
|
|
133
|
-
amberLocation:
|
|
134
|
-
whiteMacrosLocation:
|
|
133
|
+
amberLocation: 0,
|
|
134
|
+
whiteMacrosLocation: 9,
|
|
135
135
|
uvLocation: 0,
|
|
136
136
|
dimmerLocation: 1,
|
|
137
137
|
fineDimmerLocation: 0,
|
|
@@ -151,19 +151,19 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
151
151
|
},
|
|
152
152
|
260: {
|
|
153
153
|
profileId: 260,
|
|
154
|
-
channels:
|
|
154
|
+
channels: 12,
|
|
155
155
|
rgbRelation: {
|
|
156
|
-
r:
|
|
157
|
-
g:
|
|
158
|
-
b:
|
|
156
|
+
r: 4,
|
|
157
|
+
g: 5,
|
|
158
|
+
b: 6,
|
|
159
159
|
},
|
|
160
|
-
whiteLocation:
|
|
161
|
-
amberLocation:
|
|
162
|
-
whiteMacrosLocation:
|
|
160
|
+
whiteLocation: 7,
|
|
161
|
+
amberLocation: 0,
|
|
162
|
+
whiteMacrosLocation: 9,
|
|
163
163
|
uvLocation: 0,
|
|
164
164
|
dimmerLocation: 1,
|
|
165
|
-
fineDimmerLocation:
|
|
166
|
-
strobeLocation:
|
|
165
|
+
fineDimmerLocation: 2,
|
|
166
|
+
strobeLocation: 3,
|
|
167
167
|
whiteMacros: {
|
|
168
168
|
'2800': 6,
|
|
169
169
|
'3200': 26,
|
|
@@ -215,19 +215,19 @@ const baseProfiles: Record<number, BaseProfile> = {
|
|
|
215
215
|
},
|
|
216
216
|
450: {
|
|
217
217
|
profileId: 450,
|
|
218
|
-
channels:
|
|
218
|
+
channels: 15,
|
|
219
219
|
rgbRelation: {
|
|
220
|
-
r:
|
|
221
|
-
g:
|
|
222
|
-
b:
|
|
220
|
+
r: 4,
|
|
221
|
+
g: 5,
|
|
222
|
+
b: 6,
|
|
223
223
|
},
|
|
224
|
-
whiteLocation:
|
|
224
|
+
whiteLocation: 7,
|
|
225
225
|
amberLocation: 0,
|
|
226
|
-
whiteMacrosLocation:
|
|
226
|
+
whiteMacrosLocation: 8,
|
|
227
227
|
uvLocation: 0,
|
|
228
228
|
dimmerLocation: 1,
|
|
229
229
|
fineDimmerLocation: 0,
|
|
230
|
-
strobeLocation:
|
|
230
|
+
strobeLocation: 3,
|
|
231
231
|
whiteMacros: {
|
|
232
232
|
'2800': 6,
|
|
233
233
|
'3200': 26,
|