Skip to content

Commit b004144

Browse files
FloEdelmannfxedel
andauthored
Add fixture 'ignition/led-accu-par' (#899)
* Update manufacturers.json via editor * Add fixture 'ignition/led-accu-par' via editor * Fixes and additions Co-authored-by: Felix Edelmann <[email protected]>
1 parent ef2018d commit b004144

2 files changed

Lines changed: 232 additions & 0 deletions

File tree

Lines changed: 228 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,228 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
3+
"name": "LED Accu PAR",
4+
"categories": ["Color Changer"],
5+
"meta": {
6+
"authors": ["Karl Humbug"],
7+
"createDate": "2019-05-15",
8+
"lastModifyDate": "2019-05-15"
9+
},
10+
"comment": "Supports Wireless DMX (WDMX).",
11+
"links": {
12+
"manual": [
13+
"https://bkbraun.com/out/media/87401_BA_E_Ignition_Accu_Par_RGB_W.pdf"
14+
],
15+
"productPage": [
16+
"https://bkbraun.com/en/LIGHT/Light-technics/Spotlights/Battery/LED-Accu-PAR-64-Floor-RGB-W-polish.html"
17+
]
18+
},
19+
"physical": {
20+
"dimensions": [285, 377.5, 274],
21+
"weight": 7.1,
22+
"power": 65,
23+
"DMXconnector": "3-pin",
24+
"bulb": {
25+
"type": "10× 3W RGB LEDs + 5× 3W Cool White LEDs"
26+
},
27+
"lens": {
28+
"degreesMinMax": [25, 40]
29+
}
30+
},
31+
"availableChannels": {
32+
"Color Presets": {
33+
"defaultValue": 0,
34+
"capabilities": [
35+
{
36+
"dmxRange": [0, 0],
37+
"type": "NoFunction"
38+
},
39+
{
40+
"dmxRange": [1, 255],
41+
"type": "ColorPreset",
42+
"comment": "36 color presets",
43+
"helpWanted": "Which color can be selected at which DMX value?"
44+
}
45+
]
46+
},
47+
"Red": {
48+
"capability": {
49+
"type": "ColorIntensity",
50+
"color": "Red"
51+
}
52+
},
53+
"Green": {
54+
"capability": {
55+
"type": "ColorIntensity",
56+
"color": "Green"
57+
}
58+
},
59+
"Blue": {
60+
"capability": {
61+
"type": "ColorIntensity",
62+
"color": "Blue"
63+
}
64+
},
65+
"White": {
66+
"capability": {
67+
"type": "ColorIntensity",
68+
"color": "Cold White"
69+
}
70+
},
71+
"Strobe": {
72+
"capabilities": [
73+
{
74+
"dmxRange": [0, 15],
75+
"type": "NoFunction"
76+
},
77+
{
78+
"dmxRange": [16, 255],
79+
"type": "ShutterStrobe",
80+
"shutterEffect": "Strobe",
81+
"speedStart": "1Hz",
82+
"speedEnd": "12Hz"
83+
}
84+
]
85+
},
86+
"Dimmer": {
87+
"capability": {
88+
"type": "Intensity"
89+
}
90+
},
91+
"Effects": {
92+
"capabilities": [
93+
{
94+
"dmxRange": [0, 31],
95+
"type": "NoFunction"
96+
},
97+
{
98+
"dmxRange": [32, 63],
99+
"type": "ShutterStrobe",
100+
"shutterEffect": "RampUp"
101+
},
102+
{
103+
"dmxRange": [64, 95],
104+
"type": "ShutterStrobe",
105+
"shutterEffect": "RampDown"
106+
},
107+
{
108+
"dmxRange": [96, 127],
109+
"type": "ShutterStrobe",
110+
"shutterEffect": "RampUpDown"
111+
},
112+
{
113+
"dmxRange": [128, 159],
114+
"type": "Effect",
115+
"effectPreset": "ColorJump"
116+
},
117+
{
118+
"dmxRange": [160, 191],
119+
"type": "Effect",
120+
"effectPreset": "ColorJump",
121+
"comment": "3-color, random"
122+
},
123+
{
124+
"dmxRange": [192, 223],
125+
"type": "Effect",
126+
"effectPreset": "ColorJump",
127+
"comment": "7-color, random"
128+
},
129+
{
130+
"dmxRange": [224, 255],
131+
"type": "Effect",
132+
"effectName": "Sound to light",
133+
"soundControlled": true
134+
}
135+
]
136+
},
137+
"Effect Speed": {
138+
"capability": {
139+
"type": "EffectSpeed",
140+
"speedStart": "slow",
141+
"speedEnd": "fast"
142+
}
143+
},
144+
"Dimmer 2": {
145+
"name": "Dimmer",
146+
"capability": {
147+
"type": "Intensity",
148+
"helpWanted": "What's the difference to the other Dimmer channel? Is this 'Effect Intensity'?"
149+
}
150+
}
151+
},
152+
"modes": [
153+
{
154+
"name": "1 / 1-channel",
155+
"shortName": "1-1ch",
156+
"channels": [
157+
"Color Presets"
158+
]
159+
},
160+
{
161+
"name": "2 / 2-channel",
162+
"shortName": "2-2ch",
163+
"channels": [
164+
"Color Presets",
165+
"Dimmer"
166+
]
167+
},
168+
{
169+
"name": "3 / 3-channel",
170+
"shortName": "3-3ch",
171+
"channels": [
172+
"Red",
173+
"Green",
174+
"Blue"
175+
]
176+
},
177+
{
178+
"name": "4 / 4-channel",
179+
"shortName": "4-4ch",
180+
"channels": [
181+
"Red",
182+
"Green",
183+
"Blue",
184+
"White"
185+
]
186+
},
187+
{
188+
"name": "5 / 6-channel",
189+
"shortName": "5-6ch",
190+
"channels": [
191+
"Red",
192+
"Green",
193+
"Blue",
194+
"White",
195+
"Strobe",
196+
"Dimmer"
197+
]
198+
},
199+
{
200+
"name": "6 / 8-channel 1",
201+
"shortName": "6-8ch1",
202+
"channels": [
203+
"Red",
204+
"Green",
205+
"Blue",
206+
"White",
207+
"Strobe",
208+
"Dimmer",
209+
"Effects",
210+
"Effect Speed"
211+
]
212+
},
213+
{
214+
"name": "7 / 8-channel 2",
215+
"shortName": "7-8ch2",
216+
"channels": [
217+
"Red",
218+
"Green",
219+
"Blue",
220+
"White",
221+
"Strobe",
222+
"Dimmer",
223+
"Effects",
224+
"Dimmer 2"
225+
]
226+
}
227+
]
228+
}

fixtures/manufacturers.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,10 @@
162162
"name": "Ibiza light",
163163
"website": "https://www.ibiza-light.com/"
164164
},
165+
"ignition": {
166+
"name": "Ignition",
167+
"comment": "Seems to be discontinued."
168+
},
165169
"infinity": {
166170
"name": "Infinity",
167171
"website": "https://www.infinity-intelligent-light.com/"

0 commit comments

Comments
 (0)