Skip to content

Commit 9b12d2b

Browse files
committed
Add fixture eurolite/led-tmh-b60-moving-head-beam via editor
1 parent 00f93a4 commit 9b12d2b

File tree

1 file changed

+194
-0
lines changed

1 file changed

+194
-0
lines changed
Lines changed: 194 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
3+
"name": "LED TMH-B60 Moving Head Beam",
4+
"shortName": "TMH-B60",
5+
"categories": ["Moving Head"],
6+
"meta": {
7+
"authors": ["Emmanuel Denoyer"],
8+
"createDate": "2026-02-18",
9+
"lastModifyDate": "2026-02-18"
10+
},
11+
"links": {
12+
"manual": [
13+
"https://www.steinigke.de/download/51786082-Instructions-141993-1.0000-eurolite-led-tmh-b60-moving-head-beam-de_en.pdf"
14+
],
15+
"productPage": [
16+
"https://www.steinigke.de/fr/mpn51786082-eurolite-led-tmh-b60-moving-head-beam.html"
17+
]
18+
},
19+
"physical": {
20+
"dimensions": [175, 250, 150],
21+
"weight": 3.25,
22+
"power": 60,
23+
"DMXconnector": "3-pin",
24+
"bulb": {
25+
"type": "LED"
26+
}
27+
},
28+
"availableChannels": {
29+
"Pan": {
30+
"capability": {
31+
"type": "Pan",
32+
"angle": "540deg"
33+
}
34+
},
35+
"Tilt": {
36+
"capability": {
37+
"type": "Tilt",
38+
"angle": "180deg"
39+
}
40+
},
41+
"Pan/Tilt Speed": {
42+
"capability": {
43+
"type": "Speed",
44+
"speedStart": "fast",
45+
"speedEnd": "stop"
46+
}
47+
},
48+
"Dimmer": {
49+
"defaultValue": "100%",
50+
"highlightValue": "100%",
51+
"capability": {
52+
"type": "Intensity"
53+
}
54+
},
55+
"Strobe": {
56+
"capabilities": [
57+
{
58+
"dmxRange": [0, 3],
59+
"type": "NoFunction"
60+
},
61+
{
62+
"dmxRange": [4, 95],
63+
"type": "ShutterStrobe",
64+
"shutterEffect": "Strobe",
65+
"speedStart": "0Hz",
66+
"speedEnd": "10Hz"
67+
},
68+
{
69+
"dmxRange": [96, 176],
70+
"type": "ShutterStrobe",
71+
"shutterEffect": "Strobe",
72+
"speedStart": "0Hz",
73+
"speedEnd": "10Hz",
74+
"randomTiming": true,
75+
"comment": "Random Strobe"
76+
},
77+
{
78+
"dmxRange": [177, 255],
79+
"type": "ShutterStrobe",
80+
"shutterEffect": "Pulse",
81+
"speedStart": "0Hz",
82+
"speedEnd": "10Hz",
83+
"comment": "Pulse"
84+
}
85+
]
86+
},
87+
"Red": {
88+
"defaultValue": "0%",
89+
"capability": {
90+
"type": "ColorIntensity",
91+
"color": "Red"
92+
}
93+
},
94+
"Green": {
95+
"defaultValue": "0%",
96+
"capability": {
97+
"type": "ColorIntensity",
98+
"color": "Green"
99+
}
100+
},
101+
"Blue": {
102+
"defaultValue": "0%",
103+
"capability": {
104+
"type": "ColorIntensity",
105+
"color": "Blue"
106+
}
107+
},
108+
"White": {
109+
"defaultValue": "0%",
110+
"highlightValue": "100%",
111+
"capability": {
112+
"type": "ColorIntensity",
113+
"color": "White"
114+
}
115+
},
116+
"Internal Programs": {
117+
"defaultValue": "0%",
118+
"highlightValue": 0,
119+
"capabilities": [
120+
{
121+
"dmxRange": [0, 15],
122+
"type": "NoFunction"
123+
},
124+
{
125+
"dmxRange": [16, 128],
126+
"type": "Effect",
127+
"effectName": "Automatic"
128+
},
129+
{
130+
"dmxRange": [129, 255],
131+
"type": "Effect",
132+
"effectName": "Automatic",
133+
"soundControlled": true,
134+
"comment": "Sound controlled"
135+
}
136+
]
137+
},
138+
"Program Speed": {
139+
"capability": {
140+
"type": "EffectSpeed",
141+
"speedStart": "fast",
142+
"speedEnd": "slow"
143+
}
144+
},
145+
"Motion macros": {
146+
"defaultValue": 0,
147+
"highlightValue": 0,
148+
"capabilities": [
149+
{
150+
"dmxRange": [0, 20],
151+
"type": "NoFunction"
152+
},
153+
{
154+
"dmxRange": [21, 100],
155+
"type": "PanContinuous"
156+
},
157+
{
158+
"dmxRange": [101, 200],
159+
"type": "TiltContinuous"
160+
},
161+
{
162+
"dmxRange": [201, 250],
163+
"type": "PanTiltSpeed",
164+
"speedStart": "fast",
165+
"speedEnd": "slow"
166+
},
167+
{
168+
"dmxRange": [251, 255],
169+
"type": "Maintenance"
170+
}
171+
]
172+
}
173+
},
174+
"modes": [
175+
{
176+
"name": "12Channels",
177+
"shortName": "12CH",
178+
"channels": [
179+
"Pan",
180+
"Tilt",
181+
"Pan/Tilt Speed",
182+
"Dimmer",
183+
"Strobe",
184+
"Red",
185+
"Green",
186+
"Blue",
187+
"White",
188+
"Internal Programs",
189+
"Program Speed",
190+
"Motion macros"
191+
]
192+
}
193+
]
194+
}

0 commit comments

Comments
 (0)