2 * Routines for Art-Net packet disassembly
4 * Copyright (c) 2003, 2011 by Erwin Rol <erwin@erwinrol.com>
5 * Copyright (c) 2014 by Claudius Zingerli <czingerl@gmail.com>
6 * Copyright (c) 2022-2024 by Martin Mayer <martin.mayer@m2-it-solutions.de>
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1999 Gerald Combs
12 * SPDX-License-Identifier: GPL-2.0-or-later
17 #include <epan/packet.h>
18 #include <epan/expert.h>
20 #include <epan/unit_strings.h>
21 #include "packet-rdm.h"
26 * Protocol Spec: http://www.artisticlicence.com/WebSiteMaster/User%20Guides/art-net.pdf
27 * OEM Codes: https://artisticlicence.com/WebSiteMaster/Software/Art-Net/Art-NetOemCodes.h
28 * or rather https://art-net.org.uk/join-the-club/oem-code-listing/
29 * but you first have to select 'All' before downloading the CSV to process...
30 * ESTA Codes: https://tsp.esta.org/tsp/working_groups/CP/mfctrIDs.php
33 void proto_register_artnet(void);
34 void proto_reg_handoff_artnet(void);
36 static dissector_handle_t artnet_handle
;
38 /* Define udp_port for ArtNET */
40 #define UDP_PORT_ARTNET 0x1936
42 #define ARTNET_HEADER_LENGTH 10
43 #define ARTNET_POLL_LENGTH 4
44 #define ARTNET_POLL_REPLY_LENGTH 197
45 #define ARTNET_POLL_REPLY_PORT_INFO_LENGTH 22
46 #define ARTNET_POLL_REPLY_PORT_TYPES_LENGTH 4
47 #define ARTNET_POLL_REPLY_GOOD_INPUT_LENGTH 4
48 #define ARTNET_POLL_REPLY_GOOD_OUTPUT_LENGTH 4
49 #define ARTNET_POLL_REPLY_GOOD_OUTPUT_B_LENGTH 4
50 #define ARTNET_POLL_REPLY_SWIN_LENGTH 4
51 #define ARTNET_POLL_REPLY_SWOUT_LENGTH 4
52 #define ARTNET_ADDRESS_LENGTH 95
53 #define ARTNET_ADDRESS_SWIN_LENGTH 4
54 #define ARTNET_ADDRESS_SWOUT_LENGTH 4
55 #define ARTNET_OUTPUT_LENGTH 1
56 #define ARTNET_INPUT_LENGTH 10
57 #define ARTNET_INPUT_INPUT_LENGTH 4
58 #define ARTNET_FIRMWARE_MASTER_LENGTH 1035
59 #define ARTNET_FIRMWARE_REPLY_LENGTH 27
60 #define ARTNET_VIDEO_SETUP_LENGTH 74
61 #define ARTNET_VIDEO_PALETTE_LENGTH 55
62 #define ARTNET_VIDEO_DATA_LENGTH 8
64 #define ARTNET_OP_POLL 0x2000
65 #define ARTNET_OP_POLL_REPLY 0x2100
66 #define ARTNET_OP_POLL_FP_REPLY 0x2200
67 #define ARTNET_OP_DIAG_DATA 0x2300
68 #define ARTNET_OP_COMMAND 0x2400
70 #define ARTNET_OP_DATA_REQUEST 0x2700
71 #define ARTNET_OP_DATA_REPLY 0x2800
73 #define ARTNET_OP_OUTPUT 0x5000
74 #define ARTNET_OP_NZS 0x5100
75 #define ARTNET_OP_SYNC 0x5200
77 #define ARTNET_OP_ADDRESS 0x6000
79 #define ARTNET_OP_INPUT 0x7000
81 #define ARTNET_OP_TOD_REQUEST 0x8000
82 #define ARTNET_OP_TOD_DATA 0x8100
83 #define ARTNET_OP_TOD_CONTROL 0x8200
84 #define ARTNET_OP_RDM 0x8300
85 #define ARTNET_OP_RDM_SUB 0x8400
87 #define ARTNET_OP_MEDIA 0x9000
88 #define ARTNET_OP_MEDIA_PATCH 0x9100
89 #define ARTNET_OP_MEDIA_CONTROL 0x9200
90 #define ARTNET_OP_MEDIA_CONTRL_REPLY 0x9300
92 #define ARTNET_OP_TIME_CODE 0x9700
93 #define ARTNET_OP_TIME_SYNC 0x9800
94 #define ARTNET_OP_TRIGGER 0x9900
96 #define ARTNET_OP_DIRECTORY 0x9a00
97 #define ARTNET_OP_DIRECTORY_REPLY 0x9b00
99 #define ARTNET_OP_VIDEO_SETUP 0xa010
100 #define ARTNET_OP_VIDEO_PALETTE 0xa020
101 #define ARTNET_OP_VIDEO_DATA 0xa040
103 #define ARTNET_OP_MAC_MASTER 0xf000
104 #define ARTNET_OP_MAC_SLAVE 0xf100
105 #define ARTNET_OP_FIRMWARE_MASTER 0xf200
106 #define ARTNET_OP_FIRMWARE_REPLY 0xf300
107 #define ARTNET_OP_FILE_TN_MASTER 0xf400
108 #define ARTNET_OP_FILE_FN_MASTER 0xf500
109 #define ARTNET_OP_FILE_FN_REPLY 0xf600
111 #define ARTNET_OP_IP_PROG 0xf800
112 #define ARTNET_OP_IP_PROG_REPLY 0xf900
114 static const value_string artnet_opcode_vals
[] = {
115 { ARTNET_OP_POLL
, "ArtPoll" },
116 { ARTNET_OP_POLL_REPLY
, "ArtPollReply" },
117 { ARTNET_OP_POLL_FP_REPLY
, "ArtPollFpReply" },
118 { ARTNET_OP_DIAG_DATA
, "ArtDiagData" },
119 { ARTNET_OP_COMMAND
, "ArtCommand" },
120 { ARTNET_OP_DATA_REQUEST
, "ArtDataRequest" },
121 { ARTNET_OP_DATA_REPLY
, "ArtDataReply" },
122 { ARTNET_OP_OUTPUT
, "ArtDMX" },
123 { ARTNET_OP_NZS
, "ArtNzs" },
124 { ARTNET_OP_SYNC
, "ArtSync" },
125 { ARTNET_OP_ADDRESS
, "ArtAddress" },
126 { ARTNET_OP_INPUT
, "ArtInput" },
127 { ARTNET_OP_TOD_REQUEST
, "ArtTodRequest" },
128 { ARTNET_OP_TOD_DATA
, "ArtTodData" },
129 { ARTNET_OP_TOD_CONTROL
, "ArtTodControl" },
130 { ARTNET_OP_RDM
, "ArtRdm" },
131 { ARTNET_OP_RDM_SUB
, "ArtRdmSub" },
132 { ARTNET_OP_MEDIA
, "ArtMedia" },
133 { ARTNET_OP_MEDIA_PATCH
, "ArtMediaPatch" },
134 { ARTNET_OP_MEDIA_CONTROL
, "ArtMediaControl" },
135 { ARTNET_OP_MEDIA_CONTRL_REPLY
, "ArtMediaContrlReply" },
136 { ARTNET_OP_TIME_CODE
, "ArtTimeCode" },
137 { ARTNET_OP_TIME_SYNC
, "ArtTimeSync" },
138 { ARTNET_OP_TRIGGER
, "ArtTrigger" },
139 { ARTNET_OP_DIRECTORY
, "ArtDirectory" },
140 { ARTNET_OP_DIRECTORY_REPLY
, "ArtDirectoryReply" },
141 { ARTNET_OP_VIDEO_SETUP
, "ArtVideoSetup" },
142 { ARTNET_OP_VIDEO_PALETTE
, "ArtVideoPalette" },
143 { ARTNET_OP_VIDEO_DATA
, "ArtVideoData" },
144 { ARTNET_OP_MAC_MASTER
, "ArtMacMaster" },
145 { ARTNET_OP_MAC_SLAVE
, "ArtMacSlave" },
146 { ARTNET_OP_FIRMWARE_MASTER
, "ArtFirmwareMaster" },
147 { ARTNET_OP_FIRMWARE_REPLY
, "ArtFirmwareReply" },
148 { ARTNET_OP_FILE_TN_MASTER
, "ArtfileTnMaster" },
149 { ARTNET_OP_FILE_FN_MASTER
, "ArtfileFnMaster" },
150 { ARTNET_OP_FILE_FN_REPLY
, "ArtfileFnReply" },
151 { ARTNET_OP_IP_PROG
, "ArtIpProg" },
152 { ARTNET_OP_IP_PROG_REPLY
, "ArtIpProgReply" },
155 static value_string_ext artnet_opcode_vals_ext
= VALUE_STRING_EXT_INIT(artnet_opcode_vals
);
158 * OEM code database date: 2024-09-29
161 * <MANUFACTURER>: <PRODUCT>
163 static const value_string artnet_oem_code_vals
[] = {
164 { 0x0000, "Artistic Licence Engineering Ltd: Dmx Hub" },
165 { 0x0001, "ADB: Netgate" },
166 { 0x0002, "Artistic Licence Engineering Ltd: MAHub" },
167 { 0x0003, "Artistic Licence Engineering Ltd: Ether Lynx I" },
168 { 0x0004, "Lew Light: Lew Light" },
169 { 0x0005, "High End Systems: High End Systems" },
170 { 0x0006, "Avolites: Dimmer" },
171 { 0x0007, "Artistic Licence Engineering Ltd: Art Net II Processor" },
172 { 0x0010, "Artistic Licence Engineering Ltd: Down Link" },
173 { 0x0011, "Artistic Licence Engineering Ltd: Up Link" },
174 { 0x0012, "Artistic Licence Engineering Ltd: Truss Link OP" },
175 { 0x0013, "Artistic Licence Engineering Ltd: Truss Link IP" },
176 { 0x0014, "Artistic Licence Engineering Ltd: Net Link OP" },
177 { 0x0015, "Artistic Licence Engineering Ltd: Net Link IP" },
178 { 0x0016, "Artistic Licence Engineering Ltd: Radio Link OP" },
179 { 0x0017, "Artistic Licence Engineering Ltd: Radio Link IP" },
180 { 0x0030, "Doug Fleenor Design Inc: DFD DL" },
181 { 0x0031, "Doug Fleenor Design Inc: DFD UL" },
182 { 0x0050, "Goddard Design Company: GDC DL" },
183 { 0x0051, "Goddard Design Company: GDC UL" },
184 { 0x0070, "ADB: ADB Down Link" },
185 { 0x0071, "ADB: ADB Up Link" },
186 { 0x0072, "ADB: ADB WiFi" },
187 { 0x0080, "Artistic Licence Engineering Ltd: AL 0 Down" },
188 { 0x0081, "Artistic Licence Engineering Ltd: AL 0 Up" },
189 { 0x0082, "Artistic Licence Engineering Ltd: AL 1 Down" },
190 { 0x0083, "Artistic Licence Engineering Ltd: AL 1 Up" },
191 { 0x0084, "Artistic Licence Engineering Ltd: AL 2 Down" },
192 { 0x0085, "Artistic Licence Engineering Ltd: AL 2 Up" },
193 { 0x0086, "Artistic Licence Engineering Ltd: AL 3 Down" },
194 { 0x0087, "Artistic Licence Engineering Ltd: AL 3 Up" },
195 { 0x0088, "Artistic Licence Engineering Ltd: AL 4 Down" },
196 { 0x0089, "Artistic Licence Engineering Ltd: AL 4 Up" },
197 { 0x008A, "Artistic Licence Engineering Ltd: AL 5 Down" },
198 { 0x008B, "Artistic Licence Engineering Ltd: AL 5 Up" },
199 { 0x008C, "Zero 88: Zero Out2" },
200 { 0x008D, "Zero 88: Zero In2" },
201 { 0x008E, "Flying Pig Systems: FP Out2" },
202 { 0x008F, "Flying Pig Systems: FP In2" },
203 { 0x0090, "ELC: Two Port Node" },
204 { 0x0091, "ELC: Four Port Node" },
205 { 0x00FF, "Artistic Licence Engineering Ltd: OemUnknown" },
206 { 0x0100, "Artistic Licence Engineering Ltd: Ether Lynx Exp 0" },
207 { 0x0101, "Artistic Licence Engineering Ltd: Ether Lynx Exp 1" },
208 { 0x0102, "Artistic Licence Engineering Ltd: Ether Lynx Exp 2" },
209 { 0x0103, "Artistic Licence Engineering Ltd: Ether Lynx Exp 3" },
210 { 0x0104, "Artistic Licence Engineering Ltd: Ether Lynx Exp 4" },
211 { 0x0105, "Artistic Licence Engineering Ltd: Ether Lynx Exp 5" },
212 { 0x0106, "Artistic Licence Engineering Ltd: Ether Lynx Exp 6" },
213 { 0x0107, "Artistic Licence Engineering Ltd: Ether Lynx Exp 7" },
214 { 0x0108, "Artistic Licence Engineering Ltd: Ether Lynx Exp 8" },
215 { 0x0109, "Artistic Licence Engineering Ltd: Ether Lynx Exp 9" },
216 { 0x010A, "Artistic Licence Engineering Ltd: Ether Lynx Exp a" },
217 { 0x010B, "Artistic Licence Engineering Ltd: Ether Lynx Exp b" },
218 { 0x010C, "Artistic Licence Engineering Ltd: Ether Lynx Exp c" },
219 { 0x010D, "Artistic Licence Engineering Ltd: Ether Lynx Exp d" },
220 { 0x010E, "Artistic Licence Engineering Ltd: Ether Lynx Exp e" },
221 { 0x010F, "Artistic Licence Engineering Ltd: Ether Lynx Exp f" },
222 { 0x0110, "Artistic Licence Engineering Ltd: Cata Lynx" },
223 { 0x0111, "Artistic Licence Engineering Ltd: Cata Lynx Exp 1" },
224 { 0x0112, "Artistic Licence Engineering Ltd: Cata Lynx Exp 2" },
225 { 0x0113, "Artistic Licence Engineering Ltd: Cata Lynx Exp 3" },
226 { 0x0114, "Artistic Licence Engineering Ltd: Cata Lynx Exp 4" },
227 { 0x0115, "Artistic Licence Engineering Ltd: Cata Lynx Exp 5" },
228 { 0x0116, "Artistic Licence Engineering Ltd: Cata Lynx Exp 6" },
229 { 0x0117, "Artistic Licence Engineering Ltd: Cata Lynx Exp 7" },
230 { 0x0118, "Artistic Licence Engineering Ltd: Cata Lynx Exp 8" },
231 { 0x0119, "Artistic Licence Engineering Ltd: Cata Lynx Exp 9" },
232 { 0x011A, "Artistic Licence Engineering Ltd: Cata Lynx Exp a" },
233 { 0x011B, "Artistic Licence Engineering Ltd: Cata Lynx Exp b" },
234 { 0x011C, "Artistic Licence Engineering Ltd: Cata Lynx Exp c" },
235 { 0x011D, "Artistic Licence Engineering Ltd: Cata Lynx Exp d" },
236 { 0x011E, "Artistic Licence Engineering Ltd: Cata Lynx Exp e" },
237 { 0x011F, "Artistic Licence Engineering Ltd: Cata Lynx Exp f" },
238 { 0x0120, "Artistic Licence Engineering Ltd: Pixi Power F1a" },
239 { 0x0180, "Martin: Maxxyz Node" },
240 { 0x0181, "Martin: P3 System Controller" },
241 { 0x0190, "Enttec: Enttec 0" },
242 { 0x0191, "Enttec: Enttec 1" },
243 { 0x0192, "Enttec: Enttec 2" },
244 { 0x0193, "Enttec: Enttec 3" },
245 { 0x0194, "Enttec: Enttec 4" },
246 { 0x0195, "Enttec: Enttec 5" },
247 { 0x0196, "Enttec: Enttec 6" },
248 { 0x0197, "Enttec: Enttec 7" },
249 { 0x0198, "Enttec: Enttec 8" },
250 { 0x0199, "Enttec: Enttec 9" },
251 { 0x019A, "Enttec: Enttec a" },
252 { 0x019B, "Enttec: Enttec b" },
253 { 0x019C, "Enttec: Enttec c" },
254 { 0x019D, "Enttec: Enttec d" },
255 { 0x019E, "Enttec: Enttec e" },
256 { 0x019F, "Enttec: Enttec f" },
257 { 0x01A0, "LES: PBX" },
258 { 0x01A1, "LES: Executive" },
259 { 0x01A2, "LES: Matrix" },
260 { 0x01A3, "LES: LES 3" },
261 { 0x01A4, "LES: LES 4" },
262 { 0x01A5, "LES: LES 5" },
263 { 0x01A6, "LES: LES 6" },
264 { 0x01A7, "LES: LES 7" },
265 { 0x01A8, "LES: LES 8" },
266 { 0x01A9, "LES: LES 9" },
267 { 0x01AA, "LES: LES a" },
268 { 0x01AB, "LES: LES b" },
269 { 0x01AC, "LES: LES c" },
270 { 0x01AD, "LES: LES d" },
271 { 0x01AE, "LES: LES e" },
272 { 0x01AF, "LES: LES f" },
273 { 0x01B0, "EDI: Edig" },
274 { 0x01C0, "Nondim Enterprises: Openlux" },
275 { 0x01D0, "Green Hippo: Hippotizer" },
276 { 0x01E0, "VNR: Merger Booster" },
277 { 0x01F0, "Robe: ILE" },
278 { 0x01F1, "Robe: Robe 4 4" },
279 { 0x0210, "Artistic Licence Engineering Ltd: Down Lynx 2" },
280 { 0x0211, "Artistic Licence Engineering Ltd: Up Lynx 2" },
281 { 0x0212, "Artistic Licence Engineering Ltd: Truss Lynx 2" },
282 { 0x0213, "Artistic Licence Engineering Ltd: Truss Lynx 2" },
283 { 0x0214, "Artistic Licence Engineering Ltd: Net Lynx OP 2" },
284 { 0x0215, "Artistic Licence Engineering Ltd: Net Lynx IP 2" },
285 { 0x0216, "Artistic Licence Engineering Ltd: Radio Lynx OP 2" },
286 { 0x0217, "Artistic Licence Engineering Ltd: Radio Lynx IP 2" },
287 { 0x0230, "Doug Fleenor Design Inc: DFD Dlynx 2" },
288 { 0x0231, "Doug Fleenor Design Inc: DFD Ulynx 2" },
289 { 0x0250, "Goddard Design Company: GDC Dlynx 2" },
290 { 0x0251, "Goddard Design Company: GDC Ulynx 2" },
291 { 0x0270, "ADB: ADB Down Lynx 2" },
292 { 0x0271, "ADB: ADB Up Lynx 2" },
293 { 0x0280, "LSC: LSC Down Lynx 2" },
294 { 0x0281, "LSC: LSC Up Lynx 2" },
295 { 0x0282, "Artistic Licence Engineering Ltd: AL OEM D1" },
296 { 0x0283, "Artistic Licence Engineering Ltd: AL OEM U1" },
297 { 0x0284, "Artistic Licence Engineering Ltd: AL OEM D2" },
298 { 0x0285, "Artistic Licence Engineering Ltd: AL OEM U2" },
299 { 0x0286, "Artistic Licence Engineering Ltd: AL OEM D3" },
300 { 0x0287, "Artistic Licence Engineering Ltd: AL OEM U3" },
301 { 0x0288, "Artistic Licence Engineering Ltd: AL OEM D4" },
302 { 0x0289, "Artistic Licence Engineering Ltd: AL OEM U4" },
303 { 0x028A, "Artistic Licence Engineering Ltd: AL OEM D5" },
304 { 0x028B, "Artistic Licence Engineering Ltd: AL OEM U5" },
305 { 0x0300, "Gold Stage: DMX net O" },
306 { 0x0301, "Gold Stage: DMX net I" },
307 { 0x0302, "Gold Stage: OemGold2" },
308 { 0x0303, "Gold Stage: OemGold3" },
309 { 0x0304, "Gold Stage: GT 96" },
310 { 0x0305, "Gold Stage: Goldstage III Light Console" },
311 { 0x0306, "Gold Stage: OemGold6" },
312 { 0x0307, "Gold Stage: OemGold7" },
313 { 0x0308, "Gold Stage: KTG 55 Dimmer" },
314 { 0x0309, "Gold Stage: OemGold9" },
315 { 0x030A, "Gold Stage: OemGolda" },
316 { 0x030B, "Gold Stage: OemGoldb" },
317 { 0x030C, "Gold Stage: OemGoldc" },
318 { 0x030D, "Gold Stage: OemGoldd" },
319 { 0x030E, "Gold Stage: OemGolde" },
320 { 0x030F, "Gold Stage: OemGoldf" },
321 { 0x0310, "Sunset Dynamics: StarGateDMX" },
322 { 0x0320, "Luminex LCE: Ethernet DMX8" },
323 { 0x0321, "Luminex LCE: Ethernet DMX2" },
324 { 0x0322, "Luminex LCE: Ethernet DMX4" },
325 { 0x0323, "Luminex LCE: LumiNet Monitor" },
326 { 0x0330, "Invisible Rival: Blue Hysteria" },
327 { 0x0340, "Avolites: Diamond 4 Vision" },
328 { 0x0341, "Avolites: Diamond 4 elite" },
329 { 0x0342, "Avolites: Peal offline" },
330 { 0x0343, "Avolites: Titan" },
331 { 0x0350, "Bigfoot: EtherMux Remote" },
332 { 0x0351, "Bigfoot: EtherMux Server" },
333 { 0x0352, "Bigfoot: EtherMux Desktop" },
334 { 0x0360, "Ecue: Ecue 512" },
335 { 0x0361, "Ecue: Ecue 1024" },
336 { 0x0362, "Ecue: Ecue 2048" },
337 { 0x0370, "Kiss Box: DMX Box" },
338 { 0x0380, "Arkaos: V J DMX" },
339 { 0x0390, "Digital Enlightenment: ShowGate" },
340 { 0x03A0, "DES: NELI" },
341 { 0x03B0, "Nicolaudie: Easy" },
342 { 0x03B1, "Nicolaudie: Magic 3D" },
343 { 0x03C0, "Catalyst: Catalyst" },
344 { 0x03D0, "Bleasdale: PixelMad" },
345 { 0x03E0, "Lehigh Electric Products Co: DX2 Dimming Rack" },
346 { 0x03F0, "Horizon: Horizon Controller" },
347 { 0x0400, "Audio Scene: OemAudioSceneO" },
348 { 0x0401, "Audio Scene: OemAudioSceneI" },
349 { 0x0410, "Pathport: 2 out" },
350 { 0x0411, "Pathport: 2 in" },
351 { 0x0412, "Pathport: 1 out" },
352 { 0x0413, "Pathport: 1 in" },
353 { 0x0420, "Botex: OemBotex1" },
354 { 0x0430, "Simon Newton: LibArtNet" },
355 { 0x0431, "Simon Newton: LLA Live" },
356 { 0x0440, "XLNT: OemTeamXlntIp" },
357 { 0x0441, "XLNT: OemTeamXlntOp" },
358 { 0x0450, "Schnick Schnack Systems: Systemnetzteil 4E" },
359 { 0x0451, "Schnick Schnack Systems: SysOne" },
360 { 0x0452, "Schnick Schnack Systems: Pix Gate" },
361 { 0x0460, "Dom Dv: NetDmx" },
362 { 0x0470, "Sean Christopher: Projection Pal" },
363 { 0x0471, "Sean Christopher: The Lighting Remote" },
364 { 0x0472, "LSS Lighting: MasterGate Profibus interface" },
365 { 0x0473, "LSS Lighting: Rail Controller Profibus" },
366 { 0x0474, "LSS Lighting: Master Port Mini" },
367 { 0x0475, "LSS Lighting: Powerdim" },
368 { 0x0490, "Open Clear: OemOpenClear0" },
369 { 0x0491, "Open Clear: OemOpenClear1" },
370 { 0x0492, "Open Clear: OemOpenClear2" },
371 { 0x0493, "Open Clear: OemOpenClear3" },
372 { 0x0494, "Open Clear: OemOpenClear4" },
373 { 0x0495, "Open Clear: OemOpenClear5" },
374 { 0x0496, "Open Clear: OemOpenClear6" },
375 { 0x0497, "Open Clear: OemOpenClear7" },
376 { 0x0498, "Open Clear: OemOpenClear8" },
377 { 0x0499, "Open Clear: OemOpenClear9" },
378 { 0x049A, "Open Clear: OemOpenCleara" },
379 { 0x049B, "Open Clear: OemOpenClearb" },
380 { 0x049C, "Open Clear: OemOpenClearc" },
381 { 0x049D, "Open Clear: OemOpenCleard" },
382 { 0x049E, "Open Clear: OemOpenCleare" },
383 { 0x049F, "Open Clear: OemOpenClearf" },
384 { 0x04B0, "MA Lighting: 2 Port Node" },
385 { 0x04B1, "MA Lighting: Nsp" },
386 { 0x04B2, "MA Lighting: Ndp" },
387 { 0x04B3, "MA Lighting: Remote" },
388 { 0x04B4, "MA Lighting: GrandMA2 Consoles and OnPC" },
389 { 0x04B5, "MA Lighting: VPU" },
390 { 0x04B6, "MA Lighting: MA 2 4 8 Port Node programmable io" },
391 { 0x04B7, "MA Lighting: Dot2 console and Dot2OnPC" },
392 { 0x04B8, "MA Lighting: Dot2 VPU" },
393 { 0x04B9, "MA Lighting: Dot2 X Port nodes" },
394 { 0x04BA, "MA Lighting: OemMaa" },
395 { 0x04BB, "MA Lighting: OemMab" },
396 { 0x04BC, "MA Lighting: OemMac" },
397 { 0x04BD, "MA Lighting: OemMad" },
398 { 0x04BE, "MA Lighting: OemMae" },
399 { 0x04BF, "MA Lighting: OemMaf" },
400 { 0x04C0, "inoage GmbH: MADRIX 2" },
401 { 0x04C1, "GLP: Ion control pc" },
402 { 0x04C2, "inoage GmbH: Snuffler" },
403 { 0x04C3, "inoage GmbH: PLEXUS" },
404 { 0x04C4, "inoage GmbH: MADRIX 3" },
405 { 0x04C5, "inoage GmbH: LUNA 8" },
406 { 0x04C6, "inoage GmbH: OemMadrix6" },
407 { 0x04C7, "inoage GmbH: LUNA 4" },
408 { 0x04C8, "inoage GmbH: LUNA 16" },
409 { 0x04C9, "inoage GmbH: NEBULA" },
410 { 0x04CA, "inoage GmbH: STELLA" },
411 { 0x04CB, "inoage GmbH: ORION" },
412 { 0x04CC, "inoage GmbH: MADRIX 5" },
413 { 0x04CD, "inoage GmbH: OemMadrixd" },
414 { 0x04CE, "inoage GmbH: AURA" },
415 { 0x04CF, "inoage GmbH: OemMadrixf" },
416 { 0x04D0, "Team Projects: Xilver Controller" },
417 { 0x04E0, "Wybron: PSU 2" },
418 { 0x04F0, "Pharos Architectural Controls: LPCX" },
419 { 0x04F1, "Pharos Architectural Controls: OemPharosLpc1" },
420 { 0x04F2, "Pharos Architectural Controls: OemPharosLpc2" },
421 { 0x04F3, "Pharos Architectural Controls: OemPharos3" },
422 { 0x04F4, "Pharos Architectural Controls: OemPharos4" },
423 { 0x04F5, "Pharos Architectural Controls: OemPharos5" },
424 { 0x04F6, "Pharos Architectural Controls: OemPharos6" },
425 { 0x04F7, "Pharos Architectural Controls: OemPharos7" },
426 { 0x04F8, "Pharos Architectural Controls: OemPharos8" },
427 { 0x04F9, "Pharos Architectural Controls: OemPharos9" },
428 { 0x04FA, "Pharos Architectural Controls: OemPharosa" },
429 { 0x04FB, "Pharos Architectural Controls: OemPharosb" },
430 { 0x04FC, "Pharos Architectural Controls: OemPharosc" },
431 { 0x04FD, "Pharos Architectural Controls: OemPharosd" },
432 { 0x04FE, "Pharos Architectural Controls: OemPharose" },
433 { 0x04FF, "Pharos Architectural Controls: OemPharosf" },
434 { 0x0500, "HES: DP8000 16" },
435 { 0x0501, "HES: DP8000 12" },
436 { 0x0502, "HES: DP2000" },
437 { 0x0600, "Spectrum Manufacturing: Chroma Q PSU32" },
438 { 0x0610, "DmxDesign: EthDec2" },
439 { 0x0620, "WodieLite: ArtMedia" },
440 { 0x0800, "Element Labs: Vizomo" },
441 { 0x0810, "Dataton: Watchout" },
442 { 0x0820, "Barco: Barco DML 120" },
443 { 0x0821, "Barco: FLM" },
444 { 0x0822, "Barco: CLM" },
445 { 0x0830, "City Theatrical: SHoW DMX Transmitter" },
446 { 0x0831, "City Theatrical: SHoW DMX Neo Transceiver" },
447 { 0x0840, "Quantukm Logic: DMX Ethernet Node" },
448 { 0x0850, "LSS Lighting: MasterSwitch" },
449 { 0x0851, "LSS Lighting: MasterPort4" },
450 { 0x0852, "LSS Lighting: MasterPortPSU" },
451 { 0x0853, "LSS Lighting: DMX View" },
452 { 0x0860, "Future Design ApS: FD Trio" },
453 { 0x0870, "Qmaxz Lighting: QME700P" },
454 { 0x0871, "Lux Lumen: Lux Node" },
455 { 0x0880, "Martin: Ether2DMX8 Node" },
456 { 0x0890, "PHOENIXstudios Remsfeld: DIMMER ShowGate" },
457 { 0x0891, "LaserAnimation Sollinger GmbH: Lasergraph DSP" },
458 { 0x0892, "LaserAnimation Sollinger GmbH: Lasergraph DSP" },
459 { 0x08A0, "COEMAR: Infinity Spot S" },
460 { 0x08A1, "COEMAR: Infinity Wash S" },
461 { 0x08A2, "COEMAR: Infinity ACL S" },
462 { 0x08A3, "COEMAR: Infinity Spot XL" },
463 { 0x08A4, "COEMAR: Infinity Wash XL" },
464 { 0x08A5, "COEMAR: DR1+" },
465 { 0x08A6, "COEMAR: Infinity Spot M" },
466 { 0x08A7, "COEMAR: Infinity Wash M" },
467 { 0x08A8, "COEMAR: Infinity ACL M" },
468 { 0x08B0, "DMXControl: DMXControl" },
469 { 0x08B1, "DMXControl: AvrNode" },
470 { 0x08C0, "ChamSys: MagicQ" },
471 { 0x08D0, "Fisher Technical Services Inc: Navigator Automation System" },
472 { 0x08E0, "Electric Spark: VPIX40" },
473 { 0x08F0, "JSC: Gate Pro 1P" },
474 { 0x08F1, "JSC: Gate Pro 2P" },
475 { 0x08F2, "JSC: Gate Pro 4P" },
476 { 0x0900, "EQUIPSON S A: WORK LM 3R" },
477 { 0x0901, "EQUIPSON S A: WORK LM 3E" },
478 { 0x0910, "TecArt Lighting: 1CH Node" },
479 { 0x0911, "TecArt Lighting: Ethernet Merger" },
480 { 0x0912, "TecArt Lighting: 2CH Node" },
481 { 0x0920, "Zero 88: ORB" },
482 { 0x0921, "Zero 88: ORBxf" },
483 { 0x0922, "Zero 88: Zero Wire CRMX TX RDM" },
484 { 0x0923, "Zero 88: Solution" },
485 { 0x0924, "Zero 88: Solution XL" },
486 { 0x0925, "Zero 88: EtherN 2 RDM" },
487 { 0x0926, "Zero 88: EtherN 8 RDM" },
488 { 0x0927, "Zero 88: G4" },
489 { 0x0928, "Zero 88: G8" },
490 { 0x0930, "EQUIPSON S A: WORK LM 4" },
491 { 0x0940, "Laser Technology Ltd: LasNet" },
492 { 0x0950, "LSS Lighting: Discovery" },
493 { 0x0960, "JPK Systems Limited: OemJpk1" },
494 { 0x0961, "JPK Systems Limited: OemJpk2" },
495 { 0x0962, "JPK Systems Limited: OemJpk3" },
496 { 0x0963, "JPK Systems Limited: OemJpk4" },
497 { 0x0964, "JPK Systems Limited: OemJpk5" },
498 { 0x0965, "JPK Systems Limited: OemJpk6" },
499 { 0x0966, "JPK Systems Limited: OemJpk7" },
500 { 0x0967, "JPK Systems Limited: OemJpk8" },
501 { 0x0968, "JPK Systems Limited: OemJpk9" },
502 { 0x0969, "JPK Systems Limited: OemJpk10" },
503 { 0x096A, "JPK Systems Limited: OemJpk11" },
504 { 0x096B, "JPK Systems Limited: OemJpk12" },
505 { 0x096C, "JPK Systems Limited: OemJpk13" },
506 { 0x096D, "JPK Systems Limited: OemJpk14" },
507 { 0x096E, "JPK Systems Limited: OemJpk15" },
508 { 0x096F, "JPK Systems Limited: OemJpk16" },
509 { 0x0970, "Fresnel Strong: Power 12 3 TR Net" },
510 { 0x0971, "Fresnel S A Strong: Nocturne Stage Control" },
511 { 0x0972, "Fresnel S A Strong: Ethernet DMX" },
512 { 0x0980, "Prism Projection: RevEAL" },
513 { 0x0990, "Moving Art: M NET" },
514 { 0x09A0, "HPL LIGHT COMPANY: DIMMER POWER LIGHT" },
515 { 0x09B0, "Engineering Solutions Inc: Tripix controller" },
516 { 0x09B1, "Engineering Solutions Inc: E16 RGB Node Driver" },
517 { 0x09B2, "Engineering Solutions Inc: E8 RGB Node Driver" },
518 { 0x09B3, "Engineering Solutions Inc: E4 RGB Node Driver" },
519 { 0x09C0, "SAND Network Systems: SandPort SandBox" },
520 { 0x09D0, "Oarw: Screen Monkey" },
521 { 0x09E0, "Mueller Elektronik: NetLase" },
522 { 0x09F0, "LumenRadio AB: CRMX Nova TX2" },
523 { 0x09F1, "LumenRadio AB: CRMX Nova TX2 RDM" },
524 { 0x09F2, "LumenRadio AB: CRMX Nova FX" },
525 { 0x09F3, "LumenRadio AB: CRMX Nova FX2" },
526 { 0x09F4, "LumenRadio AB: CRMX Outdoor F1ex" },
527 { 0x09F5, "LumenRadio AB: SuperNova" },
528 { 0x0A00, "SRS Light Design: NDP12 Network Dimmer Pack" },
529 { 0x0A10, "VYV Corporation: Photon" },
530 { 0x0A20, "CDS: LanBox LCX" },
531 { 0x0A21, "CDS: LanBox LCE" },
532 { 0x0A22, "CDS: LanBox LCP" },
533 { 0x0A30, "Total Light: Mx Single" },
534 { 0x0A31, "Total Light: Mx Dual" },
535 { 0x0A40, "Shanghai SeaChip Electronics Co Ltd: SC DMX 2000" },
536 { 0x0A50, "Synthe FX: Luminair" },
537 { 0x0A51, "Synthe FX: Pixelnode" },
538 { 0x0A60, "Goddard Design Company: OemGodAL5001" },
539 { 0x0A61, "Goddard Design Company: OemGodDataLynxOp" },
540 { 0x0A62, "Goddard Design Company: OemGodRailLynxOp" },
541 { 0x0A63, "Goddard Design Company: OemGodDownLynx4" },
542 { 0x0A64, "Goddard Design Company: OemGodNetLynxOp4" },
543 { 0x0A65, "Goddard Design Company: OemGodAL5002" },
544 { 0x0A66, "Goddard Design Company: OemGodDataLynxIp" },
545 { 0x0A67, "Goddard Design Company: OemGodCataLynxNt" },
546 { 0x0A68, "Goddard Design Company: OemGodRailLynxIp" },
547 { 0x0A69, "Goddard Design Company: OemGodUpLynx4" },
548 { 0x0A6A, "Goddard Design Company: OemGodNetLynxIp4" },
549 { 0x0A6B, "Goddard Design Company: OemGodArtBoot" },
550 { 0x0A6C, "Goddard Design Company: OemGodArtLynxOp" },
551 { 0x0A6D, "Goddard Design Company: OemGodArtLynxIp" },
552 { 0x0A6E, "Goddard Design Company: OemGodEtherLynxII" },
553 { 0x0A80, "CLAYPAKY: Alpha Spot HPE 700" },
554 { 0x0A81, "CLAYPAKY: Alpha Beam 700" },
555 { 0x0A82, "CLAYPAKY: Alpha Wash 700" },
556 { 0x0A83, "CLAYPAKY: Alpha Profile 700" },
557 { 0x0A84, "CLAYPAKY: Alpha Beam 1500" },
558 { 0x0A85, "CLAYPAKY: Alpha Wash LT1500" },
559 { 0x0A86, "CLAYPAKY: Alpha Spot HPE 1500" },
560 { 0x0A87, "CLAYPAKY: Alpha Profile 1500" },
561 { 0x0A88, "CLAYPAKY: Alpha Wash 1500" },
562 { 0x0A89, "CLAYPAKY: Sharpy" },
563 { 0x0A8A, "CLAYPAKY: Shot Light Wash" },
564 { 0x0A8B, "CLAYPAKY: Alpha Spot QWO800" },
565 { 0x0A8C, "CLAYPAKY: Alpha Profile 1500Q" },
566 { 0x0A8D, "CLAYPAKY: Alpha Profile 800" },
567 { 0x0A8E, "CLAYPAKY: Aleda K5" },
568 { 0x0A8F, "CLAYPAKY: Aleda K10" },
569 { 0x0A90, "CLAYPAKY: Aleda K20" },
570 { 0x0A91, "CLAYPAKY: Sharpy Wash" },
571 { 0x0A92, "CLAYPAKY: Aleda K10 B Eye Easy" },
572 { 0x0A93, "CLAYPAKY: Aleda K20 B Eye" },
573 { 0x0A94, "CLAYPAKY: Aleda K10 B Eye" },
574 { 0x0A95, "CLAYPAKY: SuperSharpy" },
575 { 0x0A96, "CLAYPAKY: Mythos" },
576 { 0x0A97, "CLAYPAKY: Sharpy Wash PC" },
577 { 0x0A98, "CLAYPAKY: SCENIUS PROFILE" },
578 { 0x0A99, "CLAYPAKY: SCENIUS SPOT" },
579 { 0x0A9A, "CLAYPAKY: SPHERISCAN" },
580 { 0x0A9B, "CLAYPAKY: SPHERLIGHT" },
581 { 0x0A9C, "CLAYPAKY: HEPIKOS" },
582 { 0x0A9D, "CLAYPAKY: SHOWBATTEN" },
583 { 0x0A9E, "CLAYPAKY: SHAR BAR" },
584 { 0x0A9F, "CLAYPAKY: MYTHOS2" },
585 { 0x0AA0, "Raven Systems Design Inc: AquaDuct Fountain" },
586 { 0x0AA1, "Raven Systems Design Inc: OemRaven1" },
587 { 0x0AA2, "Raven Systems Design Inc: OemRaven2" },
588 { 0x0AA3, "Raven Systems Design Inc: OemRaven3" },
589 { 0x0AA4, "Raven Systems Design Inc: OemRaven4" },
590 { 0x0AA5, "Raven Systems Design Inc: OemRaven5" },
591 { 0x0AA6, "Raven Systems Design Inc: OemRaven6" },
592 { 0x0AA7, "Raven Systems Design Inc: OemRaven7" },
593 { 0x0AA8, "Raven Systems Design Inc: OemRaven8" },
594 { 0x0AA9, "Raven Systems Design Inc: OemRaven9" },
595 { 0x0AAA, "Raven Systems Design Inc: OemRavena" },
596 { 0x0AAB, "Raven Systems Design Inc: OemRavenb" },
597 { 0x0AAC, "Raven Systems Design Inc: OemRavenc" },
598 { 0x0AAD, "Raven Systems Design Inc: OemRavend" },
599 { 0x0AAE, "Raven Systems Design Inc: OemRavene" },
600 { 0x0AAF, "Raven Systems Design Inc: OemRavenf" },
601 { 0x0AB0, "Theatrelight New Zealand: TLED2 Ethernet to isolated DMX converter" },
602 { 0x0AB1, "Theatrelight New Zealand: TLDE2 Isolated DMX to Ethernet converter" },
603 { 0x0AB2, "Theatrelight New Zealand: TLPID II 60 Plugin Dimmer Cabinet" },
604 { 0x0AB3, "Theatrelight New Zealand: TLPID II 96 Plugin Dimmer Cabinet" },
605 { 0x0AB4, "Theatrelight New Zealand: TLPID II 120 Plugin Dimmer Cabinet" },
606 { 0x0AB5, "Theatrelight New Zealand: TLPID II 192 Plugin Dimmer Cabinet" },
607 { 0x0AC0, "Cinetix Medien und Interface GmbH: Ethernet DMX512 Control Box" },
608 { 0x0AC1, "Cinetix Medien und Interface GmbH: Ethernet DMX512 Generator" },
609 { 0x0AC2, "Cinetix Medien und Interface GmbH: Ethernet DMX512 GenIO" },
610 { 0x0AD0, "WERPAX bvba: MULTI DMX" },
611 { 0x0AE0, "chainzone: RoundTable" },
612 { 0x0AF0, "City Theatrical Inc: PDS 750TRX" },
613 { 0x0AF1, "City Theatrical Inc: PDS 375TRX" },
614 { 0x0B00, "STC Mecatronica: DDR 2404 Digital Dimmer Rack" },
615 { 0x0B10, "LSC: OemLscOut1" },
616 { 0x0B11, "LSC: OemLscIn1" },
617 { 0x0B12, "LSC: OemLscOut4" },
618 { 0x0B13, "LSC: OemLscIn4" },
619 { 0x0B20, "EUROLITE: Node 8" },
620 { 0x0B30, "Absolute FX Pte Ltd: Showtime" },
621 { 0x0B40, "Mediamation Inc: Virtual Fountain" },
622 { 0x0B50, "Vanilla Internet Ltd: Chameleon" },
623 { 0x0B60, "LightWild LC: LightWild DataBridge" },
624 { 0x0B70, "Flexvisual: FlexNode" },
625 { 0x0B80, "Company NA: Digi Network" },
626 { 0x0B81, "Company NA: Mozart PSU 4" },
627 { 0x0B82, "Company NA: DigiNet 416" },
628 { 0x0B90, "DMX4ALL GmbH: DMX UNIVERSE 4 1" },
629 { 0x0B91, "DMX4ALL GmbH: DMX STAGE PROFI 1 1" },
630 { 0x0B92, "DMX4ALL GmbH: MagiarLED II flex PixxControl" },
631 { 0x0BA0, "Starlighting: Net DMX Notes" },
632 { 0x0BB0, "medien technik cords: MGate4" },
633 { 0x0BC0, "Joshua 1 Systems Inc: ECG M32MX" },
634 { 0x0BC1, "Joshua 1 Systems Inc: ECG DR2" },
635 { 0x0BC2, "Joshua 1 Systems Inc: ECG DR4" },
636 { 0x0BC3, "Joshua 1 Systems Inc: ECG PIX8" },
637 { 0x0BC4, "Joshua 1 Systems Inc: ECGPro D1" },
638 { 0x0BC5, "Joshua 1 Systems Inc: ECGPro D4" },
639 { 0x0BC6, "Joshua 1 Systems Inc: ECGPro D8" },
640 { 0x0BD0, "Astera: AC4" },
641 { 0x0BE0, "MARUMO ELECTRIC Co Ltd: MBK 350E" },
642 { 0x0BE1, "MARUMO ELECTRIC Co Ltd: MBK 360E" },
643 { 0x0BE2, "MARUMO ELECTRIC Co Ltd: MBK 370E" },
644 { 0x0BF0, "Weigl Elektronik Mediaprojekte: Pro IO" },
645 { 0x0C00, "GLP German Light Products GmbH: Impression Spot one" },
646 { 0x0C01, "GLP German Light Products GmbH: Impression Wash one" },
647 { 0x0C10, "s jaekel: DmxScreen" },
648 { 0x0C11, "s jaekel: TimecodeSender" },
649 { 0x0C12, "s jaekel: TimecodeViewer" },
650 { 0x0C13, "s jaekel: DmxSnuffler" },
651 { 0x0C14, "s jaekel: DmxConsole" },
652 { 0x0C15, "s jaekel: TimecodeSyncAudioPlayer" },
653 { 0x0D00, "Peter Maes Technology: EtherDmxLinkDuo" },
654 { 0x0D10, "SOUNDLIGHT: USBDMX TWO" },
655 { 0x0D20, "IBH: loox" },
656 { 0x0D30, "Thorn Lighting Ltd: SensaPro eDMX" },
657 { 0x0D40, "Chromateq SARL: LED Player" },
658 { 0x0D41, "Chromateq SARL: Pro DMX" },
659 { 0x0D50, "KiboWorks: KiboNode 16 Port" },
660 { 0x0D60, "The White Rabbit Company Inc: MCM Mini Communications Module" },
661 { 0x0D70, "TMB: ProPlex IQ" },
662 { 0x0D71, "TMB: Mozart MZ 40" },
663 { 0x0D80, "Celestial Audio: EtherDMX8 Simple" },
664 { 0x0D81, "Celestial Audio: EtherDMX8 Pro" },
665 { 0x0D82, "Celestial Audio: DMX36" },
666 { 0x0D90, "Doug Fleenor Design Inc: Node4" },
667 { 0x0DA0, "Lex: AL5003 Lex" },
668 { 0x0DB0, "Revolution Display Inc: Navigator" },
669 { 0x0DC0, "Visual Productions: CueCore" },
670 { 0x0DC1, "Visual Productions: IoCore" },
671 { 0x0DD0, "LLT Lichttechnik GmbH Co KG: SMS 28A" },
672 { 0x0DE0, "Chromlech: Elidy S" },
673 { 0x0DE1, "Chromlech: Elidy S RDM" },
674 { 0x0DE2, "Chromlech: Elidy" },
675 { 0x0DE3, "Chromlech: Elidy RDM" },
676 { 0x0DF0, "Integrated System Technologies Ltd: iDrive Thor 36" },
677 { 0x0DF1, "Integrated System Technologies Ltd: iDrive White Knight 36" },
678 { 0x0DF2, "Integrated System Technologies Ltd: iDrive Force 12" },
679 { 0x0DF3, "Integrated System Technologies Ltd: iDrive Thor 16" },
680 { 0x0E00, "RayComposer R Adams: RayComposer Software" },
681 { 0x0E01, "RayComposer R Adams: RayComposer NET" },
682 { 0x0E10, "eldoLED: PowerBOX Addresser" },
683 { 0x0E20, "coolux GmbH: Pandoras Box Mediaserver" },
684 { 0x0E21, "coolux GmbH: Widget Designer" },
685 { 0x0E30, "ELETTROLAB Srl: Accendo Smart Light Power" },
686 { 0x0E40, "Philips: ColorBlaze TRX" },
687 { 0x0E70, "XiamenGreenTao Opto Electronics Co Ltd: GT DMX 2000" },
688 { 0x0E71, "XiamenGreenTao Opto Electronics Co Ltd: GT DMX 4000" },
689 { 0x0E80, "Rnet: Rnet 8" },
690 { 0x0E81, "Rnet: Rnet 6" },
691 { 0x0E82, "Rnet: Rnet 4" },
692 { 0x0E83, "Rnet: Rnet 2" },
693 { 0x0E84, "Rnet: Rnet 1" },
694 { 0x0E90, "Dmx4All: Player AN" },
695 { 0x0E91, "Dmx4All: AN Led Dimmer AN" },
696 { 0x0EA0, "EQUIPSON S A: WORK LM 5" },
697 { 0x0EA1, "EQUIPSON S A: WORK LM 3R2" },
698 { 0x0EA2, "EQUIPSON S A: WORK LM 5W" },
699 { 0x0EA3, "EQUIPSON S A: WORK DMXNET 4" },
700 { 0x0EA4, "EQUIPSON S A: WORK DMXNET 8" },
701 { 0x0EB0, "SanDevices: E680 pixel controllers" },
702 { 0x0EB1, "SanDevices: E681 pixel controllers" },
703 { 0x0EB2, "SanDevices: E682 pixel controllers" },
704 { 0x0EB3, "SanDevices: E6804 pixel controllers" },
705 { 0x0EC0, "BRAINSALT MEDIA GMBH: BSM Conductor PRO" },
706 { 0x0ED0, "ELETTROLAB Srl: Avvio 04" },
707 { 0x0ED1, "ELETTROLAB Srl: Remoto" },
708 { 0x0EE0, "PRO SOLUTIONS: DMX PRO Net 02" },
709 { 0x0EE1, "PRO SOLUTIONS: DMX PRO Net 01" },
710 { 0x0EE2, "PRO SOLUTIONS: DMX PRO Net 10" },
711 { 0x0EE3, "PRO SOLUTIONS: DMX PRO Net 11" },
712 { 0x0EE4, "PRO SOLUTIONS: DMX PRO Net 04" },
713 { 0x0EE5, "PRO SOLUTIONS: DMX PRO Net 14" },
714 { 0x0EF0, "eIdea Creative Technology: EtherShow 2" },
715 { 0x0F00, "Brink Electronics: net node 01" },
716 { 0x0F01, "Brink Electronics: net node 10" },
717 { 0x0F02, "Brink Electronics: net node 11" },
718 { 0x0F10, "deskontrol electronics: Pixel controller II" },
719 { 0x0F11, "deskontrol electronics: Pixel controller III" },
720 { 0x0F12, "deskontrol electronics: DMX controller" },
721 { 0x0F20, "Kirron light components: IDycoLED Control" },
722 { 0x0F30, "Visual Productions: B Station" },
723 { 0x0F31, "Visual Productions: F Station" },
724 { 0x0F40, "LSS GmbH: MasterPort RM" },
725 { 0x0F50, "kuwatec Inc: EtherMX" },
726 { 0x0F60, "Integrated System Technologies Ltd: iDrive PixelLED" },
727 { 0x0F61, "Integrated System Technologies Ltd: iDrive Gateway 12" },
728 { 0x0F70, "Philips Large Luminous Surfaces: Luminous Textile Panel" },
729 { 0x0F80, "VT Control: WRDM V1 0" },
730 { 0x0F90, "Panasonic Corporation: EMIT AX" },
731 { 0x0F91, "Panasonic Corporation: Projector" },
732 { 0x0FA0, "Diamante Lighting: DMNet Out" },
733 { 0x0FB0, "Glow Motion Technologies LLC: Ghostband Transmitter" },
734 { 0x0FC0, "Sigma Net: AM 8" },
735 { 0x0FD0, "DiGidot: DiGidot C 4" },
736 { 0x0FE0, "techKnow Design: techNodeTx1" },
737 { 0x0FE1, "techKnow Design: techNodeTx2" },
738 { 0x0FE2, "techKnow Design: techNodeRx1" },
739 { 0x0FE3, "techKnow Design: techNodeRx2" },
740 { 0x0FF0, "Total Light: Ether Quad" },
741 { 0x1000, "IP DMX Control: ip dmx dx 1 2" },
742 { 0x1010, "TNF Concept: RTS DMX 512" },
743 { 0x1020, "Nico Technology: Nico DMX interface 4504" },
744 { 0x1030, "Highendled Electronics Company Limited: EZK456" },
745 { 0x1031, "Highendled Electronics Company Limited: PIX101" },
746 { 0x1032, "Highendled Electronics Company Limited: FLA472" },
747 { 0x1033, "Highendled Electronics Company Limited: ULT538" },
748 { 0x1034, "Highendled Electronics Company Limited: PSU 10A" },
749 { 0x1040, "Visual Productions: Cuety" },
750 { 0x1041, "Visual Productions: QuadCore" },
751 { 0x1050, "Ackerman Computer Sciences: CFSound IV - Compact Flash Sound Player IV" },
752 { 0x1051, "Ackerman Computer Sciences: Color LCD 320x240 Terminal" },
753 { 0x1060, "Innovation LED Limited: Ilumo Zoom Spot" },
754 { 0x1061, "Innovation LED Limited: Ilumo Cyc 1" },
755 { 0x1062, "Innovation LED Limited: Ilumo ARC Gateway" },
756 { 0x1063, "Innovation LED Limited: Ether DMX 1" },
757 { 0x1064, "Innovation LED Limited: Ether DMX 2" },
758 { 0x1065, "Innovation LED Limited: Ether DMX 4" },
759 { 0x1070, "LightAct d o o: reActor" },
760 { 0x1080, "wupperTec: iMerge" },
761 { 0x1090, "Integrated System Technologies Ltd: iMune" },
762 { 0x10A0, "Advatek Lighting: PixLite 16" },
763 { 0x10A1, "Advatek Lighting: PixLite 4" },
764 { 0x10B0, "ACME: XP 1000 SZ" },
765 { 0x10C0, "AV Stumpfl GmbH: Wings AV Suite" },
766 { 0x10D0, "Lumax: LumaxNET ILDA Interface" },
767 { 0x10E0, "Zingerli Show Engineering: Katlait" },
768 { 0x10E1, "Zingerli Show Engineering: Kailua" },
769 { 0x10E2, "Zingerli Show Engineering: Kailua 2" },
770 { 0x10E3, "Zingerli Show Engineering: Pina" },
771 { 0x10E4, "Zingerli Show Engineering: Sina" },
772 { 0x10E5, "Zingerli Show Engineering: Tukra" },
773 { 0x10F0, "kuwatec Inc: DIAheart" },
774 { 0x1100, "Sigma Net: E NODE 8 1" },
775 { 0x1110, "Radig Hard Software: EDC 01" },
776 { 0x1120, "Mogees Ltd: Mogees" },
777 { 0x1130, "GuangZhou MCSWE Technologies: MCSWE 1024" },
778 { 0x1131, "GuangZhou MCSWE Technologies: MCSWE 2048" },
779 { 0x1140, "Dynamic Projection Institute Herstellungs und Vertriebs GmbH: Mirror Head" },
780 { 0x1150, "Steinigke Showtechnic GmbH: PSU 8A" },
781 { 0x1151, "Steinigke Showtechnic GmbH: Node 1" },
782 { 0x1152, "Steinigke Showtechnic GmbH: Pixel Ball" },
783 { 0x1153, "Steinigke Showtechnic GmbH: Zeitgeist PMC 16" },
784 { 0x1154, "Steinigke Showtechnic GmbH: Stage Bar 5" },
785 { 0x1155, "Steinigke Showtechnic GmbH: Stage Bar 10" },
786 { 0x1160, "BEGLEC: BT NODE28" },
787 { 0x1161, "BEGLEC: POWERMATRIX5x5 RGB Mk2" },
788 { 0x1162, "BEGLEC: BEAM MATRIX5x5 RGBW" },
789 { 0x1170, "Fineline Solutions Ltd: 16 Channel Stepper Controller" },
790 { 0x1171, "Fineline Solutions Ltd: Fineline product 1" },
791 { 0x1172, "Fineline Solutions Ltd: Fineline product 2" },
792 { 0x1173, "Fineline Solutions Ltd: Fineline product 3" },
793 { 0x1174, "Fineline Solutions Ltd: Fineline product 4" },
794 { 0x1175, "Fineline Solutions Ltd: Fineline product 5" },
795 { 0x1176, "Fineline Solutions Ltd: Fineline product 6" },
796 { 0x1177, "Fineline Solutions Ltd: Fineline product 7" },
797 { 0x1178, "Fineline Solutions Ltd: Fineline product 8" },
798 { 0x1179, "Fineline Solutions Ltd: Fineline product 9" },
799 { 0x117A, "Fineline Solutions Ltd: Fineline product 10" },
800 { 0x117B, "Fineline Solutions Ltd: Fineline product 11" },
801 { 0x117C, "Fineline Solutions Ltd: Fineline product 12" },
802 { 0x117D, "Fineline Solutions Ltd: Fineline product 13" },
803 { 0x117E, "Fineline Solutions Ltd: Fineline product 14" },
804 { 0x117F, "Fineline Solutions Ltd: Fineline product 15" },
805 { 0x1180, "Rocrail: Rocrail DMX Daylight" },
806 { 0x1190, "PXM: Px314" },
807 { 0x1191, "PXM: Px357" },
808 { 0x11A0, "OTTEC Technology GmbH: Fogmachine" },
809 { 0x11B0, "Claude Bigonoff: Interface LT Open source" },
810 { 0x11C0, "Rena Electronica B V: Bits2Power Power Data Controller" },
811 { 0x11D0, "LIGHT SKY: OemSkyHub" },
812 { 0x11E0, "HDL: DMXNode4" },
813 { 0x11F0, "Pangolin Laser Systems Inc: FB4 SE" },
814 { 0x11F1, "Pangolin Laser Systems Inc: AVR Ethernet DMX" },
815 { 0x1200, "ShenZhen HuaCanXing Technology Co Ltd: H801RT" },
816 { 0x1210, "Highendled Electronics Company Limited: FLA308" },
817 { 0x1211, "Highendled Electronics Company Limited: FLA320" },
818 { 0x1220, "Pacific Northwest National Laboratory: PNNL Connected Lighting System Testbed" },
819 { 0x1230, "Ed Keefe Design: Advanced Laser Router" },
820 { 0x1240, "Guangzhou Hongcai Stage Equipment co: Q 5 Turbo" },
821 { 0x1250, "Claude Heintz Design: LXConsole" },
822 { 0x1260, "Immersive Design Studios: Canvas" },
823 { 0x1270, "Visual Productions: LPU 1" },
824 { 0x1271, "Visual Productions: LPU 2" },
825 { 0x1272, "Visual Productions: QuadCore" },
826 { 0x1273, "Visual Productions: CueCore2" },
827 { 0x1280, "ARC Solid State Lighting Corporation: DMX Converter" },
828 { 0x1290, "Peter Meyer Project Management Adviser GmbH: PMA DMX Driver" },
829 { 0x12A0, "Robert Juliat: Dalis Reference : 860" },
830 { 0x12A1, "Robert Juliat: Merlin" },
831 { 0x12B0, "Briteq: BEAMBAR5 RGBW" },
832 { 0x12B1, "Briteq: BEAMBAR10 RGBW" },
833 { 0x12B2, "Briteq: BEAM WIZARD5x5" },
834 { 0x12B3, "Briteq: BEAM MATRIX5x5 RGBW" },
835 { 0x12C0, "JMS Pro Light: WLAN2DMX" },
836 { 0x12D0, "Interactive Technologies Inc: CueServer 2" },
837 { 0x12E0, "Strand Lighting: Single Gang Node PN 65161" },
838 { 0x12E1, "Strand Lighting: 3 Port Node PN 65163" },
839 { 0x12E2, "Strand Lighting: 3 Port DIN PCB PN 97 0387" },
840 { 0x12E3, "Strand Lighting: 3 Port Embedded PCB PN 74261" },
841 { 0x12E4, "Strand Lighting: 8 Port Node PN 65168" },
842 { 0x12E5, "Strand Lighting: 2 Port Node PN 65162" },
843 { 0x12F0, "Chauvet Professional: Epix Drive 900" },
844 { 0x12F1, "Chauvet Professional: Epix Drive 642" },
845 { 0x12F2, "Chauvet Professional: Net X" },
846 { 0x12F3, "Chauvet Professional: Nexus 4x4" },
847 { 0x12F4, "Chauvet Professional: Nexus 2x2" },
848 { 0x12F5, "Chauvet Professional: Nexus 4x1" },
849 { 0x12F6, "Chauvet Professional: Maverick Mk2" },
850 { 0x12F7, "Chauvet Professional: Maverick Mk1 Wash" },
851 { 0x12F8, "Chauvet Professional: Maverick Mkx1 Wash" },
852 { 0x12F9, "Chauvet Professional: Ovation B 565FC" },
853 { 0x12FA, "Chauvet Professional: Ovation B 2805FC" },
854 { 0x12FB, "Chauvet Professional: VIP Drive 43s" },
855 { 0x1300, "HPL Company: Delta 8 Node" },
856 { 0x1310, "Steinigke Showtechnic GmbH: PSU 4A" },
857 { 0x1320, "Lumenpulse Lighting Inc: Lumencove XT Ethernet Enabled" },
858 { 0x1321, "Lumenpulse Lighting Inc: CBOX Ethernet" },
859 { 0x1330, "deskontrol electronics: deskontroller" },
860 { 0x1331, "deskontrol electronics: deskontroller pro" },
861 { 0x1340, "Seiko Epson Corporation: Projector" },
862 { 0x1350, "Image Engineering: Beam Composer" },
863 { 0x1360, "Arnold Richter Cine Technik GmbH: ARRI" },
864 { 0x1370, "NISCON Inc: RAYNOK Motion Control System" },
865 { 0x1380, "Immersive Design Studios inc: Canvas" },
866 { 0x1390, "ADJ Products: Flash Kling Panel" },
867 { 0x13A0, "Callegenix LLC: DMX Commander" },
868 { 0x13A1, "Callegenix LLC: Pixel Driver" },
869 { 0x13B0, "ARC Solid State Lighting Corporation: Constant Voltage Driver" },
870 { 0x13B1, "ARC Solid State Lighting Corporation: LF75 Flood Light" },
871 { 0x13B2, "ARC Solid State Lighting Corporation: LF150 Flood Light" },
872 { 0x13C0, "Licht Team: LT1" },
873 { 0x13C1, "SGH: Martin" },
874 { 0x13C2, "ADJ Products: Airstream DMX Bridge" },
875 { 0x13C3, "DMG Technologies DMG Lumiere: Universal battery box" },
876 { 0x13C4, "SWGroup: Easydim" },
877 { 0x13C5, "GLP German Light Products GmbH: GT 1" },
878 { 0x13C6, "ADL Electronics Ltd: ADL DMX NetGate" },
879 { 0x13C7, "ADL Electronics Ltd: ADL DMX NetGate +" },
880 { 0x13C8, "ADL Electronics Ltd: ADL DMX NetGate RDM" },
881 { 0x13C9, "ADL Electronics Ltd: ADL DMX NetGate+ RDM" },
882 { 0x13CA, "ADL Electronics Ltd: ADL DMX NetGate DIN" },
883 { 0x13CB, "ADL Electronics Ltd: ADL DMX NetGate ALARM" },
884 { 0x13CC, "ADL Electronics Ltd: ADL DC PU 24" },
885 { 0x13CD, "ADL Electronics Ltd: ADL DC PU 24C" },
886 { 0x13CE, "ADL Electronics Ltd: ADL DC PU 6" },
887 { 0x13CF, "ADL Electronics Ltd: ADL DC WSO operator workstation" },
888 { 0x13D0, "ADL Electronics Ltd: ADL DC IKB" },
889 { 0x13D1, "ADL Electronics Ltd: ADL DimmerCabinet CPU" },
890 { 0x13D2, "ADL Electronics Ltd: ADL Dimmer 220 12d x" },
891 { 0x13D3, "ADL Electronics Ltd: ADL MediaPlayer" },
892 { 0x13D4, "Opito Labs GmbH: Opito Converter Toolkit" },
893 { 0x13D5, "Opito Labs GmbH: Opito Video Controller" },
894 { 0x13D6, "Swisson AG: XND 4" },
895 { 0x13D7, "ROF Electronics: Multi4verse" },
896 { 0x13D8, "d3 Technologies Ltd: Pro Plus range" },
897 { 0x13D9, "Integrated System Technologies Ltd: Sensor Hub" },
898 { 0x13DA, "LKE Lasershow: H2O Motion" },
899 { 0x13DB, "LKE Lasershow: eXtreme Motion Jet" },
900 { 0x13DC, "LeMaitre Ltd: G300 Smart" },
901 { 0x13DD, "Company NA: DigiNet Manager" },
902 { 0x13DE, "TMB: ProPlex IQ Manager" },
903 { 0x13DF, "Exalux: Connect One" },
904 { 0x13E0, "MTH: MED LDMX512" },
905 { 0x13E1, "MTH: MED LDMX512HUB" },
906 { 0x13E2, "AC Lasers: SuperNova" },
907 { 0x13E3, "AC Lasers: W Lux" },
908 { 0x13F0, "Batmink Ltd: OEMVISAGEVISIONMAPPER" },
909 { 0x13F1, "LEDTUNE COM: ABOX 01" },
910 { 0x13F2, "Vertigo ApS: BlackLED" },
911 { 0x13F3, "Ingham Designs LLC: Hunt Node" },
912 { 0x13F4, "GuangZhou LiDang Technology Co Ltd: LD NET 1024" },
913 { 0x13F5, "GuangZhou LiDang Technology Co Ltd: LD NET 2028" },
914 { 0x13F6, "RGBlink: Venus X7" },
915 { 0x13F7, "RGBlink: G 3 Net" },
916 { 0x13F8, "Imimot Kft: Mitti" },
917 { 0x13F9, "MCSWE Technologies INC: MCSWE LUNA 8" },
918 { 0x13FA, "MCSWE Technologies INC: MCSWE LUNA 16" },
919 { 0x13FB, "Digital Sputnik Lighting: DSL1" },
920 { 0x13FC, "SRS Light Design: ANGS4" },
921 { 0x13FD, "Chauvet DJ: DMX AN" },
922 { 0x13FE, "Rosstech Signals: DMXBridge" },
923 { 0x13FF, "LSC Lighting Systems Aust Pty Ltd: Mantra Lite" },
924 { 0x1400, "DMT: Pixelstrip controller MKII" },
925 { 0x1401, "Elation Lighting: TVL Panel DW" },
926 { 0x1402, "RGBlink: Venus X2" },
927 { 0x1403, "Elation Lighting: TVL Panel DW" },
928 { 0x1404, "Elation Lighting: eNode4" },
929 { 0x1405, "Elation Lighting: eNode8 Pro" },
930 { 0x1406, "Exalux: Connect Plus" },
931 { 0x1407, "Foshan YiFeng Electric Industrial Co ltd: CA EN28S" },
932 { 0x1408, "Foshan YiFeng Electric Industrial Co ltd: CA AN28" },
933 { 0x1409, "Foshan YiFeng Electric Industrial Co ltd: CA EN28" },
934 { 0x140A, "Foshan YiFeng Electric Industrial Co ltd: CA AN08" },
935 { 0x140B, "Foshan YiFeng Electric Industrial Co ltd: CA AN04" },
936 { 0x140C, "Soundlight: Soundlight 4port node" },
937 { 0x2000, "Artistic Licence Engineering Ltd: AL5001" },
938 { 0x2001, "Artistic Licence Engineering Ltd: artLynx duo" },
939 { 0x2002, "Artistic Licence Engineering Ltd: artLynx uno" },
940 { 0x2010, "Artistic Licence Engineering Ltd: Data Lynx OP" },
941 { 0x2020, "Artistic Licence Engineering Ltd: Rail Lynx OP" },
942 { 0x2030, "Artistic Licence Engineering Ltd: Down Lynx G4" },
943 { 0x2040, "Artistic Licence Engineering Ltd: Net Lynx OP G4" },
944 { 0x2050, "Artistic Licence Engineering Ltd: AL5002" },
945 { 0x2060, "Artistic Licence Engineering Ltd: Data Lynx IP" },
946 { 0x2070, "Artistic Licence Engineering Ltd: Cata Lynx IP G4" },
947 { 0x2075, "Artistic Licence Engineering Ltd: Cata Lynx OP G4" },
948 { 0x2080, "Artistic Licence Engineering Ltd: Rail Lynx IP" },
949 { 0x2090, "Artistic Licence Engineering Ltd: Up Lynx G4" },
950 { 0x20A0, "Artistic Licence Engineering Ltd: Net Lynx IP G4" },
951 { 0x20B0, "Artistic Licence Engineering Ltd: Art Play" },
952 { 0x20D0, "Artistic Licence Engineering Ltd: Art Demux" },
953 { 0x20E0, "Artistic Licence Engineering Ltd: Art Relay" },
954 { 0x20F0, "Artistic Licence Engineering Ltd: Art Pipe" },
955 { 0x2100, "Artistic Licence Engineering Ltd: Art Media" },
956 { 0x2110, "Artistic Licence Engineering Ltd: Art Boot" },
957 { 0x2120, "Artistic Licence Engineering Ltd: Art Lynx OP" },
958 { 0x2130, "Artistic Licence Engineering Ltd: Art Lynx IP" },
959 { 0x2140, "Artistic Licence Engineering Ltd: Ether Lynx II" },
960 { 0x2150, "Artistic Licence Engineering Ltd: Multichrome E2" },
961 { 0x2160, "Artistic Licence Engineering Ltd: Art Monitor Base" },
962 { 0x2170, "Artistic Licence Engineering Ltd: Multichrome E1" },
963 { 0x2200, "Artistic Licence Engineering Ltd: Micro Scope 5" },
964 { 0x2210, "Artistic Licence Engineering Ltd: Two Play" },
965 { 0x2211, "Artistic Licence Engineering Ltd: Two Play XT" },
966 { 0x2212, "Artistic Licence Engineering Ltd: Multi Play" },
967 { 0x2220, "Artistic Licence Engineering Ltd: Diamond" },
968 { 0x2221, "Artistic Licence Engineering Ltd: Quartz" },
969 { 0x2222, "Artistic Licence Engineering Ltd: Zircon" },
970 { 0x2223, "Artistic Licence Engineering Ltd: Graphite" },
971 { 0x2224, "Artistic Licence Engineering Ltd: Opal" },
972 { 0x2225, "Artistic Licence Engineering Ltd: Mica" },
973 { 0x2230, "Artistic Licence Engineering Ltd: eSense" },
974 { 0x2231, "Artistic Licence Engineering Ltd: eSense XT" },
975 { 0x2240, "Artistic Licence Engineering Ltd: dVnet" },
976 { 0x2241, "Artistic Licence Engineering Ltd: versaSplit EthB" },
977 { 0x2242, "Artistic Licence Engineering Ltd: versaSplit EthA" },
978 { 0x2250, "Artistic Licence Engineering Ltd: AL5003" },
979 { 0x2258, "Artistic Licence Engineering Ltd: daliGate uno" },
980 { 0x2259, "Artistic Licence Engineering Ltd: daliGate duo" },
981 { 0x225A, "Artistic Licence Engineering Ltd: daliGate quad" },
982 { 0x2260, "Artistic Licence Engineering Ltd: lightJuice CV4" },
983 { 0x2261, "Artistic Licence Engineering Ltd: lightJuice DC24" },
984 { 0x2262, "Artistic Licence Engineering Ltd: lightJuice CC2" },
985 { 0x2263, "Artistic Licence Engineering Ltd: lightJuice OL1" },
986 { 0x2264, "Artistic Licence Engineering Ltd: lightJuice PX1" },
987 { 0x2265, "Artistic Licence Engineering Ltd: lightJuice DALI" },
988 { 0x2266, "Artistic Licence Engineering Ltd: lightJuice Dmx" },
989 { 0x2267, "Artistic Licence Engineering Ltd: artLynx quad" },
990 { 0x2268, "Artistic Licence Engineering Ltd: dataLynx II" },
991 { 0x2269, "Singularity (UK) Ltd: DMX Workshop" },
992 { 0x226A, "Singularity (UK) Ltd: ACT" },
993 { 0x226B, "Artistic Licence Engineering Ltd: Colour Tramp Input" },
994 { 0x226C, "Singularity (UK) Ltd: DmxToolBox" },
995 { 0x226D, "Artistic Licence Engineering Ltd: pixiLynx 4x4" },
996 { 0x226E, "Artistic Licence Engineering Ltd: artLynx rj45" },
997 { 0x226F, "Artistic Licence Engineering Ltd: netLynx quad" },
998 { 0x2270, "Artistic Licence Engineering Ltd: downLynx quad" },
999 { 0x2271, "Artistic Licence Engineering Ltd: rackLynxOcto" },
1000 { 0x2272, "Artistic Licence Engineering Ltd: oemGate quad" },
1001 { 0x2801, "Gearbox Solutions: LC1" },
1002 { 0x2802, "Licht en Geluid Team: DMXDisplay" },
1003 { 0x2803, "Lycht: Lycht Hub" },
1004 { 0x2804, "Elation Lighting: TVL Softlight DW" },
1005 { 0x2805, "ELETTROLAB Srl: Avvio Mini WiFi" },
1006 { 0x2806, "CLAYPAKY: SUPERSHARPY²" },
1007 { 0x2807, "JMS Pro Light: AIR2DMX" },
1008 { 0x2808, "Steinigke Showtechnic GmbH: Node 8 MK2" },
1009 { 0x2809, "W A Benjamin Electric Co: Integrity RDM Conformance Test" },
1010 { 0x280A, "DMX4ALL GmbH: Wireless DMX4ALL Device" },
1011 { 0x280B, "DMX4ALL GmbH: DMX4ALL PixxDevice" },
1012 { 0x280C, "DMX4ALL GmbH: DMX4ALL PlayerDevice" },
1013 { 0x280D, "DMX4ALL GmbH: DMX4ALL MuxDevice" },
1014 { 0x280E, "DMX4ALL GmbH: DMX4ALL WirelessDevice" },
1015 { 0x280F, "DMX4ALL GmbH: DMX4ALL WirelessPixxDevice" },
1016 { 0x2810, "Steinigke Showtechnic GmbH: LED TMH X25 XL" },
1017 { 0x2811, "Elation Lighting: eNode 2POE" },
1018 { 0x2812, "Elation Lighting: TVL Panel DW" },
1019 { 0x2813, "BLS: c21550820" },
1020 { 0x2814, "Elation Lighting: TVL Softlight DW" },
1021 { 0x2815, "ImageCue LLC: ImageCue NEV" },
1022 { 0x2816, "NightStarry Electronics Co LTD: Net Dmx" },
1023 { 0x2817, "NightStarry Electronics Co LTD: Net Node:32" },
1024 { 0x2818, "NightStarry Electronics Co LTD: Net Node:16" },
1025 { 0x2819, "NightStarry Electronics Co LTD: Net Node:8" },
1026 { 0x281A, "NightStarry Electronics Co LTD: Net Node:4" },
1027 { 0x281B, "Showtec: Pixel Bubble 80 MKII" },
1028 { 0x281C, "Colordreamer Technology Co Limited: Titan A16" },
1029 { 0x281D, "Showtec: White PIX" },
1030 { 0x281E, "Showtec: Node 1" },
1031 { 0x281F, "DMT: Pixel Tile P25 MKII" },
1032 { 0x2820, "DMT: PixelBatten P25 MKII" },
1033 { 0x2821, "Showtec: Phantom 300 LED Matrix" },
1034 { 0x2822, "Infinity: iW 1915 Pixel" },
1035 { 0x2823, "Infinity: iS 400" },
1036 { 0x2824, "Infinity: iPW 150 LED Sunpanel" },
1037 { 0x2825, "Infinity: Chimp 300" },
1038 { 0x2826, "Infinity: Chimp 100" },
1039 { 0x2827, "Infinity: iM 2515" },
1040 { 0x2828, "Resolume: Arena" },
1041 { 0x2829, "LED concept: LED Pixel Director 4" },
1042 { 0x282A, "LED concept: LED Pixel Director 8" },
1043 { 0x282B, "DMX4ALL GmbH: DMX4ALL DMXDevice" },
1044 { 0x282C, "kuwatec Inc: Ex8" },
1045 { 0x282D, "DMX4ALL GmbH: DMX4ALL SoftwareDevice" },
1046 { 0x282E, "XING YE DIAN ZI: NS NET ONE" },
1047 { 0x282F, "XING YE DIAN ZI: NS NET03" },
1048 { 0x2830, "XING YE DIAN ZI: NS NET02" },
1049 { 0x2831, "XING YE DIAN ZI: NS NET01" },
1050 { 0x2832, "ExMachina: Winch Dynamic" },
1051 { 0x2833, "Schnick Schnack Systems GmbH: DMX Pixel Router" },
1052 { 0x2834, "Schnick Schnack Systems GmbH: DPB Pixel Router" },
1053 { 0x2835, "Stage Eyes: Tri Engine" },
1054 { 0x2836, "Colordreamer Technology Co Limited: Titan AS4" },
1055 { 0x2837, "Colordreamer Technology Co Limited: Titan A2" },
1056 { 0x2838, "Colordreamer Technology Co Limited: Titan A4" },
1057 { 0x2839, "Colordreamer Technology Co Limited: Titan A8" },
1058 { 0x283A, "eIdea Creative Technology: AuNode" },
1059 { 0x283B, "LIGHTSKY: IP3000" },
1060 { 0x283C, "colordreamer: Colordreamer Update Boot" },
1061 { 0x283D, "Digital Sputnik Lighting Oü: DS Control DMX" },
1062 { 0x283E, "Colordreamer Technology Co Limited: Titan A8 Pro" },
1063 { 0x283F, "LED concept: LED PIXEL DIRECTOR 24" },
1064 { 0x2840, "LED concept: LED PIXEL DIRECTOR 16" },
1065 { 0x2841, "LED concept: LED PIXEL DIRECTOR 12" },
1066 { 0x2842, "HMB TEC GmbH: CC512 Pix" },
1067 { 0x2843, "ROF Electronics: Big Foot IV" },
1068 { 0x2844, "ROF Electronics: Big Foot II" },
1069 { 0x2845, "ROF Electronics: TNT" },
1070 { 0x2846, "ROF Electronics: Multi8verse" },
1071 { 0x2847, "ROF Electronics: Multi6verse" },
1072 { 0x2848, "ROF Electronics: Multi2verse" },
1073 { 0x2849, "AC3 Studio: Kinetic Stepper Interface" },
1074 { 0x284A, "AYRTON: AyrtonFixtureNode" },
1075 { 0x284B, "DMLITE: SOLEIL" },
1076 { 0x284C, "M Light: Mini Display 16" },
1077 { 0x284D, "LEDsistem Technology LTD: Cloud Drive" },
1078 { 0x284E, "ROBERT JULIAT: SpotME" },
1079 { 0x284F, "ROBERT JULIAT: ALICE 1469" },
1080 { 0x2850, "ROBERT JULIAT: OZ 1169" },
1081 { 0x2851, "ROBERT JULIAT: DALIS 862" },
1082 { 0x2852, "ROBERT JULIAT: DALIS 861" },
1083 { 0x2853, "Chauvet Professional: Epix Drive 2000 IP" },
1084 { 0x2854, "LIGHTSKY: IP2000" },
1085 { 0x2855, "SmoothLUX B V: SmoothDMX 128" },
1086 { 0x2856, "SmoothLUX B V: SmoothDMX 512" },
1087 { 0x2857, "Big Dipper Laser Science and Technology Co Ltd: BP 440BSW" },
1088 { 0x2858, "Eurolumen shanghai Lighting Co LTD: s100" },
1089 { 0x2859, "Total Light: Etherstrip 8" },
1090 { 0x285A, "Total Light: Ether Dual A" },
1091 { 0x285B, "Total Light: Ether Dual B" },
1092 { 0x285C, "Infinity: iW 1240" },
1093 { 0x285D, "Infinity: iW 740" },
1094 { 0x285E, "Infinity: iW 340" },
1095 { 0x285F, "Digital Sputnik Lighting Oü: DSL3" },
1096 { 0x2860, "Digital Sputnik Lighting Oü: DSL2" },
1097 { 0x2861, "Visual Productions: IoCore2" },
1098 { 0x2862, "Visual Productions: TimeCore" },
1099 { 0x2863, "Bright Sound: Bright Mapper" },
1100 { 0x2864, "atit no: NorseDMX Wi Fi Node II" },
1101 { 0x2865, "Tian Hai BeiFang: AMX" },
1102 { 0x2866, "Starlight: XNET 8" },
1103 { 0x2867, "Starlight: XNET 4" },
1104 { 0x2868, "Starlight: XNET 2" },
1105 { 0x2869, "Xian NovaStar Tech Co Ltd: NOVA DMX11" },
1106 { 0x286A, "LED concept: SWITCHMAN 2 1" },
1107 { 0x286B, "LED concept: SWITCHMAN 4 1" },
1108 { 0x286C, "LED concept: SWITCHMAN 0 4" },
1109 { 0x286D, "LED concept: SWITCHMAN 3 1" },
1110 { 0x286E, "LED concept: SWITCHMAN 1 1" },
1111 { 0x286F, "LED concept: SWITCHMAN 8" },
1112 { 0x2870, "LED concept: SWITCHMAN 2" },
1113 { 0x2871, "LED concept: SWITCHMAN 2a" },
1114 { 0x2872, "LED concept: SWITCHMAN 1" },
1115 { 0x2873, "LED concept: SWITCHMAN 4" },
1116 { 0x2874, "PXM: Px724" },
1117 { 0x2875, "Showtec: Pixel Tube Set 96" },
1118 { 0x2876, "Showtec: NET 8 3" },
1119 { 0x2877, "Showtec: NET 8 5" },
1120 { 0x2878, "Showtec: NET 8 3a" },
1121 { 0x2879, "Showtec: RT 200" },
1122 { 0x287A, "OpenLX SP Ltd: EasyDMX" },
1123 { 0x287B, "Signblazer Ltd: SopraText" },
1124 { 0x287C, "Sam light: Forte 150" },
1125 { 0x287D, "Yarilo Pro: LANdmx4" },
1126 { 0x287E, "Key Delfin: WI Net 1" },
1127 { 0x287F, "Key Delfin: RJ Net 1" },
1128 { 0x2880, "Illum Technology LLC: Xstream" },
1129 { 0x2881, "Jjj: Bou" },
1130 { 0x2882, "GIP Innovation Tools: LIGEO Gateway" },
1131 { 0x2883, "EastSun Technology CO Ltd: NET4D01" },
1132 { 0x2884, "EastSun Technology CO Ltd: NET1D01" },
1133 { 0x2885, "Amptown System Company: ControLite VIGOR DINRail Switch" },
1134 { 0x2886, "Elation Professional: 4 Cast DMX Bridge" },
1135 { 0x2887, "WLPS: Remote FollowSpot" },
1136 { 0x2888, "ADDiCTiON bOx: FrEEdOsE WLaN" },
1137 { 0x2889, "ADDiCTiON bOx: FuLLdOsE 8 Port" },
1138 { 0x288A, "ADDiCTiON bOx: TrUssdOsE 4 Port" },
1139 { 0x288B, "ADDiCTiON bOx: HaLFdOsE 4 Port" },
1140 { 0x288C, "ADDiCTiON bOx: HaLFdOsE 8 Port" },
1141 { 0x288D, "Kontrolcla Show Control S L: Rdm assistant" },
1142 { 0x288E, "Integrated System Technologies Limited: Thor 8" },
1143 { 0x288F, "Integrated System Technologies Limited: Thor8" },
1144 { 0x2890, "Yarilo Pro: LANdmx2" },
1145 { 0x2891, "HMB TEC GmbH: RR512" },
1146 { 0x2892, "HMB TEC GmbH: CC512" },
1147 { 0x2893, "ElectroTAS: TH 8U" },
1148 { 0x2894, "ElectroTAS: TH 6U" },
1149 { 0x2895, "electroTAS: TH 4U" },
1150 { 0x2896, "ElectroTAS: TH 2U" },
1151 { 0x2897, "ElectroTAS: TH 1U" },
1152 { 0x2898, "showjockey: SJ DMX E16" },
1153 { 0x2899, "Qdot Lighting Limited: QNET 16W" },
1154 { 0x289A, "Qdot Lighting Limited: QNET 8W" },
1155 { 0x289B, "Qdot Lighting Limited: QNET 2048" },
1156 { 0x289C, "Qdot Lighting Limited: QNET 1024" },
1157 { 0x289D, "Chauvet Professional: NET X 2 0" },
1158 { 0x289E, "Elation Lighting: eNode 2 POE" },
1159 { 0x289F, "LEON: LEONGRECO" },
1160 { 0x28A0, "ElectroTAS: TH AIO" },
1161 { 0x28A1, "AK LIGHT: DMX 4" },
1162 { 0x28A2, "LIGHTSKY: DMX BOX" },
1163 { 0x28A3, "CLAYPAKY: SCENIUS UNICO" },
1164 { 0x28A4, "AB DMX: A512 node" },
1165 { 0x28A5, "NuDelta Digital: LogiCue" },
1166 { 0x28A6, "iColor Led Shenzhen Co Ltd: SC1712" },
1167 { 0x28A7, "iColor Led Shenzhen Co Ltd: SC1711" },
1168 { 0x28A8, "Elation Professional: Show Designer" },
1169 { 0x28A9, "UNT: SLNS" },
1170 { 0x28AA, "X Laser: Mercury" },
1171 { 0x28AB, "LuxCena Iumina: LuxCena WiFi DMX" },
1172 { 0x28AC, "BRITEQ: BT NODE24" },
1173 { 0x28AD, "TLS INTERNATIONAL: TLS DIGITAL PIXEL CONTROLLER" },
1174 { 0x28AE, "Apollo Security: ENI 110" },
1175 { 0x28AF, "Showtacle Ltd: SPI Matrix" },
1176 { 0x28B0, "Showtacle Ltd: LEC3" },
1177 { 0x28B1, "Argent Data Systems Inc: Hyperion Hoop" },
1178 { 0x28B2, "EQUIPSON S A: LS Core" },
1179 { 0x28B3, "CLAYPAKY: AXCOR SPOT HPE 300" },
1180 { 0x28B4, "EQUIPSON S A: WORK LS 1" },
1181 { 0x28B5, "CLAYPAKY: AXCOR WASH 300" },
1182 { 0x28B6, "CLAYPAKY: AXCOR BEAM 300" },
1183 { 0x28B7, "CLAYPAKY: ALEDA K EYE K20 HCR" },
1184 { 0x28B8, "CLAYPAKY: ALEDA K EYE K10 HCR" },
1185 { 0x28B9, "CLAYPAKY: AXCOR PROFILE 900 3K" },
1186 { 0x28BA, "CLAYPAKY: AXCOR PROFILE 900 6K" },
1187 { 0x28BB, "CLAYPAKY: AXCOR PROFILE 900 8K" },
1188 { 0x28BC, "LIGHTSKY: LED0760" },
1189 { 0x28BD, "LIGHTSKY: LED0960" },
1190 { 0x28BE, "Elation Lighting: Pixel Driver 4000" },
1191 { 0x28BF, "Voidcorp: VirtualPanel" },
1192 { 0x28C0, "AUTOLUX Handels und ProduktionsgmbH: ALX MEDIAWALL" },
1193 { 0x28C1, "Swisson AG: XND 8" },
1194 { 0x28C2, "LumenRadio: ARRI Skylink Base Station" },
1195 { 0x28C3, "Cameo: EVOS W7" },
1196 { 0x28C4, "Cameo: EVOS S3" },
1197 { 0x28C5, "Infinity: TF 300 Fresnel" },
1198 { 0x28C6, "Infinity: TS 200C7 Profile" },
1199 { 0x28C7, "Infinity: TS 300 Profile" },
1200 { 0x28C8, "Infinity: TS 150 Profile" },
1201 { 0x28C9, "Illum Technology LLC: XStream" },
1202 { 0x28CA, "Biamino and Figli S p A: BIALEDA01" },
1203 { 0x28CB, "Shenzhen Yuming Vision Technology Co Ltd: YM RX803" },
1204 { 0x28CC, "ADJ Products: Par Z100 5K" },
1205 { 0x28CD, "ADJ Products: Par Z100 3K" },
1206 { 0x28CE, "ADJ Products: VIZI CMY 300" },
1207 { 0x28CF, "Stage Team: MagicNode" },
1208 { 0x28D0, "GLP German Light Products GmbH: Impression S350" },
1209 { 0x28D1, "CLAYPAKY: K EYE S10 HCR" },
1210 { 0x28D2, "CLAYPAKY: K EYE S20 HCR" },
1211 { 0x28D3, "Steinigke Showtechnic GmbH: Sunbar 10" },
1212 { 0x28D4, "ERAL s r l: Paseo Pixel Box Controller" },
1213 { 0x28D5, "Savant Systems LLC: SmartDMX" },
1214 { 0x28D6, "BOOQlight BV: WiFi DMX RDM Module" },
1215 { 0x28D7, "Dynamic Projection Institute Herstellungs und Vertriebs GmbH: JCD" },
1216 { 0x28D8, "Conceptinectics Technologies and Consultancy Limited: CTC NEXT" },
1217 { 0x28D9, "Conceptinetics Technologies and Consultancy Limited: CTC MUFIC" },
1218 { 0x28DA, "Elation Lighting: Eclipse" },
1219 { 0x28DB, "Jumptronic GmbH: ProtocolController" },
1220 { 0x28DC, "Acme: Acme LED" },
1221 { 0x28DD, "Acme: Acme LS" },
1222 { 0x28DE, "Acme: Acme MP" },
1223 { 0x28DF, "Acme: Acme CM" },
1224 { 0x28E0, "Acme: Acme TS" },
1225 { 0x28E1, "Acme: Acme XA" },
1226 { 0x28E2, "Acme: Acme XP" },
1227 { 0x28E3, "Acme: CM S6" },
1228 { 0x28E4, "Acme: XP 1000FS" },
1229 { 0x28E5, "Acme: XP 1000SZF" },
1230 { 0x28E6, "Acme: XP 5000NF" },
1231 { 0x28E7, "Acme: XP 5000WZ" },
1232 { 0x28E8, "Acme: TS 150M WW CW" },
1233 { 0x28E9, "Acme: TS 150 WW CW" },
1234 { 0x28EA, "Acme: TS 300 WW CW" },
1235 { 0x28EB, "Acme: TS 300 WW C" },
1236 { 0x28EC, "Acme: TS 300M WW CW" },
1237 { 0x28ED, "Acme: LED MTX36 HEX" },
1238 { 0x28EE, "Acme: LED MTX36" },
1239 { 0x28EF, "Acme: LP F2000" },
1240 { 0x28F0, "Acme: LP F1000" },
1241 { 0x28F1, "Acme: XP 1000WZ" },
1242 { 0x28F2, "Music Lights S R L: DIAMOND37" },
1243 { 0x28F3, "Music Lights S R L: STARK1000" },
1244 { 0x28F4, "Steinigke Showtechnic GmbH: EYE 37" },
1245 { 0x28F5, "Acme: TB 1230QW" },
1246 { 0x28F6, "ABLELITE INTERNATIONAL: EVA3715Z" },
1247 { 0x28F7, "ADJ PRODUCTS: VIZI WASH PRO" },
1248 { 0x28F8, "Vsevolod Kozlov: Show Box" },
1249 { 0x28F9, "Tom Bland: Q SYS Plugin" },
1250 { 0x28FA, "Kinescope: Bridge" },
1251 { 0x28FB, "SLS: atmani" },
1252 { 0x28FC, "Daniel Large: STATIS" },
1253 { 0x28FD, "Douglas Heriot: DMX Assistant" },
1254 { 0x28FE, "Douglas Heriot: Diode Control" },
1255 { 0x28FF, "ADJ PRODUCTS: ENCORE BURST 200b" },
1256 { 0x2900, "Integrated System Technologies Ltd: Quattro CVL" },
1257 { 0x2901, "Integrated System Technologies Ltd: iDrive Thor 4" },
1258 { 0x2902, "Jata Tech Ltd: FX Engine" },
1259 { 0x2903, "Integrated System Technologies Ltd: iDrive White knight 24" },
1260 { 0x2904, "Integrated System Technologies Ltd: iDrive White knight 48" },
1261 { 0x2905, "X Laser: Skywriter HPX M 20" },
1262 { 0x2906, "X Laser: Skywriter HPX M 10" },
1263 { 0x2907, "X Laser: Skywriter HPX M 5" },
1264 { 0x2908, "margau: dmxnet" },
1265 { 0x2909, "feno GmbH: fe stile 1312 LED Matrix" },
1266 { 0x290A, "Steinigke Showtechnic GmbH: Stage Pixel Bar 10 WW" },
1267 { 0x290B, "ADJ Products: Encore Burst 200" },
1268 { 0x290C, "Key Lab: BlackTrax Extender" },
1269 { 0x290D, "DJSI SCHINSTAD: Northern Star Polaris v1 5" },
1270 { 0x290E, "ADB STAGELIGHT: LEXPERT FRESNEL M WW" },
1271 { 0x290F, "ADB STAGELIGHT: LEXPERT FRESNEL M CW" },
1272 { 0x2910, "ADB STAGELIGHT: LEXPERT PROFILE L WW" },
1273 { 0x2911, "ADB STAGELIGHT: LEXPERT PROFILE L CW" },
1274 { 0x2912, "ADB STAGELIGHT: LEXPERT PROFILE L" },
1275 { 0x2913, "ChengDuChenyuDianZiKeji: DMX2048CH PRO1" },
1276 { 0x2914, "ChengDuChenyuDianZiKeji: DMX2048CH PRO2" },
1277 { 0x2915, "MLBA Team: Stagehand Live" },
1278 { 0x2916, "Acme: XA 1000F" },
1279 { 0x2917, "xuri: xur" },
1280 { 0x2918, "Infinity: FURION S601 PROFILE" },
1281 { 0x2919, "Infinity: FURION S401 SPOT" },
1282 { 0x291A, "Infinity: FURION S201 SPOT" },
1283 { 0x291B, "Steinigke Showtechnic GmbH: DMX AIO" },
1284 { 0x291C, "HYCL: DMX_SYNC" },
1285 { 0x291D, "HYCL: DMX_Player_32" },
1286 { 0x291E, "HYCL: DMX_Player_16" },
1287 { 0x291F, "HYCL: DMX_Player_8" },
1288 { 0x2920, "HYCL: DMX_Player_1" },
1289 { 0x2921, "HYCL: DMX_Player_4" },
1290 { 0x2922, "ainetauto: LJ" },
1291 { 0x2923, "ADJ Products: Par Z100 RGBW" },
1292 { 0x2924, "LEDBLADE: Creon HD" },
1293 { 0x2925, "Guangzhou Chaoran Computer Co Ltd: EtherNode8" },
1294 { 0x2926, "German Light Products GmbH: impression E350" },
1295 { 0x2927, "Arrigo Lighting: AL A4RGB" },
1296 { 0x2928, "Rosstech Signals: Smart16" },
1297 { 0x2929, "Arrigo Lighting: Arrigo Lighting Liberty 22" },
1298 { 0x292A, "Matthias Bauch Software: LiveLight" },
1299 { 0x292B, "JB Lighting Lichtanlagentechnik GmbH: JB LightingFixtureNode" },
1300 { 0x292C, "Bandhaus Straubing eV: Wireless2DMX Bridge" },
1301 { 0x292D, "ETC Audiovisuel: OnlyView" },
1302 { 0x292E, "RGBlink: TTWO" },
1303 { 0x292F, "RGBlink: TONE" },
1304 { 0x2930, "RGBlink: FLEX 256" },
1305 { 0x2931, "RGBlink: FLEX 128" },
1306 { 0x2932, "RGBlink: FLEX 64" },
1307 { 0x2933, "RGBlink: FLEX 32" },
1308 { 0x2934, "RGBlink: FLEX 16" },
1309 { 0x2935, "RGBlink: FLEX 8" },
1310 { 0x2936, "RGBlink: FLEX RS1" },
1311 { 0x2937, "RGBlink: FLEX 4" },
1312 { 0x2938, "ADJ Products: Flash Kling Strip" },
1313 { 0x2939, "ADJ Products: Flash Kling Batten" },
1314 { 0x293A, "Elation Lighting: EZ Kling" },
1315 { 0x293B, "Qdot Lighting Limited: QNET APP" },
1316 { 0x293C, "X Laser: Mobile Beat Mercury" },
1317 { 0x293D, "X Laser: Skywriter HPX M_2" },
1318 { 0x293E, "dbnetsoft: VirtualDmxLib" },
1319 { 0x293F, "JCSKJ: JC_Controller_X" },
1320 { 0x2940, "ADB STAGELIGHT: KLEMANTIS AS500" },
1321 { 0x2941, "ADB STAGELIGHT: KLEMANTIS AS1000" },
1322 { 0x2942, "CLAYPAKY: AXCOR SPOT 400 HC" },
1323 { 0x2943, "CLAYPAKY: AXCOR SPOT 400" },
1324 { 0x2944, "CLAYPAKY: AXCOR PROFILE 400 HC" },
1325 { 0x2945, "CLAYPAKY: AXCOR PROFILE 400" },
1326 { 0x2946, "CLAYPAKY: AXCOR PROFILE 600 HC" },
1327 { 0x2947, "CLAYPAKY: AXCOR PROFILE 600" },
1328 { 0x2948, "Luminxa: Luminxa1" },
1329 { 0x2949, "Luminxa: Luminxa2" },
1330 { 0x294A, "audioligh: HD217 1" },
1331 { 0x294B, "audioligh: HD217 2" },
1332 { 0x294C, "KWMATIK: PROMYK v1 0" },
1333 { 0x294D, "Rnet Lighting technology limited: R NET DMX Rack" },
1334 { 0x294E, "Astera LED Technology GmbH: 10way Titan Powersupply" },
1335 { 0x294F, "Buehler electronic GmbH LSdigital: DMX Light Interface" },
1336 { 0x2950, "atomica peru: arri skypanel" },
1337 { 0x2951, "GIP Innovation Tools GmbH: LIGEO SL WiFi" },
1338 { 0x2952, "Rethink DMX: node1" },
1339 { 0x2953, "Elation Lighting: CUEPIX PANEL" },
1340 { 0x2954, "Elation Lighting: SIXBAR 1000" },
1341 { 0x2955, "Elation Lighting: SEVEN BATTEN 72" },
1342 { 0x2956, "Hera Led: Hera Ether Node4" },
1343 { 0x2957, "Chauvet Professional: Rogue R1 FXB" },
1344 { 0x2958, "Chauvet Professional: Maverick MK 1 Hybrid" },
1345 { 0x2959, "Chauvet Professional: Maverick MK Pyxis" },
1346 { 0x295A, "Chauvet Professional: Maverick MK2 Profile" },
1347 { 0x295B, "Chauvet Professional: Maverick MK3 Wash" },
1348 { 0x295C, "Chauvet Professional: Maverick MK2 Wash" },
1349 { 0x295D, "Chauvet Professional: Maverick MK1 Spot" },
1350 { 0x295E, "SSG Technology Ltd: SD980 AN" },
1351 { 0x295F, "LKE Lasershow: Frequency Unit" },
1352 { 0x2960, "JUAN FRANCISCO CAMPOS SAA: BM LIGHTS 1 UNIVERSE" },
1353 { 0x2961, "Zboxes Intelligent Technology Shanghai Co Ltd: Zboxes 8" },
1354 { 0x2962, "Guangzhou Ming Jing Stage Light: King Kong Controller" },
1355 { 0x2963, "Fiberli: Node8X" },
1356 { 0x2964, "GLP German Light Products GmbH: KNV Arc" },
1357 { 0x2965, "GLP German Light Products GmbH: KNV Cube" },
1358 { 0x2966, "SmartShow UK: NetTWIN" },
1359 { 0x2967, "SmartShow UK: AirDMXout" },
1360 { 0x2968, "SmartShow UK: AirPixel Quad" },
1361 { 0x2969, "SmartShow UK: AirPixel Mini" },
1362 { 0x296A, "SmartShow UK: AirPixel Micro" },
1363 { 0x296B, "SmartShow UK: NetPixel Quad" },
1364 { 0x296C, "SmartShow UK: NetWS 2040" },
1365 { 0x296D, "SmartShow UK: NetWS 340" },
1366 { 0x296E, "SmartShow UK: NetBuddy" },
1367 { 0x296F, "SmartShow UK: NetDMX" },
1368 { 0x2970, "Pulsar: Node1" },
1369 { 0x2971, "PXM: Px760" },
1370 { 0x2972, "PXM: Px314" },
1371 { 0x2973, "Ambion Gmbh Ambrain: Flex Led Gate" },
1372 { 0x2974, "Guangzhou ChaiYi Light CO Ltd: DMXGate" },
1373 { 0x2975, "Digital Projection: Titan Laser Projector" },
1374 { 0x2976, "CLAYPAKY: ALEDA BEAM 200" },
1375 { 0x2977, "CLAYPAKY: SHARPY PLUS" },
1376 { 0x2978, "Chauvet Professional: Epix Flex Drive" },
1377 { 0x2979, "Arrigo Lighting: AL WS2812B" },
1378 { 0x297A, "Roleds: RTG180" },
1379 { 0x297B, "Audiowerk: LC1" },
1380 { 0x297C, "NOVA: LED" },
1381 { 0x297D, "Martin: MAC Allure Profile" },
1382 { 0x297E, "Lifetime Music Academy: Light SPECTRUM" },
1383 { 0x297F, "City Theatrical: Multiverse Gateway" },
1384 { 0x2980, "City Theatrical: Multiverse Transmitter" },
1385 { 0x2981, "Rosstech Signals: MatrixView" },
1386 { 0x2982, "CLAYPAKY: AXCOR PROFILE 900 6K LN" },
1387 { 0x2983, "CLAYPAKY: AXCOR PROFILE 900 8K LN" },
1388 { 0x2984, "CLAYPAKY: HY_B EYE K25" },
1389 { 0x2985, "CLAYPAKY: HY_B EYE K15" },
1390 { 0x2986, "D5 systems: Lighting Network Toolset" },
1391 { 0x2987, "ADB STAGELIGHT: OKSALIS FL20" },
1392 { 0x2988, "ADB STAGELIGHT: OKSALIS FL10" },
1393 { 0x2989, "CLAYPAKY: AXCOR WASH 600 HC" },
1394 { 0x298A, "CLAYPAKY: AXCOR WASH 600" },
1395 { 0x298B, "CLAYPAKY: AXCOR PROFILE 600 HC ST" },
1396 { 0x298C, "CLAYPAKY: AXCOR PROFILE 600 ST" },
1397 { 0x298D, "atmosphere media gmbH: atmosphere media player" },
1398 { 0x298E, "DTS Illuminazione srl: DRIVENET 1664" },
1399 { 0x298F, "DTS Illuminazione srl: DRIVENET 416 POWER" },
1400 { 0x2990, "DTS Illuminazione srl: DRIVENET 416" },
1401 { 0x2991, "DTS Illuminazione srl: DRIVENET 832 POWER" },
1402 { 0x2992, "DTS Illuminazione srl: DRIVENET 832" },
1403 { 0x2993, "DTS Illuminazione srl: SYNERGY 5 SPOT" },
1404 { 0x2994, "DTS Illuminazione srl: SYNERGY 5 PROFILE" },
1405 { 0x2995, "Guangzhou JinZhiHui Electronic Technology Co: TOP 1440 LED RGB STROBE" },
1406 { 0x2996, "Creative Lighting: eDIDIO 8 pole" },
1407 { 0x2997, "Creative Lighting: eDIDIO 4 pole" },
1408 { 0x2998, "ADB STAGELIGHT: ORKIS FOCUS SPOT" },
1409 { 0x2999, "Waves System: Event Video Player" },
1410 { 0x299A, "SQD lighting Co Limited: LED lighting fixtures series" },
1411 { 0x299B, "BSL BV: Epikon" },
1412 { 0x299C, "Shenzhen Lei Fei Lighting Technology Co Ltd: LiteMeta Controller 2" },
1413 { 0x299D, "Shenzhen Lei Fei Lighting Technology Co Ltd: LiteMeta Controller 16" },
1414 { 0x299E, "Shenzhen Lei Fei Lighting Technology Co Ltd: LiteMeta Controller 8" },
1415 { 0x299F, "Pulsar: Luxinode" },
1416 { 0x29A0, "Integrated System Technology Ltd: White Knight 24 Emergency" },
1417 { 0x29A1, "Integrated System Technology Ltd: White Knight 36_1600" },
1418 { 0x29A2, "EMP Designs Ltd: EMP1" },
1419 { 0x29A3, "MCINTIRE ENTERPRISES INC: 24 CH Dimmer" },
1420 { 0x29A4, "AMOLVIN: DMX NODE" },
1421 { 0x29A5, "Guangzhou HuaYong Intelligent Technology Co Ltd: HuaYong Controller" },
1422 { 0x29A6, "Philips Controller 32: Signify China Investment Co Ltd" },
1423 { 0x29A7, "Signify Investment Co Ltd: Philips Controller 24" },
1424 { 0x29A8, "Signify Investment Co Ltd: Philips Controller 16" },
1425 { 0x29A9, "Signify Investment Co Ltd: Philips Controller 8" },
1426 { 0x29AA, "Signify Investment Co Ltd: Philips Controller 2" },
1427 { 0x29AB, "ER Productions: ER Display V1" },
1428 { 0x29AC, "Shenzhen Leifei Lighting Technology Co Ltd: LiteMeta Controller 32" },
1429 { 0x29AD, "Impolux GmbH: ULTIM8 ST16 O" },
1430 { 0x29AE, "Martin Professional: MAC Allure Wash PC" },
1431 { 0x29AF, "Shenzhen Leifei Lighting Technology Co Ltd: LiteMeta Controller 24" },
1432 { 0x29B0, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node" },
1433 { 0x29B1, "Alex Sagias: PixLed" },
1434 { 0x29B2, "GLP German Light Products GmbH: Highlander" },
1435 { 0x29B3, "Edelmann Electronics: Enigma2Kxx" },
1436 { 0x29B4, "PR LIGHTING LTD: PR Lighting 1" },
1437 { 0x29B5, "Wiktor Kaluzny: DMX BOX" },
1438 { 0x29B6, "GLP German Light Products GmbH: Impression W350" },
1439 { 0x29B7, "nox multimedia GmbH: NAN 8" },
1440 { 0x29B8, "ON LX Limited: Ctrl" },
1441 { 0x29B9, "HYCL: DMX Player Super 4" },
1442 { 0x29BA, "HYCL: DMX Player Super 8" },
1443 { 0x29BB, "HYCL: DMX Player Super 16" },
1444 { 0x29BC, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node 4P OD" },
1445 { 0x29BD, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node 8P" },
1446 { 0x29BE, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node 4P" },
1447 { 0x29BF, "HYCL: dmx player 512" },
1448 { 0x29C0, "HYCL: dmx player 256" },
1449 { 0x29C1, "HYCL: dmx player 64" },
1450 { 0x29C2, "HYCL: dmx player 2" },
1451 { 0x29C3, "PR LIGHTING LTD: PR Lighting 2" },
1452 { 0x29C4, "Spacelights: spacenet1i" },
1453 { 0x29C5, "Spacelights: spacenet2o" },
1454 { 0x29C6, "Event Imagineering Group: ShowKontrol" },
1455 { 0x29C7, "Brink Ventures LLC: Blackout Lighting Console" },
1456 { 0x29C8, "Integrated System Technology Ltd: White Knight 48 DC" },
1457 { 0x29C9, "Integrated System Technology Ltd: White Knight 24 DC" },
1458 { 0x29CA, "Integrated System Technology Ltd: Thor16 Silent 500W" },
1459 { 0x29CB, "Integrated System Technology Ltd: White Knight 24 Silent 500W" },
1460 { 0x29CC, "THELIGHT Luminary for Cine and TV SL: EVO 2x2 STUDIO" },
1461 { 0x29CD, "THELIGHT Luminary for Cine and TV SL: EVO 2x2 WEATHERPROOF" },
1462 { 0x29CE, "THELIGHT Luminary for Cine and TV SL: EVO 2 STUDIO" },
1463 { 0x29CF, "THELIGHT Luminary for Cine and TV SL: EVO 2 WEATHERPROOF" },
1464 { 0x29D0, "THELIGHT Luminary for Cine and TV SL: EVO 1 STUDIO" },
1465 { 0x29D1, "THELIGHT Luminary for Cine and TV SL: EVO 1 WEATHERPROOF" },
1466 { 0x29D2, "Exacta: CCL PC" },
1467 { 0x29D3, "Light Converse Ltd: LIGHTCONVERSE TOOLS" },
1468 { 0x29D4, "Lumos Design: Lumos Node 4" },
1469 { 0x29D5, "CLAYPAKY: XTYLOS" },
1470 { 0x29D6, "SZe Schneider Zirr engineering GmbH: CF Player A FullHD2 0" },
1471 { 0x29D7, "VL software: Arthur Maxi" },
1472 { 0x29D8, "eX Systems: RGB Floodlight" },
1473 { 0x29D9, "DCLX Ltd: Pixel Sabre" },
1474 { 0x29DA, "HDL: DMXNode8" },
1475 { 0x29DB, "Luminex Lighting Control Equipment: LumiNode 12" },
1476 { 0x29DC, "Luminex Lighting Control Equipment: LumiNode 4" },
1477 { 0x29DD, "Luminex Lighting Control Equipment: LumiNode 2" },
1478 { 0x29DE, "Luminex lighting Control Equipment: LumiNode 1" },
1479 { 0x29DF, "MaNiMa Technologies BV: MaNiMa LED interface" },
1480 { 0x29E0, "xinqidian: ganelight" },
1481 { 0x29E1, "LIGHTLINE Lasertechnik GmbH: Laserlink" },
1482 { 0x29E2, "HYCL: BootLoader" },
1483 { 0x29E3, "Disguise: Disguise Production Toolkit" },
1484 { 0x29E4, "Equivalent: LSEthernetToDMX" },
1485 { 0x29E5, "Equivalent: EtherConDMX8" },
1486 { 0x29E6, "Equivalent: LSDW_2435E" },
1487 { 0x29E7, "Equivalent: LSDR 123E" },
1488 { 0x29E8, "Equivalent: LSDR 65E" },
1489 { 0x29E9, "Chauvet Lighting: Ovation B 1965FC" },
1490 { 0x29EA, "Chauvet Lighting: Ovation B 1965FC" },
1491 { 0x29EB, "WangMing: WangMing" },
1492 { 0x29EC, "ADJ PRODUCTS: ALLEGRO Z6" },
1493 { 0x29ED, "EQUIPSON S A: LSNODE4" },
1494 { 0x29EE, "EQUIPSON S A: LSNODE2" },
1495 { 0x29EF, "EQUIPSON S A: LSNODE1" },
1496 { 0x29F0, "Chauvet Professional: Maverick MK3 Profile CX" },
1497 { 0x29F1, "Chauvet Professional: Maverick MK3 Spot" },
1498 { 0x29F2, "Chauvet Professional: Maverick MK3 Profile" },
1499 { 0x29F3, "Chauvet Professional: Colorado Solo Batten 4" },
1500 { 0x29F4, "Chauvet Professional: Colorado Solo Batten" },
1501 { 0x29F5, "Light Converse Ltd: LIGTHCONVERSE TOOLS" },
1502 { 0x29F6, "DP Lumi: DP Lumi Pro" },
1503 { 0x29F7, "Martin Professional: VDO Atomic Dot WRM" },
1504 { 0x29F8, "Martin Professional: VDO Atomic Dot CLD" },
1505 { 0x29F9, "GLP German Light Products GmbH: KNV PSU" },
1506 { 0x29FA, "GLP German Light Products GmbH: Impression FR10 Bar" },
1507 { 0x29FB, "Guangzhou ChaiYi Light CO Ltd: Replay Server" },
1508 { 0x29FC, "DTS Illuminazione srl: Alchemy5" },
1509 { 0x29FD, "Vibesta BV: RTX1" },
1510 { 0x29FE, "Echoic Tech LLC: Mach1 LED Controller" },
1511 { 0x29FF, "GuangZhou Ming jing stage lighting equipment co LTD: KingKongBaton" },
1512 { 0x2A00, "Blue Ridge Concepts Inc: EladniDesktop" },
1513 { 0x2A01, "DTS Illuminazione srl: Alchemy3" },
1514 { 0x2A02, "Crew Light: VController" },
1515 { 0x2A03, "KappaStyle Productions: KappaNode2" },
1516 { 0x2A04, "Blinkinlabs: SuperSweet" },
1517 { 0x2A05, "Coretronic Corporation: Projector" },
1518 { 0x2A06, "Guangzhou ChaiYi Light CO Ltd: General Purpose Device" },
1519 { 0x2A07, "Sharp NEC Display Solutions LTD: Projector" },
1520 { 0x2A08, "Sharp NEC Display Solutions LTD: Flat Panel Display" },
1521 { 0x2A09, "WA Benjamin: PMP Power Metering Panel" },
1522 { 0x2A0A, "HYCL: IOT Update" },
1523 { 0x2A0B, "HYCL: RDM Player 1" },
1524 { 0x2A0C, "HYCL: RDM Player 2" },
1525 { 0x2A0D, "HYCL: RDM Player 4" },
1526 { 0x2A0E, "HYCL: RDM Player 8" },
1527 { 0x2A0F, "Elation Lighting: Pixel Driver 1000IP" },
1528 { 0x2A10, "Integrated System Technology Ltd: White Knight 12" },
1529 { 0x2A11, "Sigma Net: BlueDMX" },
1530 { 0x2A12, "BonKon: DMX Link Pro1" },
1531 { 0x2A13, "VANRAY: DMX LINK PRO" },
1532 { 0x2A14, "Chauvet Professional: Maverick Silens 2 Profile" },
1533 { 0x2A15, "Fiberli: Node4X" },
1534 { 0x2A16, "Ocular BVBA: Ocularium" },
1535 { 0x2A17, "Showtacle Ltd: THE UPGRADE" },
1536 { 0x2A18, "Showtacle Ltd: Moncha2" },
1537 { 0x2A19, "zhsj: Video control" },
1538 { 0x2A1A, "Archon: Archon Dev" },
1539 { 0x2A1B, "Tristan Leonid Zoltan Thiltges: Lightsculptures" },
1540 { 0x2A1C, "Elation Lighting: RDM 6XL" },
1541 { 0x2A1D, "Elation Lighting: RDM 645" },
1542 { 0x2A1E, "Elation Lighting: RDM 10" },
1543 { 0x2A1F, "Elation Lighting: EP4" },
1544 { 0x2A20, "Elation Lighting: EN4" },
1545 { 0x2A21, "Elation Lighting: EN12" },
1546 { 0x2A22, "Kyle Hensel: Node js API" },
1547 { 0x2A23, "Showart: DMXrecorder" },
1548 { 0x2A24, "ON LX Limited: CommsKit" },
1549 { 0x2A25, "Guangzhou ChaiYi Light CO Ltd: Air Gate" },
1550 { 0x2A26, "SmartShow UK: NetPixel ONE" },
1551 { 0x2A27, "SmartShow UK: AirPixel ONE" },
1552 { 0x2A28, "Pixout SIA: Pixout Controller" },
1553 { 0x2A29, "Steinigke Showtechnic GmbH: EYE 740" },
1554 { 0x2A2A, "ADJ Group: Pixie Driver 2K" },
1555 { 0x2A2B, "Belayingpin com: BPC Video Server" },
1556 { 0x2A2C, "Lucenti: Blackwave PixlDrive" },
1557 { 0x2A2D, "Integrated System Technologies: iDrive Workshop" },
1558 { 0x2A2E, "R S Schwarze Elektrotechnik Moderne Industrieelektronik GmbH: SG 4" },
1559 { 0x2A2F, "Sigma Net: Light Magic" },
1560 { 0x2A30, "Paulo Macedo: WIFIpixel" },
1561 { 0x2A31, "DATALED: DATALED NET" },
1562 { 0x2A32, "ADB STAGELIGHT: ORKIS PROFILE M" },
1563 { 0x2A33, "CLAYPAKY: REFLECTXION" },
1564 { 0x2A34, "Offstage Controls: Unlicensed OCPE" },
1565 { 0x2A35, "PXM: Px786" },
1566 { 0x2A36, "PXM: Px785" },
1567 { 0x2A37, "Suga koubou Co Ltd: DMX Recorder" },
1568 { 0x2A38, "CLAYPAKY: ALQIMYA" },
1569 { 0x2A39, "Offstage Controls: Kilo Gate I" },
1570 { 0x2A3A, "Offstage Controls: Kilo Gate O" },
1571 { 0x2A3B, "Offstage Controls: Kilo Gate IO" },
1572 { 0x2A3C, "JAH Audio Corp: JAH 8 Port Node" },
1573 { 0x2A3D, "JAH Audio Corp: JAH Lighting Engine" },
1574 { 0x2A3E, "ADJ Products: TrussHub U1" },
1575 { 0x2A3F, "Integrated System Technologies: Sentinel 24" },
1576 { 0x2A40, "BSL BV: PowerNode 8" },
1577 { 0x2A41, "BSL BV: Node 2" },
1578 { 0x2A42, "DTS Illuminazione srl: SYNERGY 7 PROFILE" },
1579 { 0x2A43, "DTS Illuminazione srl: ALCHEMY 7" },
1580 { 0x2A44, "LaserNet: LiveFeedback" },
1581 { 0x2A45, "Focus Technologies BV: Focus3D" },
1582 { 0x2A46, "Exalux: Connect Plus" },
1583 { 0x2A47, "Bafa Elektronik ve Isik Tasarimlari Sanayii Ticaret Sti: Zerolight16" },
1584 { 0x2A48, "Fiberli: Node2X" },
1585 { 0x2A49, "WizzuLED: Matrix LED Modules" },
1586 { 0x2A4A, "Kifo: Kifo Lightcontroller" },
1587 { 0x2A4B, "Digital Projection: Digital Projection Projector" },
1588 { 0x2A4C, "tx: plamp1" },
1589 { 0x2A4D, "tx: plamp2" },
1590 { 0x2A4E, "tongxinkeji: plamp3" },
1591 { 0x2A4F, "Kloeckner EDV Service BK Tec Audio: Audiostack" },
1592 { 0x2A50, "kuwatec Inc: Valencia" },
1593 { 0x2A51, "Luxeos Luminaires Ltd: Luxnode" },
1594 { 0x2A52, "ADJ PRODUCTS: HYDRO WASH X19" },
1595 { 0x2A53, "guangzhou hongcai stage equipment co ltd: x7 coupe" },
1596 { 0x2A54, "Zinc Event Production Ltd: Wireless LED controller" },
1597 { 0x2A55, "CLAYPAKY: HY B EYE K25 TEATRO" },
1598 { 0x2A56, "CLAYPAKY: AXCOR PROFILE 600 TEATRO" },
1599 { 0x2A57, "Luminex Lighting Control Equipment: LumiCore" },
1600 { 0x2A58, "Equivalent: LSSR 123E" },
1601 { 0x2A59, "Steinigke Showtechnic GmbH: Node IV" },
1602 { 0x2A5A, "Steinigke Showtechnic GmbH: Pixel Node II" },
1603 { 0x2A5B, "Steinigke Showtechnic GmbH: freeDMX AP" },
1604 { 0x2A5C, "Visual Productions: CueCore3" },
1605 { 0x2A5D, "Visual Productions: B Station2" },
1606 { 0x2A5E, "Visual Productions: DaliCore" },
1607 { 0x2A5F, "Litefocus: Node8" },
1608 { 0x2A60, "Litefocus: Node4" },
1609 { 0x2A61, "Litefocus: Node24" },
1610 { 0x2A62, "Litefocus: Node12" },
1611 { 0x2A63, "Litefocus: Node10" },
1612 { 0x2A64, "Litefocus: Node8a" },
1613 { 0x2A65, "Litefocus: Node4a" },
1614 { 0x2A66, "Litefocus: Node2" },
1615 { 0x2A67, "Litefocus: Node1" },
1616 { 0x2A68, "CLAYPAKY: XTYLOS AQUA" },
1617 { 0x2A69, "CLAYPAKY: AXCOR PROFILE 600 HC TEATRO" },
1618 { 0x2A6A, "Modern Stage Service Pvt Ltd: MSSP DMX4" },
1619 { 0x2A6B, "Chengdu Chengyu Electronic Technology Co Ltd: CYT LightShow Controller" },
1620 { 0x2A6C, "Chengdu Chengyu Electronic Technology Co Ltd: CYT LED Controller" },
1621 { 0x2A6D, "Chengdu Chengyu Electronic Technology Co Ltd: CYT DMX512 Controller" },
1622 { 0x2A6E, "stage design technology co Ltd nanchang: multifunction network processing unit" },
1623 { 0x2A6F, "LiteLEES: SUPER HERO 470 PRO" },
1624 { 0x2A70, "LiteLEES: BIG EYE L4025" },
1625 { 0x2A71, "LiteLEES: BIG EYE L4019" },
1626 { 0x2A72, "Dizzy D Productions: DAn Controller" },
1627 { 0x2A73, "Martin Professional: MAC Aura PXL" },
1628 { 0x2A74, "sziton: mess light" },
1629 { 0x2A75, "CLAYPAKY: AROLLA SPOT MP" },
1630 { 0x2A76, "CLAYPAKY: AROLLA PROFILE MP" },
1631 { 0x2A77, "CLAYPAKY: AROLLA PROFILE HP" },
1632 { 0x2A78, "CLAYPAKY: MIDIB" },
1633 { 0x2A79, "CLAYPAKY: TAMBORA BATTEN K25" },
1634 { 0x2A7A, "CLAYPAKY: MINIB PARLED AQUA" },
1635 { 0x2A7B, "CLAYPAKY: SHARPY PLUS AQUA" },
1636 { 0x2A7C, "Acme: TRUSSHUB U1" },
1637 { 0x2A7D, "Acme: LEO" },
1638 { 0x2A7E, "Acme: DARKMOON" },
1639 { 0x2A7F, "Acme: SILVERMOON" },
1640 { 0x2A80, "Acme: GEIST BSWF" },
1641 { 0x2A81, "Acme: GEIST BEAM" },
1642 { 0x2A82, "Acme: SUNRISE" },
1643 { 0x2A83, "Acme: TRUSSHUB U" },
1644 { 0x2A84, "Acme: TRUSSHUB S" },
1645 { 0x2A85, "Foshan YiFeng Electric Industrial Co ltd: SOLAR IMPULSE" },
1646 { 0x2A86, "MODUS: ARL 01 8CH RELAY" },
1647 { 0x2A87, "LSC Lighting Systems Aust Pty Ltd: MantraMini" },
1648 { 0x2A88, "LSC Lighting Systems Aust Pty Ltd: UniTour" },
1649 { 0x2A89, "LSC Lighting Systems Aust Pty Ltd: Unity" },
1650 { 0x2A8A, "ProtoPixel: 1 Channel WiFi Controller" },
1651 { 0x2A8B, "Integrated System Technology Limited: iMune multiGate" },
1652 { 0x2A8C, "ShoCobra: FX1" },
1653 { 0x2A8D, "ShoCobra: ELD4" },
1654 { 0x2A8E, "ROBERT JULIAT: CHARLES 960SX" },
1655 { 0x2A8F, "ROBERT JULIAT: DALIS 864" },
1656 { 0x2A90, "ROBERT JULIAT: DALIS 863" },
1657 { 0x2A91, "ROBERT JULIAT: TIBO HE 553" },
1658 { 0x2A92, "ROBERT JULIAT: SULLY 1156" },
1659 { 0x2A93, "ROBERT JULIAT: SULLY 305L" },
1660 { 0x2A94, "ROBERT JULIAT: SULLY 650SX" },
1661 { 0x2A95, "ROBERT JULIAT: ARTHUR 1014" },
1662 { 0x2A96, "Colordeve International: NETnode22" },
1663 { 0x2A97, "Colordeve International: NETnode14" },
1664 { 0x2A98, "Colordeve International: NETnode18" },
1665 { 0x2A99, "ShenZhen ChuanTian QuanCai Technology Co ltd: CT 3072 1CH" },
1666 { 0x2A9A, "ShenZhen ChuanTian QuanCai Technology Co ltd: CT 16384 16CH" },
1667 { 0x2A9B, "ShenZhen ChuanTian QuanCai Technology Co ltd: CT 8192 8CH" },
1668 { 0x2A9C, "jin ye Electronics: JY KZQ" },
1669 { 0x2A9D, "Paai: PAAI Ethernet node" },
1670 { 0x2A9E, "iion: MNM" },
1671 { 0x2A9F, "ALA Equipment Company Ltd: PowerNet" },
1672 { 0x2AA0, "ChromaTech: ThunderOne" },
1673 { 0x2AA1, "Aputure Imaging Industries Co Ltd: LS 600 LS 1500" },
1674 { 0x2AA2, "Aputure Imaging Industries Co Ltd: SQ NET" },
1675 { 0x2AA3, "Guangzhou Mingyan Electronic Technology Co Ltd: Mingyan motherboard" },
1676 { 0x2AA4, "Guangzhou Mingyan Electronic Technology Co Ltd: Par light motherboard" },
1677 { 0x2AA5, "Guangzhou Mingyan Electronic Technology Co Ltd: Wifi controller" },
1678 { 0x2AA6, "Fiilex: Fiilex Color" },
1679 { 0x2AA7, "Cameo: Evos W3" },
1680 { 0x2AA8, "Cameo: Opus H5" },
1681 { 0x2AA9, "Cameo: Opus X" },
1682 { 0x2AAA, "Cameo: Opus SP5 FC" },
1683 { 0x2AAB, "Cameo: XNODE 8" },
1684 { 0x2AAC, "cameo: Opus SP5" },
1685 { 0x2AAD, "Cameo: Opus S5" },
1686 { 0x2AAE, "Cameo: XNODE 4" },
1687 { 0x2AAF, "Chromatech: ThunderPanel" },
1688 { 0x2AB0, "AC Power Distribution ACT Lighting Inc: PDXND41" },
1689 { 0x2AB1, "AVW Controls Ltd: QAxis Stage automation integration with LX" },
1690 { 0x2AB2, "CPOINT: Ledogen" },
1691 { 0x2AB3, "CPOINT: DMXplorer" },
1692 { 0x2AB4, "Lichtmanufaktur Berlin GmbH: Casambi Gateway" },
1693 { 0x2AB5, "ShenZhen ChuanTian QuanCai Technology Co ltd: CT3276832CH" },
1694 { 0x2AB6, "Ether Dream: Ether Dream 2" },
1695 { 0x2AB7, "Chauvet Professional: Maverick MK3 Profile CX 2" },
1696 { 0x2AB8, "Chauvet Professional: Maverick Force 3 Spot" },
1697 { 0x2AB9, "Chauvet Professional: Maverick Force 3 Profile" },
1698 { 0x2ABA, "Chauvet Professional: Maverick Force 2 Profile" },
1699 { 0x2ABB, "Chauvet Professional: Maverick Force 1 Spot" },
1700 { 0x2ABC, "Chauvet Professional: Maverick Silens 1 Profile" },
1701 { 0x2ABD, "Chauvet Professional: onAir Panel 2 IP" },
1702 { 0x2ABE, "Chauvet Professional: onAir Panel 1 IP" },
1703 { 0x2ABF, "Insight Lighting: CDS RDM PoE" },
1704 { 0x2AC0, "nicolaudie: Sunlite Suite 2 FC plus" },
1705 { 0x2AC1, "PLS LLC: Platinum Dimmer System" },
1706 { 0x2AC2, "ecue: Sympl Bridge Node" },
1707 { 0x2AC3, "ecue: Bridge8" },
1708 { 0x2AC4, "ecue: SYMPHOLIGHT" },
1709 { 0x2AC5, "LED CONTROL PTE LTD: MX96" },
1710 { 0x2AC6, "ShenZhen ChuanTian QuanCai Technology Co ltd: CT 1020X16" },
1711 { 0x2AC7, "Advatek Lighting: PixLite A16 S Mk3" },
1712 { 0x2AC8, "Advatek Lighting: PixLite A4 W Mk3" },
1713 { 0x2AC9, "Advatek Lighting: PixLite A4 S Mk3" },
1714 { 0x2ACA, "Advatek Lighting: PixLite T8 S Mk3" },
1715 { 0x2ACB, "Advatek Lighting: PixLite A16 S Mk2" },
1716 { 0x2ACC, "Advatek Lighting: PixLite A4 S Mk2" },
1717 { 0x2ACD, "Advatek Lighting: PixLite T8 S Mk2" },
1718 { 0x2ACE, "Advatek Lighting: PixLite 16 Plug Play Mk2 plus" },
1719 { 0x2ACF, "Advatek Lighting: PixLite 16 Plug Play Mk2" },
1720 { 0x2AD0, "Advatek Lighting: PixLite 4 Mk2 Rugged" },
1721 { 0x2AD1, "Advatek Lighting: PixLite 16 Mk2 Long Range" },
1722 { 0x2AD2, "Advatek Lighting: PixLite 16 Mk2 ECO" },
1723 { 0x2AD3, "Advatek Lighting: PixLite 16 Mk2" },
1724 { 0x2AD4, "Advatek Lighting: PixLite 4 Mk2 ECO" },
1725 { 0x2AD5, "Advatek Lighting: PixLite 4 Mk2" },
1726 { 0x2AD6, "LAMP Aydinlatma: OPUS 16" },
1727 { 0x2AD7, "LAMP Aydinlatma: OPUS 8" },
1728 { 0x2AD8, "LAMP Aydinlatma: OPUS 4" },
1729 { 0x2AD9, "Stage Gear: AUM" },
1730 { 0x2ADA, "DLL ltd: AC 404" },
1731 { 0x2ADB, "MODUS: ACTION FX MODUS" },
1732 { 0x2ADC, "MODUS: ACTION LAB MODUS" },
1733 { 0x2ADD, "MODUS: ALM MODUS" },
1734 { 0x2ADE, "MODUS: AV PLAYER MODUS" },
1735 { 0x2ADF, "MODUS: ALC MODUS" },
1736 { 0x2AE0, "MODUS: ACW MODUS" },
1737 { 0x2AE1, "MODUS: ASC MODUS" },
1738 { 0x2AE2, "MODUS: ADL 16 MODUS" },
1739 { 0x2AE3, "MODUS: ADL 02 MODUS" },
1740 { 0x2AE4, "MODUS: ADAC MODUS" },
1741 { 0x2AE5, "MODUS: E GATE MODUS" },
1742 { 0x2AE6, "MODUS: AADC MODUS" },
1743 { 0x2AE7, "MODUS: ADMX MODUS" },
1744 { 0x2AE8, "MODUS: ARS MODUS" },
1745 { 0x2AE9, "Chromateq SARL: Chromateq Node" },
1746 { 0x2AEA, "SIRS E: Pilotino WIFI PCB" },
1747 { 0x2AEB, "able: PRIME RGB 5300" },
1748 { 0x2AEC, "TDE Lighttech: IZI Access" },
1749 { 0x2AED, "Nuvolight GmbH Co KG: SMARTsplitter" },
1750 { 0x2AEE, "Chauvet Professional: Logic Drive 2X" },
1751 { 0x2AEF, "Vivitek: Projector" },
1752 { 0x2AF0, "Sensation Lighting Technology Co Ltd: Tungsten cubic" },
1753 { 0x2AF1, "Eon lighting: Eonport4" },
1754 { 0x2AF2, "Eon lighting: Eonport2" },
1755 { 0x2AF3, "Eon lighting: Eonport1" },
1756 { 0x2AF4, "LSC Lighting Systems Aust Pty Ltd: Houston X" },
1757 { 0x2AF5, "INTILED: U BOX 8" },
1758 { 0x2AF6, "Foshan city Yanyao lighting Equipment Factory: X_NODE_8U" },
1759 { 0x2AF7, "Foshan city Yanyao lighting Equipment Factory: X_NODE_4U" },
1760 { 0x2AF8, "Foshan city Yanyao lighting Equipment Factory: X_NODE_PIXEL_2U" },
1761 { 0x2AF9, "Foshan city Yanyao lighting Equipment Factory: X_NODE_PIXEL" },
1762 { 0x2AFA, "S4 Lights: Motherline Main Board" },
1763 { 0x2AFB, "Laserworld Group: ShowNET" },
1764 { 0x2AFC, "HYCL: Super RdmController 16" },
1765 { 0x2AFD, "HYCL: Super RdmController 1" },
1766 { 0x2AFE, "HYCL: Super RdmController 2" },
1767 { 0x2AFF, "HYCL: Super RdmController 4" },
1768 { 0x2B00, "HYCL: Super RdmController 8" },
1769 { 0x2B01, "Showtacle Ltd: Reactivo" },
1770 { 0x2B02, "Advatek Lighting: PixLite E16 S Mk3" },
1771 { 0x2B03, "Advatek Lighting: PixLite E4 S Mk3" },
1772 { 0x2B04, "EagleLight: Node16S" },
1773 { 0x2B05, "EagleLight: Node8S" },
1774 { 0x2B06, "EagleLight: Node4S" },
1775 { 0x2B07, "EagleLight: Node2S" },
1776 { 0x2B08, "EagleLight: Node1S" },
1777 { 0x2B09, "EagleLight: Node16D" },
1778 { 0x2B0A, "EagleLight: Node8D" },
1779 { 0x2B0B, "EagleLight: Node4D" },
1780 { 0x2B0C, "EagleLight: Node2D" },
1781 { 0x2B0D, "EagleLight: Node1D" },
1782 { 0x2B0E, "PXM: QRay Console 36" },
1783 { 0x2B0F, "PXM: QRay Console 24" },
1784 { 0x2B10, "CLAYPAKY: MINI XTYLOS" },
1785 { 0x2B11, "Acme: TRUSSHUB UG" },
1786 { 0x2B12, "Acme: THUNDER BREAKER" },
1787 { 0x2B13, "Acme: CALORIE" },
1788 { 0x2B14, "Acme: JOULES" },
1789 { 0x2B15, "Acme: PASCAL" },
1790 { 0x2B16, "Acme: GRAVITRON" },
1791 { 0x2B17, "Acme: NEWTON" },
1792 { 0x2B18, "Acme: GEMINI" },
1793 { 0x2B19, "TELMICNeo: QUADTRA2" },
1794 { 0x2B1A, "TrasMaTech: TrasMaTech Led Panel" },
1795 { 0x2B1B, "Yarilo Pro: PixelDIN" },
1796 { 0x2B1C, "CLAYPAKY: MINI XTYLOS HPE" },
1797 { 0x2B1D, "WizzuLED: WizzuLED WiFi Link Pro Optoisolated" },
1798 { 0x2B1E, "WizzuLED: WizzuLED WiFi Link" },
1799 { 0x2B1F, "WizzuLED: WizzuLED Matrix Display Module v2" },
1800 { 0x2B20, "CLAYPAKY: SINFONYA PROFILE 600" },
1801 { 0x2B21, "IMMOLAS: IMMO GATE x4 ISO" },
1802 { 0x2B22, "Chauvet Professional: Logic POE X" },
1803 { 0x2B23, "Chauvet Professional: Logic AR111 DN 24W" },
1804 { 0x2B24, "Chauvet Professional: Logic AR111 DN 12W" },
1805 { 0x2B25, "Chauvet Professional: Logic MR16 DN 6W" },
1806 { 0x2B26, "Chauvet Professional: Logic GZ 48W" },
1807 { 0x2B27, "Chauvet Professional: Logic GZ 12W" },
1808 { 0x2B28, "Chauvet Professional: Logic CV 24W" },
1809 { 0x2B29, "Chauvet Professional: Logic CV 12W" },
1810 { 0x2B2A, "Chauvet Professional: Logic Drive 2Xb" },
1811 { 0x2B2B, "Control Pro Kft: CubeOS" },
1812 { 0x2B2C, "LightnTec GmbH: ledTec flex wallpaper" },
1813 { 0x2B2D, "Luminex Lighting Control Equipment: LumiNode 12 RJ45" },
1814 { 0x2B2E, "Luminex Lighting Control Equipment: LumiNode 4 DIN" },
1815 { 0x2B2F, "Colordeve International: MissionBAR" },
1816 { 0x2B30, "Chauvet Professional: Maverick Force S Profile" },
1817 { 0x2B31, "Chauvet Professional: Maverick Force S Spot" },
1818 { 0x2B32, "Integrated System Technology Limited: Tendo Pod PoE" },
1819 { 0x2B33, "Integrated System Technologies: POE LED Driver 2" },
1820 { 0x2B34, "Integrated System Technologies: POE LED Driver 4" },
1821 { 0x2B35, "Integrated System Technologies: Well building Environmental Sensor" },
1822 { 0x2B36, "Nastedt VA Technik: PixelLedDriver" },
1823 { 0x2B37, "Chauvet Professional: Color STRIKE M" },
1824 { 0x2B38, "Sidus Link Ltd: Sidus QNet Jupiter" },
1825 { 0x2B39, "CLAYPAKY: VOLERO BATTEN AQUA" },
1826 { 0x2B3A, "CLAYPAKY: VOLERO WAVE" },
1827 { 0x2B3B, "CLAYPAKY: ACTORIS PARLED" },
1828 { 0x2B3C, "CLAYPAKY: PANIFY" },
1829 { 0x2B3D, "CLAYPAKY: SHARPY X FRAME" },
1830 { 0x2B3E, "CLAYPAKY: MIDIB WW" },
1831 { 0x2B3F, "CLAYPAKY: MINIB PARLED AQUA WW" },
1832 { 0x2B40, "CLAYPAKY: MINIB WW" },
1833 { 0x2B41, "Hypar Collective: HyparDrive" },
1834 { 0x2B42, "Uniquenterprice: Unique" },
1835 { 0x2B43, "Martin Professional: MAC Ultra Wash" },
1836 { 0x2B44, "Martin Professional: MAC Ultra Performance" },
1837 { 0x2B45, "Akatsuki: Node 10" },
1838 { 0x2B46, "NEWSUBSTANCE Ltd: Timecode Receiver" },
1839 { 0x2B47, "NEWSUBSTANCE Ltd: LED Pixel Driver" },
1840 { 0x2B48, "Licht Technik Hagenbach Grill: MB Yoke" },
1841 { 0x2B49, "Stops Mops GmbH: Desk Dough Beam" },
1842 { 0x2B4A, "elements: DEX 8" },
1843 { 0x2B4B, "LumiOS: eDLC4" },
1844 { 0x2B4C, "LumiOS: eDLC1" },
1845 { 0x2B4D, "LumiOS: eDMX1" },
1846 { 0x2B4E, "LumiOS: eDMX12" },
1847 { 0x2B4F, "LumiOS: eDMX4" },
1848 { 0x2B50, "ADL Electronics Ltd: ADL NET SERVER" },
1849 { 0x2B51, "ADL Electronics Ltd: ADL DIM SW 220 6 5" },
1850 { 0x2B52, "ADL Electronics Ltd: ADL DIM SW 220 6 3" },
1851 { 0x2B53, "ADL Electronics Ltd: ADL DIM SW 220 24 3" },
1852 { 0x2B54, "ADL Electronics Ltd: ADL DIM SW 220 12 3" },
1853 { 0x2B55, "ADL Electronics Ltd: ADL SW 220 6 5" },
1854 { 0x2B56, "ADL Electronics Ltd: ADL SW 220 12 3" },
1855 { 0x2B57, "ADL Electronics Ltd: ADL DIM 220 6 5" },
1856 { 0x2B58, "ADL Electronics Ltd: ADL DIM 220 6 1 LED" },
1857 { 0x2B59, "ADL Electronics Ltd: ADL DIM 220 12 1 LED" },
1858 { 0x2B5A, "ADL Electronics Ltd: ADL DIM 220 12 3" },
1859 { 0x2B5B, "ADL Electronics Ltd: ADL DC WSO Note" },
1860 { 0x2B5C, "ADL Electronics Ltd: ADL DMX NetGate Mini" },
1861 { 0x2B5D, "ADL Electronics Ltd: ADL DMX NetGate SPI" },
1862 { 0x2B5E, "ADL Electronics Ltd: ADL DMX NetGate DALI" },
1863 { 0x2B5F, "LRS Solutions: LRS ControlBridge" },
1864 { 0x2B60, "Pioneer lighting solutions india pvt ltd: PL NODE 8" },
1865 { 0x2B61, "AECO 10: AECO 10" },
1866 { 0x2B62, "Acme: AECO 12" },
1867 { 0x2B63, "Acme: AECO 5" },
1868 { 0x2B64, "Acme: AECO 20" },
1869 { 0x2B65, "Acme: AECO 8" },
1870 { 0x2B66, "Acme: AECO 22" },
1871 { 0x2B67, "CLAYPAKY: TAMBORA BATTEN SQUARE" },
1872 { 0x2B68, "CLAYPAKY: TAMBORA BATTEN ROUND" },
1873 { 0x2B69, "WHITEvoid: Comms Module" },
1874 { 0x2B6A, "Martin Professional: PDE Junction Box Active" },
1875 { 0x2B6B, "Martin Professional: VDO Atomic Bold" },
1876 { 0x2B6C, "SLLCP: NodeSTereo" },
1877 { 0x2B6D, "Acme: NEOZONE" },
1878 { 0x2B6E, "Acme: FLASHBOLT" },
1879 { 0x2B6F, "Acme: OCTOPUS 8" },
1880 { 0x2B70, "SLLCP: NodeSTereo2" },
1881 { 0x2B71, "Tavlintsev Timofey: LedMapper" },
1882 { 0x2B72, "Tyler Ward: POE stack light" },
1883 { 0x2B73, "Alexin Smart Integrations: RTI colorpicker driver" },
1884 { 0x2B74, "Wireless Solution Sweden AB: W DMX WiFi Bridge F 2" },
1885 { 0x2B75, "Wireless Solution Sweden AB: W DMX WiFi Bridge F 1" },
1886 { 0x2B76, "LumenRadio: CRMX Aurora" },
1887 { 0x2B77, "LumenRadio AB: CRMX Stardust" },
1888 { 0x2B78, "Schnick Schnack Systems GmbH: Pixel Gate Mini" },
1889 { 0x2B79, "LIGEO GmbH: LIGEO GATEWAY G2" },
1890 { 0x2B7A, "Strike Theatre Electronics LLC: Hellbender Console" },
1891 { 0x2B7B, "Elation Lighting: EP2" },
1892 { 0x2B7C, "Locimation Pty Ltd: LX Toolkit" },
1893 { 0x2B7D, "NEWSUBSTANCE Ltd: Media Server" },
1894 { 0x2B7E, "Yarilo Pro: Pixel Mini" },
1895 { 0x2B7F, "StrongLED Lighting Systems Suzhou Co Ltd: IP Controller" },
1896 { 0x2B80, "Wattle IT: Kanet" },
1897 { 0x2B81, "kuwatec Inc: PrefLight" },
1898 { 0x2B82, "kuwatec Inc: Ex2" },
1899 { 0x2B83, "Chauvet Professional: COLORado PXL BAR 16" },
1900 { 0x2B84, "Chauvet Professional: COLORado PXL BAR 8" },
1901 { 0x2B85, "Falcon Christmas: FPP" },
1902 { 0x2B86, "LIGEO GmbH: LIGEO WIFI G1" },
1903 { 0x2B87, "Imlight Electronics: Netline 2" },
1904 { 0x2B88, "Imlight Electronics: Netline 8" },
1905 { 0x2B89, "Imlight Electronics: Netline 4" },
1906 { 0x2B8A, "Imlight Electronics: DimRack 96" },
1907 { 0x2B8B, "Imlight Electronics: DimRack 48" },
1908 { 0x2B8C, "DTS Illuminazione srl: ALCHEMY 7 F" },
1909 { 0x2B8D, "Steinigke Showtechnic GmbH: DXT PoE Node I" },
1910 { 0x2B8E, "Chauvet Professional: Maverick Storm 2 BeamWash" },
1911 { 0x2B8F, "Arkaos: MediaMaster6" },
1912 { 0x2B90, "ALPHA LITE: ALPHA LITE" },
1913 { 0x2B91, "LED CONTROL PTE LTD: MX96 v2" },
1914 { 0x2B92, "LED CTRL: LED CTRL" },
1915 { 0x2B93, "control8r: MIDIMonster" },
1916 { 0x2B94, "StageTubes: MatrixEngine" },
1917 { 0x2B95, "Pippin Technical Service: PTS Limelight" },
1918 { 0x2B96, "Emporio On Stage: EosOemController" },
1919 { 0x2B97, "Integrated System Technologies Ltd: iDrive Eco 12" },
1920 { 0x2B98, "MakePro X: Glue" },
1921 { 0x2B99, "GODOX PHOTO EQUIPMENT CO LTD: LED Light" },
1922 { 0x2B9A, "Lucenti: Blackwave PixlDrive8 Pro" },
1923 { 0x2B9B, "LSC ControlSystems Pty Ltd: TRS Rack" },
1924 { 0x2B9C, "Acme: HAIL" },
1925 { 0x2B9D, "Acme: PIXEL LINE IP" },
1926 { 0x2B9E, "L4S GmbH: ETH Controller 10x1024" },
1927 { 0x2B9F, "CLAYPAKY: TAMBORA FLASH" },
1928 { 0x2BA0, "CLAYPAKY: TAMBORA LINEAR 100" },
1929 { 0x2BA1, "Luminex Lighting Control Equipment: LumiNode 4 Wall" },
1930 { 0x2BA2, "CLAYPAKY: MINIB" },
1931 { 0x2BA3, "Vari Lite: VL internal node" },
1932 { 0x2BA4, "Pixsper: LXMax" },
1933 { 0x2BA5, "Steinigke Showtechnic GmbH: IP PLH 420 Moving Head SpotBeam" },
1934 { 0x2BA6, "Steinigke Showtechnic GmbH: IP PLB420 Moving Head Beam" },
1935 { 0x2BA7, "Integrated System Technologies Ltd: iDrive Atlas 36" },
1936 { 0x2BA8, "Integrated System Technologies Ltd: iDrive Atlas 12" },
1937 { 0x2BA9, "equivalent: LSSR 65" },
1938 { 0x2BAA, "White Wing Logic: Ethersplitter" },
1939 { 0x2BAB, "LUXIBEL: B BLAST" },
1940 { 0x2BAC, "LUXIBEL: B BLAST PRO" },
1941 { 0x2BAD, "JentonDimaco: VeriPACK" },
1942 { 0x2BAE, "AhojPepo eu: Node1w1" },
1943 { 0x2BAF, "Schannherz Elektronikai Mahely: MUEB 4" },
1944 { 0x2BB0, "Shenzhen ImagineVision Technology Limited: ZOLAR Toliman 30C" },
1945 { 0x2BB1, "Yarilo Pro: LanDMX8DIN" },
1946 { 0x2BB2, "SoundSwitch: SoundSwitch" },
1947 { 0x2BB3, "Shenzhen ImagineVision Technology Limited: ZOLAR Vega 30C" },
1948 { 0x2BB4, "Shenzhen ImagineVision Technology Limited: ZOLAR Toliman 30Cb" },
1949 { 0x2BB5, "Shenzhen ImagineVision Technology Limited: ZOLAR Toliman 30S" },
1950 { 0x2BB6, "Lichtmanufaktur Berlin GmbH: Lithernet Casambi Gateway" },
1951 { 0x2BB7, "Tank Serbatoio Culturale: TASV" },
1952 { 0x2BB8, "L4S GmbH: ETH Controller 10x1024b" },
1953 { 0x2BB9, "expanseElectronics: soloWiFi" },
1954 { 0x2BBA, "expanseElectronics: dualETH" },
1955 { 0x2BBB, "Chauvet Professional: Maverick Storm 4 Profile" },
1956 { 0x2BBC, "Chauvet Professional: Maverick Storm 2 Profile" },
1957 { 0x2BBD, "Adkins Professional Lighting: 6x6 Watt RGBAW UV FlatPar" },
1958 { 0x2BBE, "Shenzhen ImagineVision Technology Limited: ZOLAR" },
1959 { 0x2BBF, "Manu: Enttec" },
1960 { 0x2BC0, "GVA Lighting Inc: PDC-G5" },
1961 { 0x2BC1, "Subsomav Lda: MyPocketNode" },
1962 { 0x2BC2, "Krypton: P800 IP" },
1963 { 0x2BC3, "Krypton: BRUTE" },
1964 { 0x2BC4, "SUPER CAN Light: HDMI Video Player" },
1965 { 0x2BC5, "SUPER CAN Industry Growing Co LTD: ETA Node" },
1966 { 0x2BC6, "Krypton: X Treme 1100" },
1967 { 0x2BC7, "Skaarhoj: BluePill" },
1968 { 0x2BC8, "ADJ Products: Pixie Driver 8000" },
1969 { 0x2BC9, "riccarf: asa" },
1970 { 0x2BCA, "ON LX Limited: Ctrl Engine" },
1971 { 0x2BCB, "nicoleaudio: daslight4" },
1972 { 0x2BCC, "Briteq: BTX LIGHTSTRIKE" },
1973 { 0x2BCD, "Company 235 LLC: OpenLCP" },
1974 { 0x2BCE, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node 2P" },
1975 { 0x2BCF, "CHAUVET: DMX AN" },
1976 { 0x2BD0, "Automatic Devices Company: ADC Clear Path Controller" },
1977 { 0x2BD1, "edelkrone: LightONE" },
1978 { 0x2BD2, "JPK Systems Limited: LeDMX4 MAX" },
1979 { 0x2BD3, "JPK Systems Limited: LeDMX2 MAX" },
1980 { 0x2BD4, "JPK Systems Limited: eDMX4 MAX ISODIN11" },
1981 { 0x2BD5, "JPK Systems Limited: eDMX4 MAX DIN" },
1982 { 0x2BD6, "JPK Systems Limited: ultraDMX MAX" },
1983 { 0x2BD7, "MLH Electronics: LEDstrip controller" },
1984 { 0x2BD8, "FixtureMapper: FixtureMapper" },
1985 { 0x2BD9, "Mantic Lighting Appliance Co Ltd: Matrix M801" },
1986 { 0x2BDA, "Litegear Inc: LiteDimmer" },
1987 { 0x2BDB, "Litegear Inc: Litemat" },
1988 { 0x2BDC, "TORRES: DMXAN" },
1989 { 0x2BDD, "HongYuan: HY001" },
1990 { 0x2BDE, "Chauvet Professional: STRIKE Bolt" },
1991 { 0x2BDF, "Chauvet Professional: Color STRIKE L" },
1992 { 0x2BE0, "USHIO LIGHTING INC: Amata2" },
1993 { 0x2BE1, "Mate LLC: MEL" },
1994 { 0x2BE2, "Litegear Inc: LiteDimmerB" },
1995 { 0x2BE3, "CLAYPAKY: MINI B SPOT" },
1996 { 0x2BE4, "CLAYPAKY: ACTORIS PARLED RGBW" },
1997 { 0x2BE5, "CLAYPAKY: TAMBORA LINEAR 60" },
1998 { 0x2BE6, "arpschuino: arpschuino32" },
1999 { 0x2BE7, "xiaoxu: DMX512 Expander" },
2000 { 0x2BE8, "MODUS: Wi Fi ColorBox" },
2001 { 0x2BE9, "Home Assistant Core Team and Community: Home Assistant" },
2002 { 0x2BEA, "LKE Lasershow: LED Driver" },
2003 { 0x2BEB, "Jorge Lighting: Obsidian EN4" },
2004 { 0x2BEC, "Guangdong Nanguang Photo Video Systems Co Ltd: NANLUX" },
2005 { 0x2BED, "Martin Professional: MAC Aura XIP" },
2006 { 0x2BEE, "mad: ks910p" },
2007 { 0x2BEF, "allroundDigital: cuewise Audio" },
2008 { 0x2BF0, "Aircoookie: WLED" },
2009 { 0x2BF1, "JPK Systems Limited: eDMX4 MAX" },
2010 { 0x2BF2, "JPK Systems Limited: eDMX2 MAX" },
2011 { 0x2BF3, "JPK Systems Limited: eDMX1 MAX" },
2012 { 0x2BF4, "JPK Systems Limited: eDMX4 MAX ISODIN22" },
2013 { 0x2BF5, "Fufeng lighting: EN8" },
2014 { 0x2BF6, "PH Lighting: LCI WiFi MINI" },
2015 { 0x2BF7, "PH Lighting: LCI WiFi MAX" },
2016 { 0x2BF8, "Steinigke Showtechnic GmbH: LED IP Atmo Blinder 9" },
2017 { 0x2BF9, "Astera: AsteraBox Wifi" },
2018 { 0x2BFA, "Ex Machina: lonestar" },
2019 { 0x2BFB, "Showtacle Ltd: SPI LED 2" },
2020 { 0x2BFC, "JPK Systems Limited: eDMX1 MAX DIN" },
2021 { 0x2BFD, "Vari Lite: Neo" },
2022 { 0x2BFE, "Vari Lite: ZerOS" },
2023 { 0x2BFF, "NEWSUBSTANCE Ltd: Wireless LED Pixel Driver" },
2024 { 0x2C00, "gobo ws: IoT lighting gateway" },
2025 { 0x2C01, "United Protocols: UP8420" },
2026 { 0x2C02, "United Protocols: UP8410" },
2027 { 0x2C03, "PIONEER LIGHTING SOLUTIONS INDIA PVT LTD: PL NODE 4" },
2028 { 0x2C04, "Chauvet Professional: onAir IP Panel 3" },
2029 { 0x2C05, "Lumascape: Lumascape PSync 010" },
2030 { 0x2C06, "Lumascape: Lumascape PSync 009" },
2031 { 0x2C07, "Lumascape: Lumascape PSync 008" },
2032 { 0x2C08, "Lumascape: Lumascape PSync 007" },
2033 { 0x2C09, "Lumascape: Lumascape PSync 006" },
2034 { 0x2C0A, "Lumascape: Lumascape PSync 005" },
2035 { 0x2C0B, "Lumascape: Lumascape PSync 004" },
2036 { 0x2C0C, "Lumascape: Lumascape PSync 003" },
2037 { 0x2C0D, "Lumascape: Lumascape PSync 002" },
2038 { 0x2C0E, "Lumascape: Lumascape PSync 001" },
2039 { 0x2C0F, "CLAYPAKY: SKYLOS" },
2040 { 0x2C10, "Showtacle Ltd: Reactivo 2" },
2041 { 0x2C11, "PXM: Px914" },
2042 { 0x2C12, "Cronic Industries: FlexNode S1" },
2043 { 0x2C13, "Chauvet Professional: onAir Panel 4 IP Hard" },
2044 { 0x2C14, "Chauvet Professional: Strike Array 1" },
2045 { 0x2C15, "rosdi ab latiff: TouchDesigner" },
2046 { 0x2C16, "VINGTQUATREVOLTS: D Light" },
2047 { 0x2C17, "Synthesis LED: Synthesis Pro" },
2048 { 0x2C18, "AULIOS GmbH: AULIOS" },
2049 { 0x2C19, "St Andrews: Dot 2" },
2050 { 0x2C1A, "Digipet: Win Digipet" },
2051 { 0x2C1B, "Chauvet Professional: Maverick Storm 3 BeamWash" },
2052 { 0x2C1C, "Chauvet Professional: Maverick Force 3 Profile" },
2053 { 0x2C1D, "Chauvet Professional: Maverick Force 2 Beam" },
2054 { 0x2C1E, "Chauvet Professional: COLORado PXL Curve 12" },
2055 { 0x2C1F, "Chauvet Professional: Maverick Storm 1 Beam" },
2056 { 0x2C20, "Chauvet Professional: Maverick Storm 1 Hybrid" },
2057 { 0x2C21, "Steinigke Showtechnic GmbH: LED IP Atmo Bar 10" },
2058 { 0x2C22, "Acme: LIGHTNING" },
2059 { 0x2C23, "CLAYPAKY: MIDIB FX" },
2060 { 0x2C24, "CLAYPAKY: SHARPY X SPOT" },
2061 { 0x2C25, "CLAYPAKY: AROLLA AQUA" },
2062 { 0x2C26, "CLAYPAKY: K15 AQUA" },
2063 { 0x2C27, "CLAYPAKY: ACTORIS PROFILE FC" },
2064 { 0x2C28, "CLAYPAKY: MINI B AQUA" },
2065 { 0x2C29, "Steinigke Showtechnic GmbH: DXT Pixel Node IV" },
2066 { 0x2C2A, "Vivalyte BV: LEDLogix" },
2067 { 0x2C2B, "PXL Lighting: B1" },
2068 { 0x2C2C, "Pyrodigy Production: DAC" },
2069 { 0x2C2D, "Chauvet Professional: Strike Array 2 FC" },
2070 { 0x2C2E, "Chauvet Professional: Strike Array 4 FC" },
2071 { 0x2C2F, "Chauvet Professional: Color Strike Duo" },
2072 { 0x2C30, "Plura: SPT" },
2073 { 0x2C31, "ARGETRON: Norval" },
2074 { 0x2C32, "PXM: Rh836" },
2075 { 0x2C33, "Plura: TRC" },
2076 { 0x2C34, "Plura: ELC" },
2077 { 0x2C35, "Plura: TCUH1D" },
2078 { 0x2C36, "Plura: SPTH1" },
2079 { 0x2C37, "Plura: TCUH1" },
2080 { 0x2C38, "Plura: TCU MTD ID" },
2081 { 0x2C39, "Plura: TCU" },
2082 { 0x2C3A, "Plura: SPT MTD ID" },
2083 { 0x2C3B, "Plura: UD300D" },
2084 { 0x2C3C, "Plura: UD300" },
2085 { 0x2C3D, "Plura: UD56S" },
2086 { 0x2C3E, "Plura: UD56" },
2087 { 0x2C3F, "Plura: UD56 8" },
2088 { 0x2C40, "Plura: UD25 8" },
2089 { 0x2C41, "Plura: UDD25" },
2090 { 0x2C42, "Plura: UD25" },
2091 { 0x2C43, "LSC Control Systems Pty Ltd: NEXEN DIN" },
2092 { 0x2C44, "LSC Control Systems Pty Ltd: NXD4" },
2093 { 0x2C45, "LSC Control Systems Pty Ltd: NXW2" },
2094 { 0x2C46, "LSC Control Systems Pty Ltd: NXP2" },
2095 { 0x2C47, "Acme: XA 2000 BSWF IP" },
2096 { 0x2C48, "Acme: XA 1000 BW IP" },
2097 { 0x2C49, "Acme: XA 1000 BSWF IP" },
2098 { 0x2C4A, "Acme: TS 500 RGBA" },
2099 { 0x2C4B, "Acme: TS 500 CW WW" },
2100 { 0x2C4C, "Acme: TB 5 IP" },
2101 { 0x2C4D, "Acme: TB 5" },
2102 { 0x2C4E, "Acme: STROBE 7 IP" },
2103 { 0x2C4F, "Acme: MB 1000" },
2104 { 0x2C50, "Acme: LP F3000" },
2105 { 0x2C51, "Acme: HUE 6 IP" },
2106 { 0x2C52, "Acme: CM S2" },
2107 { 0x2C53, "Acme: CM 1000Z" },
2108 { 0x2C54, "Acme: BLINDER BAR IP" },
2109 { 0x2C55, "Acme: ARC 640" },
2110 { 0x2C56, "Acme: STROBE 1 IP" },
2111 { 0x2C57, "Acme: ARC ST200" },
2112 { 0x2C58, "GLP German Light Products INC: Drixl" },
2113 { 0x2C59, "GLP German Light Products INC: Scenex PixiPower" },
2114 { 0x2C5A, "Synthesis LED: Synthesis Assistant tool" },
2115 { 0x2C5B, "SmartShow UK Ltd: Pro ONE" },
2116 { 0x2C5C, "Bulldog Lighting and Events: Armani Cobra 4" },
2117 { 0x2C5D, "Bulldog Lighting and Events: Diesel 12" },
2118 { 0x2C5E, "Bulldog Lighting and Events: Diesel 24" },
2119 { 0x2C5F, "Singularity UK Ltd: rdmInspect" },
2120 { 0x2C60, "ARCTOS Showlasertechnik GmbH: Orbit" },
2121 { 0x2C61, "CLAYPAKY: RHAPSODY" },
2122 { 0x2C62, "ChamSys Ltd: QuickQ" },
2123 { 0x2C63, "PIXILAB Technologies AB: PIXILAB Blocks" },
2124 { 0x2C64, "JPK Systems Limited: eDMX4 MAX ISODIN" },
2125 { 0x2C65, "JPK Systems Limited: eDMX8 MAX" },
2126 { 0x2C66, "CLAYPAKY: SINFONYA PROFILE HP" },
2127 { 0x2C67, "CLAYPAKY: SINFONYA PROFILE 600EX" },
2128 { 0x2C68, "CLAYPAKY: RHAPSODYA" },
2129 { 0x2C69, "CLAYPAKY: SKYLOS NV" },
2130 { 0x2C6A, "Onderweg Software: Onderweg DMX Library" },
2131 { 0x2C6B, "ChromaQ: 2inspire 300" },
2132 { 0x2C6C, "ChromaQ: 2inspire 200" },
2133 { 0x2C6D, "ChromaQ: 2inspire 100" },
2134 { 0x2C6E, "DTS Illuminazione srl: SYNERGY 6 PROFILE" },
2135 { 0x2C6F, "TELMIC Neo: Recoller" },
2136 { 0x2C70, "CB Electronics: TC 5 Midi Timecode Interface" },
2137 { 0x2C71, "BRITEQ Beglec NV: BTX SKYRAN" },
2138 { 0x2C72, "JPK Systems Limited: eDMX8 MAX DIN" },
2139 { 0x2C73, "Chauvet Professional: onAir B6" },
2140 { 0x2C74, "Chauvet Professional: onAir B4" },
2141 { 0x2C75, "Chauvet Professional: onAir B1" },
2142 { 0x2C76, "Swisson AG: XMT 500" },
2143 { 0x2C77, "Kino Flo Lighting Systems: Celeb Ikon 12" },
2144 { 0x2C78, "Kino Flo Lighting Systems: Celeb Ikon 6" },
2145 { 0x2C79, "Kino Flo Lighting Systems: Diva Lux 4" },
2146 { 0x2C7A, "Kino Flo Lighting Systems: Diva Lux 2" },
2147 { 0x2C7B, "Kino Flo Lighting Systems: Diva Lux 1" },
2148 { 0x2C7C, "Kino Flo Lighting Systems: FreeFrame Control 2" },
2149 { 0x2C7D, "Kino Flo Lighting Systems: FreeFrame P3" },
2150 { 0x2C7E, "Kino Flo Lighting Systems: FreeFrame P2" },
2151 { 0x2C7F, "Kino Flo Lighting Systems: FreeFrame P1" },
2152 { 0x2C80, "Kino Flo Lighting Systems: LED Fixture" },
2153 { 0x2C81, "Chauvet Professional: Epix Drive 4000X IP" },
2154 { 0x2C82, "Briteq Beglec NV: BT NODE24 Mk2" },
2155 { 0x2C83, "Briteq Beglec NV: BTI LIGHTSTRIKE IP66" },
2156 { 0x2C84, "ChamSys Ltd: MagicHD" },
2157 { 0x2C85, "ChamSys Ltd: MagicVis" },
2158 { 0x2C86, "Lighting Infusion LLC: Streaming Toolkit" },
2159 { 0x2C87, "Shenzhen Lumi Lime Technology Limited: LA01" },
2160 { 0x2C88, "Steinigke Showtechnic GmbH: eurolite Light Captain" },
2161 { 0x2C89, "ADJ Products: Wifi Net 2" },
2162 { 0x2C8A, "ADJ Products: Net 8" },
2163 { 0x2C8B, "ADJ Products: Net 4" },
2164 { 0x2C8C, "Martin Professional: ERA 700 Performance IP" },
2165 { 0x2C8D, "White WIng Logic: PoE LED controller MW10P" },
2166 { 0x2C8E, "DALCERO ENGINEERING: OemDalceroGateway04" },
2167 { 0x2C8F, "DALCERO ENGINEERING: OemDalceroGateway01" },
2168 { 0x2C90, "Chauvet Professional: Maverick Silens 2X Profile" },
2169 { 0x2C91, "Chauvet Professional: Maverick Silens 1X Profile" },
2170 { 0x2C92, "Elation Lighting: EN6 IP" },
2171 { 0x2C93, "Elation Lighting: EN12i" },
2172 { 0x2C94, "Elation Lighting: EP1" },
2173 { 0x2C95, "ADB: ORKIS CYC" },
2174 { 0x2C96, "Emilio Karas: Fixture Visualizer unreleased" },
2175 { 0x2C97, "Steinigke Showtechnic GmbH: LED Pixel Matrix Panel 5x5 RGBWW" },
2176 { 0x2C98, "MODUS: MODUS Max08" },
2177 { 0x2C99, "IQ COMPANY Ltd: DOTIMAGE" },
2178 { 0x2C9A, "Chauvet Professional: Maverick Storm 4 SoloWash" },
2179 { 0x2C9B, "CLAYPAKY: Deprecated1" },
2180 { 0x2C9C, "Thomas Neumann Licht und Tontechnik: Levelcheck" },
2181 { 0x2C9D, "LaserAV: DistroNode" },
2182 { 0x2C9E, "LumenRadio AB: CRMX Galileo MAX" },
2183 { 0x2C9F, "Martin Professional: MAC One" },
2184 { 0x2CA0, "LSC Control Systems Pty Ltd: GENX" },
2185 { 0x2CA1, "LSC Control Systems Pty Ltd: APSX" },
2186 { 0x2CA2, "Chauvet Professional: Strike Rail" },
2187 { 0x2CA3, "Rift Labs: Kelvin" },
2188 { 0x2CA4, "SG Product: ArtnetWirelessSerialLed" },
2189 { 0x2CA5, "Constell8: KLSTR CTRL" },
2190 { 0x2CA6, "Chauvet Professional: Maverick Storm 3X BeamWash" },
2191 { 0x2CA7, "Steinigke Showtechnic GmbH: LED PIX 12 Swing QCL Zoom Bar" },
2192 { 0x2CA8, "Chauvet Professional: Maverick Storm 2 Profile M" },
2193 { 0x2CA9, "OSRAM: RGBI controller" },
2194 { 0x2CAA, "Elation Lighting: EP1D" },
2195 { 0x2CAB, "Elation Lighting: EN6D" },
2196 { 0x2CAC, "Elation Lighting: DA2410V" },
2197 { 0x2CAD, "Acme: XP 400 BEAM IP" },
2198 { 0x2CAE, "Acme: Deprecated1" },
2199 { 0x2CAF, "Acme: CM 7 IP" },
2200 { 0x2CB0, "Acme: XP 500 BEAM IP" },
2201 { 0x2CB1, "Acme: Deprecated2" },
2202 { 0x2CB2, "Acme: BLB 10 IP" },
2203 { 0x2CB3, "Acme: BLB 5 IP" },
2204 { 0x2CB4, "Acme: AECO 30 IP" },
2205 { 0x2CB5, "Acme: Deprecated3" },
2206 { 0x2CB6, "Acme: XA 600 BSWF IP" },
2207 { 0x2CB7, "Acme: XA 600 BSW IP" },
2208 { 0x2CB8, "Cindy Professional Lighting Co Ltd: TOUGH 800 BAR" },
2209 { 0x2CB9, "Imlight Electronics: Apollo CCS" },
2210 { 0x2CBA, "FTSLED: Cerise 1U USB" },
2211 { 0x2CBB, "FTSLED: Cerise 2U Pro" },
2212 { 0x2CBC, "FTSLED: Cerise 2U Pro Wired" },
2213 { 0x2CBD, "FTSLED: Cerise 4U Pro" },
2214 { 0x2CBE, "FTSLED: Cerise 4U Pro Wired" },
2215 { 0x2CBF, "FTSLED: Cerise Wired 1U" },
2216 { 0x2CC0, "NEWSUBSTANCE Ltd: LoRa LED Controller" },
2217 { 0x2CC1, "tarm AG: tarm BLAZE" },
2218 { 0x2CC2, "Hondel Lighting Limited: HDS308A" },
2219 { 0x2CC3, "Lighthaus: Lighthaus Controller A" },
2220 { 0x2CC4, "Advatek Lighting Pty Ltd: PixLite T16X S Mk3" },
2221 { 0x2CC5, "Chauvet Professional: Maverick Silens 2 SoloWash" },
2222 { 0x2CC6, "kuwatec Inc: Ex4" },
2223 { 0x2CC7, "Vari Lite: RigSwitchPlus" },
2224 { 0x2CC8, "Cameo: P6" },
2225 { 0x2CC9, "Cameo: OTOS W12" },
2226 { 0x2CCA, "Cameo: OTOS W6" },
2227 { 0x2CCB, "Cameo: OTOS W3" },
2228 { 0x2CCC, "Cameo: OPUS X4" },
2229 { 0x2CCD, "Cameo: ORON H2" },
2230 { 0x2CCE, "Resolume: Resolume Arena" },
2231 { 0x2CCF, "Martin Professional: MAC Viper XIP" },
2232 { 0x2CD0, "RT DMX: RT DMX Device" },
2233 { 0x2CD1, "Particle Studio: Pixel Postie" },
2234 { 0x2CD2, "Colordreamer Technology Co Limited: CD Titan R8" },
2235 { 0x2CD3, "Tea Engineering Ltd: RazzleDMX" },
2236 { 0x2CD4, "DELTACAST: TriggersManager" },
2237 { 0x2CD5, "Event Lighting Pty Ltd: APRO4_IP" },
2238 { 0x2CD6, "Event Lighting Pty Ltd: APRO8" },
2239 { 0x2CD7, "Event Lighting Pty Ltd: APRO4" },
2240 { 0x2CD8, "Event Lighting Pty Ltd: APRO2" },
2241 { 0x2CD9, "GLP German Light Products GmbH: XDC1 IP Hybrid" },
2242 { 0x2CDA, "GLP German Light Products GmbH: JDC2 IP" },
2243 { 0x2CDB, "GLP German Light Products GmbH: impression X5 Bar 1000" },
2244 { 0x2CDC, "GLP German Light Products GmbH: impression X5 IP Bar" },
2245 { 0x2CDD, "GLP German Light Products GmbH: impression X5 IP Maxx" },
2246 { 0x2CDE, "GLP German Light Products GmbH: impression X5 Compact" },
2247 { 0x2CDF, "GLP German Light Products GmbH: impression X5" },
2248 { 0x2CE0, "Steinigke Showtechnic GmbH: LED Pixel Matrix Panel 2x5 RGBWW" },
2249 { 0x2CE1, "Steinigke Showtechnic GmbH: LED Pixel Matrix Bar 10 RGBWW" },
2250 { 0x2CE2, "Axion Lighting: Axion PoE WiFi DMX Controller" },
2251 { 0x2CE3, "Fufeng ligthing: ANP4 PRO IP" },
2252 { 0x2CE4, "Fufeng ligthing: ANP8 PRO" },
2253 { 0x2CE5, "Fufeng ligthing: ANP4 PRO" },
2254 { 0x2CE6, "Fufeng ligthing: ANP2 PRO" },
2255 { 0x2CE7, "ROBERT JULIAT: TRISTAN 1189" },
2256 { 0x2CE8, "ROBERT JULIAT: BIZET 1176" },
2257 { 0x2CE9, "ROBERT JULIAT: BIZET 67X" },
2258 { 0x2CEA, "Highlite International BV: Furion P602 Profile" },
2259 { 0x2CEB, "Highlite International BV: Furion P402 Profile" },
2260 { 0x2CEC, "Highlite International BV: Furion S602 Spot" },
2261 { 0x2CED, "Highlite International BV: Furion S402 Spot" },
2262 { 0x2CEE, "Highlite International BV: Furion W602 WashBeam" },
2263 { 0x2CEF, "Highlite International BV: Furion W402 WashBeam" },
2264 { 0x2CF0, "Highlite International BV: Furion H402 Hybrid" },
2265 { 0x2CF1, "Highlite International BV: Furion B402 Beam" },
2266 { 0x2CF2, "EXALUX: TiLINK" },
2267 { 0x2CF3, "Optoma Corporation: Projector" },
2268 { 0x2CF4, "Plura: SPTH1D" },
2269 { 0x2CF5, "City Theatrical: DMXcat E" },
2270 { 0x2CF6, "Chauvet Professional: Ovation E 2FCS" },
2271 { 0x2CF7, "Chauvet Professional: Ovation Reve F 3S" },
2272 { 0x2CF8, "Chauvet Professional: Ovation Reve E 3S" },
2273 { 0x2CF9, "Chauvet Professional: Strike Array 1BC" },
2274 { 0x2CFA, "Chauvet Professional: COLORado Solo FL" },
2275 { 0x2CFB, "Artistic Licence Engineering Ltd: TRUSS GATEWAY 4 RDM" },
2276 { 0x2CFC, "Artistic Licence Engineering Ltd: RACK DATA 8 RDM" },
2277 { 0x2CFD, "Artistic Licence Engineering Ltd: RACK GATEWAY 12 RDM" },
2278 { 0x2CFE, "Jiangmen Seekway Technology Limited: AN Controller" },
2279 { 0x2CFF, "Jiangmen Seekway Technology Limited: A308" },
2280 { 0x2D00, "Light Stream: Light Stream Player" },
2281 { 0x2D01, "kw Veranstaltungstechnik: Smart Test Tool" },
2282 { 0x2D02, "CLAYPAKY: VOLERO TWINS" },
2283 { 0x2D03, "CLAYPAKY: VOLERO CUBE" },
2284 { 0x2D04, "CLAYPAKY: PANIFY 2" },
2285 { 0x2D05, "CLAYPAKY: ACTORIS FRESNEL" },
2286 { 0x2D06, "CLAYPAKY: AROLLA WASH AQUA" },
2287 { 0x2D07, "CLAYPAKY: AROLLA AQUA LT" },
2288 { 0x2D08, "CLAYPAKY: ULTIMO BEAM" },
2289 { 0x2D09, "CLAYPAKY: ULTIMO SHARPY" },
2290 { 0x2D0A, "CLAYPAKY: ULTIMO HYBRID" },
2291 { 0x2D0B, "CLAYPAKY: TAMBORA STORMY LINEAR" },
2292 { 0x2D0C, "CLAYPAKY: TAMBORA GLARE" },
2293 { 0x2D0D, "CLAYPAKY: TAMBORA STORMY" },
2294 { 0x2D0E, "CLAYPAKY: TAMBORA RAYS" },
2295 { 0x2D0F, "CLAYPAKY: MINI B SPARKY AQUA" },
2296 { 0x2D10, "CLAYPAKY: MINI B AQUA PX" },
2297 { 0x2D11, "Martin Professional: P3 PowerPort 500 IP Install" },
2298 { 0x2D12, "Martin Professional: P3 PowerPort 500 IP Rental" },
2299 { 0x2D13, "Martin Professional: P3 PowerPort 2000" },
2300 { 0x2D14, "Martin Professional: Exterior DC Feeder" },
2301 { 0x2D15, "Martin Professional: Exterior AC Feeder" },
2302 { 0x2D16, "Martin Professional: Exterior Dot 9 Pro" },
2303 { 0x2D17, "Martin Professional: Exterior Dot 4 Pro" },
2304 { 0x2D18, "Hangzhou YD Illumination Co Ltd: LED Controller" },
2305 { 0x2D19, "Martin Professional: Exterior Dot 1 Pro" },
2306 { 0x2D1A, "Martin Professional: Exterior Dot HP Pro" },
2307 { 0x2D1B, "TELMIC Neo: U bar Trans" },
2308 { 0x2D1C, "TELMIC Neo: QUADTRA3" },
2309 { 0x8000, "Artistic Licence Engineering Ltd: Netgate XT" },
2310 { 0x8001, "Artistic Licence Engineering Ltd: Net Patch" },
2311 { 0x8002, "Artistic Licence Engineering Ltd: DMX Hub XT" },
2312 { 0x8003, "Artistic Licence Engineering Ltd: Four Play" },
2313 { 0xFFFF, "Artistic Licence Engineering Ltd: OemGlobal" },
2316 static value_string_ext artnet_oem_code_vals_ext
= VALUE_STRING_EXT_INIT(artnet_oem_code_vals
);
2320 * ESTA codes download date: 2024-10-04
2322 static const value_string artnet_esta_man_vals
[] = {
2323 { 0x0000, "ESTA / PLASA" },
2325 { 0x0002, "Abstract AVR Ltd." },
2326 { 0x0003, "Chromatech Lighting Co., Ltd." },
2327 { 0x0008, "Guangdong Nanguang Photo & Video Systems Co., Ltd." },
2328 { 0x0009, "Aputure Imaging Industries Co., Ltd." },
2329 { 0x000A, "Interactive Imagination Ltd." },
2330 { 0x000B, "Phospec Industries Inc." },
2331 { 0x000C, "WAC Lighting Co." },
2332 { 0x000D, "Guangzhou Haoteng Lighting Co., Ltd." },
2333 { 0x000E, "Yaoxing Lighting Equipment (Guanghzou) Co., Ltd." },
2334 { 0x000F, "Shenzhen L-Thinker Technology Co., Ltd." },
2335 { 0x0010, "Dongguan Mi Xing Electronic Technology Co., Ltd." },
2336 { 0x0011, "Beijing Kedeshengye Technology Service Co., Ltd." },
2337 { 0x0012, "Apex Pro Light Co., Ltd." },
2338 { 0x0013, "Litemover BV" },
2339 { 0x0014, "SIRS Electronics, Inc." },
2340 { 0x0015, "Lumencraft Lighting Solutions" },
2341 { 0x0016, "Shenzhen Xuntek Electronics Co., Ltd" },
2342 { 0x0017, "Ereimul" },
2343 { 0x0018, "Macroblock, Inc." },
2344 { 0x0019, "Odelic Co., Ltd." },
2345 { 0x001A, "DLL Ltd." },
2346 { 0x001B, "Changsha Sunrise Electronic Technology Co. Ltd." },
2347 { 0x001C, "Kindwin Technology (HK) Ltd." },
2348 { 0x001D, "Luminator Technology Group" },
2349 { 0x001E, "Shenzhen Lumi Lime Technology Limited" },
2350 { 0x0020, "Wattle IT" },
2351 { 0x0021, "Electric Foundry Ltd." },
2352 { 0x0022, "PixelFLEX, LLC" },
2353 { 0x0057, "Blackbezt Lighting Technology Co., Ltd." },
2354 { 0x0058, "Big Dipper Laser Science and Technology Co.,Ltd." },
2355 { 0x0059, "Laysion Lighting Technology Co., Ltd." },
2356 { 0x005A, "TPD Lighting" },
2357 { 0x006A, "AIMTECH Electronik Tasarim Ltd. Sti." },
2358 { 0x006B, "SALZBRENNER media GmbH" },
2359 { 0x006C, "Flash-Butrym Sp.J." },
2360 { 0x006D, "AA Tasarim Ltd." },
2361 { 0x006E, "WHITEvoid GmbH" },
2362 { 0x006F, "AC Power Distribution/ACT Lighting Inc." },
2363 { 0x0070, "Instalighting GmbH" },
2364 { 0x0071, "Guangzhou Huaxinyuan Electronics Co., Ltd." },
2365 { 0x0072, "Guangzhou Zenith Aurora Lighting Co., Ltd." },
2366 { 0x0073, "Meijay Technologies Co., Ltd." },
2367 { 0x0074, "Thomann GmbH" },
2368 { 0x0075, "ODELI" },
2369 { 0x0076, "R. S. Schwarze Elektrotechnik Moderne Industrieelektronik GmbH" },
2370 { 0x0077, "CHAMP Licht" },
2371 { 0x0078, "Andy Lighting Technology Group Ltd." },
2372 { 0x0079, "Leyard Opto Electronics Co., Ltd." },
2373 { 0x007A, "Equivalent" },
2374 { 0x007B, "alurays lighting technology GmbH" },
2375 { 0x007C, "Huizhou Desay Intelligent Technology Co., Ltd." },
2376 { 0x007D, "JMS Pro Light" },
2377 { 0x007E, "Stichting Hypar Collective" },
2378 { 0x0080, "Shenzhen AOTO Electronics Co., Ltd." },
2379 { 0x0081, "Pino Solutions" },
2380 { 0x0082, "LKE Lasershowtechnik GmbH" },
2381 { 0x0083, "Guangzhou Bright Moon Technology Co., Ltd." },
2382 { 0x0084, "LEDIXIS (Exalux brand)" },
2383 { 0x0085, "Guangzhou Nanshi Light Equipment Co., Ltd." },
2384 { 0x0086, "Intella System Co., Ltd." },
2386 { 0x0088, "Guangzhou YaFeng Optoelectronic Equipment Co., Ltd." },
2387 { 0x0089, "Vulcan Lighting" },
2388 { 0x008A, "Guangzhou Lees Electronics Co., Ltd." },
2389 { 0x008B, "Opto Tech Corporation" },
2390 { 0x008C, "LRX Lighting (Dwight Crane Ltd.)" },
2391 { 0x008D, "Guangzhou Minghao Electronic Technology Co., Ltd." },
2392 { 0x008E, "Guangzhou Ao Mei Di Stage Lighting Equipment Co.,Ltd." },
2393 { 0x008F, "Jiangmen Coolfish Technology Co., Ltd." },
2394 { 0x0090, "Cyclops Lighting" },
2395 { 0x0091, "Guangzhou Shuozhi Optoelectronic Technology Co., Ltd. (Konelite)" },
2396 { 0x0092, "digiLED (UK) Ltd." },
2397 { 0x0093, "Luminous Show Technology Ltd." },
2398 { 0x0094, "Joinmax Display Technology Co., Ltd." },
2399 { 0x0095, "Ningbo Jeg Lighting Tech Co., Ltd." },
2400 { 0x0096, "SiChuan YuZhiWei Information Technology Lt., Co." },
2401 { 0x0097, "AdvancedRay (Beijing) Science & Technology Industries Co., Ltd." },
2402 { 0x0098, "Dedo Weigert Film GmbH" },
2403 { 0x009A, "Golden Sea Disco Light Manufacturer" },
2404 { 0x009B, "Guangzhou Jiawei Electronic Technology Co., Ltd." },
2405 { 0x009C, "LuxBalance Lighting" },
2406 { 0x009E, "Guangzhou Flying Butterfly Stage Lighting Equipment Co., Ltd." },
2407 { 0x009F, "Enedo Power SpA" },
2408 { 0x00A0, "Shenzhen Dicolor Optoelectronics Co., Ltd." },
2409 { 0x00A1, "Creative Lighting And Sound Systems Pty Ltd." },
2410 { 0x00A2, "EMP Designs Ltd." },
2411 { 0x00A3, "GuangZhou Huanshi Lighting Equipment Co., Limited" },
2412 { 0x00A4, "SAKMA Electronica Industrial S.A.U." },
2413 { 0x00A5, "Delta Electronics, Inc." },
2414 { 0x00A6, "Sensation Lighting Technology Co., Ltd." },
2415 { 0x00A7, "Syncronorm GmbH" },
2416 { 0x00A8, "Iwasaki Electric Co., Ltd." },
2417 { 0x00A9, "Richter Lighting Technologies GmbH" },
2418 { 0x00AA, "Hangzhou Easun Technology Co., Ltd." },
2419 { 0x00AB, "MFX Asia Co., Ltd" },
2420 { 0x00AC, "ZhouChuang Industrial Co. Limited" },
2421 { 0x00AD, "ColorDeve Co. Limited" },
2422 { 0x00AE, "Vitrulux Ltd" },
2423 { 0x00AF, "NanoPLC LLC" },
2424 { 0x00B0, "ARENA LUCI s.r.l." },
2425 { 0x00B1, "Guangzhou Omarte Lighting Co., Ltd." },
2426 { 0x00B2, "unonovesette srl" },
2427 { 0x00B3, "LANTERN" },
2428 { 0x00B4, "Lumos Design" },
2429 { 0x00B5, "Suga koubou Co., Ltd." },
2430 { 0x00B6, "DiGidot Technologies BV" },
2431 { 0x00B7, "Bron Elektronik AG" },
2432 { 0x00B8, "Shenzhen Singba Light Technology Co., Ltd." },
2433 { 0x00B9, "Guangzhou Baiyun District Sanjie Eletronic Stage Lighting Audio Equipment Factory" },
2434 { 0x00BA, "LiteGear Inc." },
2435 { 0x00BB, "Digital Lighting Engineering & Design, LLC" },
2436 { 0x00BC, "Ambion GmbH (Ambrain)" },
2437 { 0x00BD, "numeo GmbH" },
2438 { 0x00BE, "The Light Luminary for Cine and TV S.L. (VELVET LIGHT)" },
2439 { 0x00BF, "LumiOS (GTR Industries)" },
2440 { 0x00C0, "Foshan Yinhe Lanjing Lighting & Electrical Co., Ltd." },
2441 { 0x00C1, "Jingchuang Water Technology" },
2442 { 0x00C2, "Ledogen" },
2443 { 0x00C3, "Xicato" },
2444 { 0x00C4, "Guangzhou Dahe Electronic Technology Co. Ltd." },
2445 { 0x00C5, "DAGE Stage Lighting Master Co., Ltd." },
2446 { 0x00C6, "Guangzhou Lantian Electronic Technology Co., Ltd." },
2448 { 0x00C8, "Constell8 NV" },
2449 { 0x00C9, "Pangaea Technology" },
2450 { 0x0101, "St. Anne Engineering GmbH" },
2451 { 0x0102, "Bortis Elektronik" },
2452 { 0x0103, "Fontana Technologies" },
2453 { 0x0104, "Blizzard Lighting, LLC" },
2454 { 0x0105, "LIGHTHOW (SHANGHAI) Ltd." },
2455 { 0x0106, "A.L.A. Equipment Company Ltd." },
2456 { 0x0107, "Inventronics (Hangzhou), Inc." },
2457 { 0x0108, "Haya Lighting Equipment Limited" },
2458 { 0x0109, "V-Productions" },
2459 { 0x010A, "Elektralite" },
2460 { 0x010B, "DesignLED Technology (HK) Co., Ltd." },
2461 { 0x010C, "SES (Entertainment Services) Ltd." },
2462 { 0x010D, "Lumos / DMLite" },
2463 { 0x010E, "Guangzhou ATON Lighting Technology Co.,Ltd" },
2464 { 0x010F, "Saco Technologies Inc." },
2465 { 0x0110, "APF S.r.l." },
2466 { 0x0111, "Radig Hard & Software" },
2467 { 0x0112, "RGB Lighting Equipment Co., Ltd." },
2468 { 0x0113, "Airstar SAS" },
2469 { 0x0114, "BSL Lighting" },
2470 { 0x0115, "Kontrolcla Show Control S.L." },
2471 { 0x0116, "SmoothLUX B.V." },
2472 { 0x0117, "AD Toyo Lighting (Guangzhou) Co.,Ltd" },
2473 { 0x0118, "Vello Light Co., Ltd." },
2474 { 0x0119, "Peter Schneyder Design Management GmbH" },
2475 { 0x011A, "Guangzhou Hotion Technology Co., Ltd." },
2476 { 0x011B, "Jumptronic GmbH" },
2477 { 0x011C, "Letong Electronic (Guangzhou) Co., Ltd." },
2478 { 0x011D, "Yangzhou Zhituo Lighting Vision Technology Co., Ltd." },
2479 { 0x011E, "Master LED" },
2480 { 0x011F, "STF s.r.l." },
2481 { 0x0144, "KW-Veranstaltungstechnik" },
2483 { 0x016D, "Hive Lighting" },
2484 { 0x016E, "Artled Technology Corp." },
2485 { 0x016F, "SQD Lighting Co. Ltd" },
2486 { 0x018F, "Guangzhou YiCheng Light Industry Ltd." },
2487 { 0x0190, "Wizlogics Co., Ltd." },
2488 { 0x0191, "Sycra Technologies" },
2489 { 0x0192, "Metro Marine LLC" },
2490 { 0x0193, "DMF Lighting" },
2491 { 0x0199, "Ocean LED Marine Ltd." },
2492 { 0x019A, "TwoGain Electronics" },
2493 { 0x019B, "ElectroTAS Soluciones Profesionales" },
2494 { 0x019C, "Ningbo Snappy Optoelectronics Co., Ltd." },
2495 { 0x019F, "DaisaLed Ltd." },
2496 { 0x01A0, "Light With LED" },
2497 { 0x01A1, "Yuesheng Stage Light Limited" },
2498 { 0x01A2, "Art Lighting Production, s.r.o." },
2499 { 0x01A3, "Dongguan Yongya Technology Co., Ltd" },
2500 { 0x01A4, "Custom Effects LED Solutions Inc." },
2501 { 0x01A5, "MJ Lighting Co., Ltd." },
2502 { 0x01A6, "Hengmei Lighting Technology Co., Ltd." },
2503 { 0x01A8, "ZongDa Photoelectricity Science and Technology Co., Ltd." },
2504 { 0x01A9, "Shenzhen Uniview LED Ltd. Co." },
2505 { 0x01AA, "Videndum Production Solutions Inc." },
2506 { 0x01AB, "Shanghai Euchips Industrial Co., Ltd." },
2507 { 0x01AC, "DongGuan Phcistar Optoelectronics Technology Co., Ltd." },
2508 { 0x01AF, "Hunan Minghe Opto Tech Co., Ltd." },
2509 { 0x01B1, "Lightcare A/S" },
2510 { 0x01B2, "DJSI Schinstad ANS (Northern Light)" },
2511 { 0x01B3, "Ricardo Dias" },
2512 { 0x01B4, "Inventeq B.V." },
2513 { 0x01B5, "Beijing Soft Rock Technology Development Co., Ltd." },
2514 { 0x01BE, "BEN-RI Electronica S.A." },
2515 { 0x01C7, "SCHIEDERWERK GmbH" },
2516 { 0x01C8, "Guangzhou JINLIN Stage Lighting Equipment Co., Ltd." },
2517 { 0x01C9, "ALPHA LITE Inc." },
2518 { 0x01CA, "CASCADE s.a.s." },
2519 { 0x01CB, "ILT Italy SRL" },
2520 { 0x01CC, "Portman Custom Lights" },
2521 { 0x01CD, "Compulite Systems (2000) LTD" },
2522 { 0x01CE, "Railiks Enterprises" },
2523 { 0x01CF, "SRM Technik GmbH" },
2524 { 0x01D0, "Shanghai Semping Electronics Co., Ltd." },
2525 { 0x01D1, "Yarilo Pro" },
2526 { 0x01D2, "GIP Innovation Tools GmbH" },
2527 { 0x01D3, "JSC Aksera" },
2528 { 0x01D4, "x-labs" },
2529 { 0x01D5, "Shenzhen Liantronics Co., Ltd" },
2530 { 0x01D6, "Argent Data Systems, Inc." },
2531 { 0x01D7, "LIMEDIA" },
2532 { 0x01D8, "Daniel Large Lighting" },
2533 { 0x01D9, "Lightronics Inc." },
2534 { 0x01DA, "Guangzhou Daisy Electronic Technology Co., Ltd." },
2535 { 0x01DB, "Logen Ltd." },
2536 { 0x01DC, "LED Linear GmbH" },
2537 { 0x01DD, "Photonia srl" },
2538 { 0x01DE, "Guangzhou Baiyun Xinxiang Lighting Equipment Factory (XPRO LIGHT)" },
2539 { 0x01DF, "GuangZhou Dream Lighting Equipment Co., Ltd." },
2540 { 0x01E0, "IBN Labs Ltd." },
2541 { 0x0200, "Lighting Infusion LLC" },
2542 { 0x0201, "Blinkinlabs, LLC" },
2543 { 0x0202, "Paul Heuts" },
2544 { 0x0203, "Artemide S.p.A" },
2545 { 0x0204, "LIGHTLINE Lasertechnik GmbH" },
2546 { 0x0205, "SmartShow UK" },
2547 { 0x0206, "Studio Due Light S.r.l." },
2548 { 0x0207, "SILL LIGHTS GmbH" },
2549 { 0x0208, "Shenzhen Yuming Vision Technology Co., Ltd." },
2550 { 0x0209, "ER Productions" },
2551 { 0x020A, "Seebacher GmbH" },
2552 { 0x0210, "Leksa Lighting Technologies Pvt. Ltd." },
2553 { 0x0211, "Arkaos S.A." },
2554 { 0x0212, "Frame The Space (FTSLED)" },
2555 { 0x0213, "Huizhou visionX Technology Co., Ltd." },
2556 { 0x0214, "Impactrum" },
2557 { 0x021A, "WizzuLED by Scooon" },
2558 { 0x0223, "ShenZhen Focus Vision Intelligent System Co., Ltd." },
2559 { 0x0224, "Vanguard LED Displays" },
2560 { 0x0225, "Northern Lights Electronic Design, LLC" },
2561 { 0x0235, "Company 235, LLC" },
2562 { 0x0242, "ABLELITE INTERNATIONAL" },
2563 { 0x024C, "FBFX Ltd" },
2564 { 0x025B, "Imlight-Showtechnic" },
2565 { 0x026F, "Acuity Brands Lighting Inc." },
2566 { 0x0280, "Arrigo Lighting" },
2568 { 0x028F, "GRE Alpha Electronics Ltd." },
2569 { 0x02A0, "LLC Likhoslavl Plant of Lighting Engineering (Svetotehnika)" },
2570 { 0x02A1, "LLC Moscow Experimental Lighting Plant (TeleMechanic)" },
2571 { 0x02A2, "OJSC Kadoshkinsky electrotechnical" },
2572 { 0x02A3, "Big Bang Lightning" },
2573 { 0x02A4, "McNicoll Entertainment Systems" },
2574 { 0x02AA, "Jinnax Opto Technology Co., Ltd." },
2575 { 0x02AB, "Rift Labs" },
2576 { 0x02AC, "PSL Electronik Sanayi ve Ticaret A.S." },
2577 { 0x02AD, "SAVI Controls LLC" },
2578 { 0x02AE, "Tea Engineering Ltd." },
2579 { 0x02AF, "JMAZ Group, Inc." },
2580 { 0x02B0, "DMXControl-Projects e.V." },
2581 { 0x02B1, "Global Design Solutions Korea" },
2582 { 0x02B2, "Guangzhou Harbinger Co., Ltd." },
2583 { 0x02BA, "Chainzone Technology (Foshan) Co., Ltd." },
2584 { 0x02BC, "PXP Technology" },
2585 { 0x02BD, "RE-Engineering" },
2586 { 0x02C8, "Growflux LLC" },
2587 { 0x02C9, "Theatrixx Technologies" },
2588 { 0x02CA, "Acclaim Lighting" },
2589 { 0x02CB, "GVA Lighting, Inc." },
2590 { 0x02CC, "Brightix" },
2591 { 0x02D0, "Winona Lighting" },
2592 { 0x02D1, "Hoffmeister Leuchten GmbH" },
2593 { 0x02E1, "Tait Towers Manufacturing Inc." },
2594 { 0x02E2, "CLF Lighting BV." },
2595 { 0x02EA, "d3 Technologies Ltd." },
2596 { 0x02EB, "Amolvin Research & Development Lab." },
2597 { 0x02EC, "Lutron Electronics" },
2598 { 0x02ED, "OpenLX SP Ltd." },
2599 { 0x02EE, "Firma GUTKOWSKI - Gutkowski Jan" },
2600 { 0x02EF, "ABLETECH Co., Ltd." },
2601 { 0x02F0, "iColor LED Shenzhen Co., Ltd." },
2602 { 0x02F1, "Lichtmanufaktur Berlin GmbH" },
2603 { 0x02FF, "Guangzhou Eway Stage Equipment Technology Co., Ltd." },
2604 { 0x0302, "Swefog Technology Group AB" },
2605 { 0x0303, "Shanghai Moons' Automation Control Co., Ltd" },
2606 { 0x0305, "DiCon Fiberoptics, Inc." },
2607 { 0x0306, "feno GmbH" },
2608 { 0x0307, "Ledium Kft." },
2609 { 0x0308, "ImageCue LLC" },
2610 { 0x030A, "Shenzhen Colordreamer Tech Ltd." },
2611 { 0x030B, "Guangzhou Wanrui Stage Light Equipment Co., Ltd." },
2612 { 0x030F, "Guangzhou Litewise Lighting Equipments Co., Ltd. dba EK Lights" },
2613 { 0x0311, "Guangzhou PUGUANG Electronic Technology Co., Ltd." },
2614 { 0x0312, "Guangzhou Xingkong Studio Lighting Co., Ltd." },
2615 { 0x032C, "Carallon Ltd." },
2616 { 0x033A, "Lux Lumen" },
2617 { 0x034B, "Rosstech Signals Inc." },
2618 { 0x0378, "KASUGA" },
2619 { 0x038F, "Strich Labs" },
2620 { 0x0391, "Alcorn McBride Inc." },
2621 { 0x0393, "i2Systems" },
2622 { 0x0394, "Prism Projection" },
2623 { 0x039B, "Lightforce Lasertechnik" },
2624 { 0x03A1, "INAREX INC." },
2625 { 0x03A2, "licht.team" },
2626 { 0x03A8, "ARTFOX" },
2627 { 0x03AA, "AIGA Electronic (GuangZhou) Co., Ltd." },
2628 { 0x03AB, "ABMICROLONDON" },
2629 { 0x03C6, "NYSOFT" },
2630 { 0x03CE, "MVI LLC" },
2631 { 0x03D5, "eX Systems" },
2632 { 0x03D6, "i-Lumen" },
2633 { 0x03DA, "QST LED" },
2634 { 0x03E8, "Acson" },
2635 { 0x03F0, "jpbaye.de" },
2636 { 0x03FA, "ART-DMX" },
2637 { 0x0402, "Exato" },
2638 { 0x0404, "Luminxa" },
2639 { 0x040E, "Optoma Corporation" },
2640 { 0x0411, "SoundSwitch" },
2641 { 0x0412, "D's DMX" },
2642 { 0x041C, "IMLIGHT" },
2643 { 0x0424, "FLUX ECLAIRAGE" },
2644 { 0x0428, "ITSTECH" },
2645 { 0x0430, "BOE MLED Technology Co., Ltd" },
2646 { 0x0440, "Guangzhou VAS Lighting Co., Ltd." },
2647 { 0x044E, "Ben Peoples Industries, LLC" },
2648 { 0x044F, "B2 Co., Ltd." },
2649 { 0x0455, "Lamp & Pencil" },
2650 { 0x047C, "LedsGo" },
2651 { 0x0480, "ASUSTeK Computer Inc." },
2652 { 0x0486, "LANZ (CZ) Lighting Ltd" },
2653 { 0x048E, "Krisledz Pte. Ltd." },
2654 { 0x048F, "Grand Canyon LED Lighting System (Suzhou) Co., Ltd." },
2655 { 0x04A6, "MEB Veranstaltungstechnik GmbH" },
2656 { 0x04A9, "Edward J. Keefe Jr." },
2657 { 0x04B2, "Shenzhen Meiyad Optoelectronics Co., Ltd" },
2658 { 0x04B4, "SKT Inc." },
2659 { 0x04B5, "Major" },
2660 { 0x04B6, "IntiLED" },
2661 { 0x04B8, "Guangzhou Hongcai Stage Equipment Co., Ltd." },
2662 { 0x04C4, "Ephesus Lighting, Inc." },
2663 { 0x04CA, "RT-DMX" },
2664 { 0x04CE, "Quisda" },
2665 { 0x04D6, "Kessil" },
2666 { 0x04D7, "Targetti Sankey Spa" },
2667 { 0x04D8, "Guangzhou Hong Yuan Electronic Technology Co., LTD." },
2668 { 0x04DC, "Modern Stage Service Projects" },
2669 { 0x04DD, "Topstriving Photoelectricity Technology Co., Ltd." },
2670 { 0x04E6, "Kelvix" },
2671 { 0x04EE, "Tivoli Lighting" },
2672 { 0x04F0, "SIGMA NET" },
2673 { 0x04F4, "Zeraus" },
2674 { 0x04FC, "Syncrolite LLC" },
2675 { 0x0504, "MYHP Limited" },
2676 { 0x050A, "ChamSys Ltd." },
2677 { 0x051C, "Ambitsel, Inc." },
2678 { 0x0520, "ANLC Ltd" },
2679 { 0x0529, "OSRAM" },
2680 { 0x052A, "DELTACAST" },
2681 { 0x0536, "tarm AG" },
2682 { 0x0537, "TERMINAL-COM" },
2683 { 0x0540, "EverBrighten Co., Ltd." },
2684 { 0x0555, "Maresch Electronics" },
2685 { 0x0556, "RAYSYS" },
2686 { 0x055F, "PRO-SOLUTIONS" },
2687 { 0x056B, "COSMOLIGHT SRL" },
2688 { 0x056C, "Lumascape Lighting Industries" },
2689 { 0x0573, "JIAXING XINHUALI LIGHTING & SOUNDING CO., LTD." },
2690 { 0x057A, "RVE S.A.S." },
2691 { 0x0580, "Innovation LED Limited" },
2692 { 0x0582, "Jack LINE" },
2693 { 0x0586, "K 5600, Inc." },
2694 { 0x0588, "GuangZhou XiangMing Light Limited" },
2695 { 0x0592, "MIRAGE B.V." },
2696 { 0x0596, "ReveLux" },
2697 { 0x05A0, "Stage Smarts AB" },
2698 { 0x05A4, "IMMOLAS" },
2699 { 0x05A8, "Owl Labs" },
2700 { 0x05AB, "Shenzhen Lesan Lighting Co., Ltd." },
2701 { 0x05B5, "Turkowski GmbH" },
2702 { 0x05BC, "CantoUSA" },
2703 { 0x05C0, "Vertigo" },
2704 { 0x05CF, "Brighten Technology Development Co., Ltd." },
2705 { 0x05D3, "D-LED Illumination Technologies Ltd." },
2706 { 0x05DA, "Spacyal" },
2707 { 0x05E0, "esp_dmx" },
2708 { 0x05E2, "KORRO PLUS" },
2709 { 0x05E8, "Snap One" },
2710 { 0x05EB, "GUANGZHOU BO WEI TE LIGHTING CO.LTD" },
2711 { 0x05EF, "Guangzhou Chai Yi Light Co., Ltd." },
2712 { 0x05F2, "O'Light" },
2713 { 0x05F7, "Immersive Design Studios Inc." },
2714 { 0x0600, "TELMIC Neo" },
2715 { 0x0602, "Guangzhou Jinhong Stage Lighting Equipment.Co.,ltd" },
2716 { 0x0606, "Guangzhou YiGuang Stage Lighting Co., Ltd." },
2717 { 0x0609, "Diginet Control Systems Pty Ltd" },
2718 { 0x060A, "Kindwin Opto Electronic (ShenZhen) Co. Ltd" },
2719 { 0x060B, "Lighting Science Group (formerly LED Effects, Inc.)" },
2720 { 0x060D, "HANIL TNC CO.,LTD" },
2721 { 0x061C, "LEDRAYS INC" },
2722 { 0x0622, "Lupo SRL" },
2723 { 0x0623, "JAS LIGHTING & SOUND CO., LTD." },
2724 { 0x0624, "S4 Lights" },
2725 { 0x0628, "ERP Power" },
2726 { 0x062A, "LEDstructures" },
2727 { 0x062B, "CKC Lighting Co., Ltd." },
2728 { 0x063A, "AVM Belgium BVBA" },
2729 { 0x063C, "LaserNet" },
2730 { 0x0644, "COLEDER DISPLAY CO., LTD." },
2731 { 0x0645, "MATSUMURA ELECTRIC MFG. CO. , LTD." },
2732 { 0x064D, "KXD LIGHTING CO., LIMITED" },
2733 { 0x064E, "My Method" },
2734 { 0x0650, "RDC, Inc. d.b.a. LynTec" },
2735 { 0x0653, "USAI, LLC" },
2736 { 0x0654, "HUNAN XIANG CAIXU FILM AND TELEVISION CULTURE CO.LTD" },
2737 { 0x0658, "AZCOLOR LITE CO., LIMITED" },
2738 { 0x065E, "OFilms" },
2739 { 0x0660, "QSTECH CO.,LTD" },
2740 { 0x0668, "Motion FX" },
2741 { 0x066B, "AVANT-GARDE DE STUDIO FZ LLC" },
2742 { 0x066F, "GUANGZHOU CY LIGHTING EQUIPMENT CO.,LTD" },
2743 { 0x0674, "Raylogic Control systems Pvt Ltd." },
2744 { 0x067A, "Inster Co, Ltd" },
2745 { 0x067C, "LOTRONIC SA" },
2746 { 0x0682, "Beijing Ming Rui Lighting Technology Co., Ltd." },
2747 { 0x0684, "LEDART LLC" },
2748 { 0x0685, "IBL/ESD-Datentechnik GmbH" },
2749 { 0x0687, "INSMARINE LLC" },
2750 { 0x0688, "LUCIDISCENA" },
2751 { 0x0689, "GUANGDONG DONE POWER TECHNOLOGY CO" },
2752 { 0x068C, "Hitmusic SAS" },
2753 { 0x068E, "GUANGZHOU TEANMA STAGE LIGHTING FACTORY" },
2754 { 0x068F, "LEDEC GROUP LIMITED" },
2755 { 0x0696, "SHENZHEN HOION LIGHTING CO.,LTD" },
2756 { 0x0697, "Shenzhen LED Innovator Technology Co., Ltd" },
2757 { 0x0698, "Techni-Lux" },
2758 { 0x06A0, "Light.Audio.Design" },
2759 { 0x06A1, "ProTec GmbH" },
2760 { 0x06A3, "RODLIGHT ALBRECHT SILBERBERGER" },
2761 { 0x06AC, "GOLVER PROJECTS S.L." },
2762 { 0x06AD, "LEDMAN OPTOELECTRONIC CO.,LTD." },
2763 { 0x06AE, "CANARA LIGHTING INDUSTRIES PVT LTD" },
2764 { 0x06AF, "ZHEJIANG JINGRI TECHNOLOGY CO.,LTD" },
2765 { 0x06B3, "NANOLUMENS, INC." },
2766 { 0x06B6, "GUANGDONG VSHINE LIGHTING TECHNOLOGY CO.,LTD" },
2767 { 0x06B9, "GUANGZHOU DASEN LIGHTING CORPORATION LIMITED" },
2768 { 0x06BB, "IQ COMPANY Ltd." },
2769 { 0x06C4, "RHENAC Systems GmbH" },
2770 { 0x06C5, "ZHIYUN INFORMATION (INTERNATIONAL) TECHNOLOGY CO., LIMITED" },
2771 { 0x06C7, "L&L Luce&Light" },
2772 { 0x06CA, "Leding" },
2773 { 0x06CE, "American-Pro International" },
2774 { 0x06D1, "BIRUN ELECTRONIC INDUSTRIAL CO., LTD" },
2775 { 0x06D2, "LIGHTSTAR (BEIJING) ELECTRONIC CORPORATION" },
2776 { 0x06D3, "Boerner Distribution International GmbH" },
2777 { 0x06DD, "GRUPPO SIGI SRLS" },
2778 { 0x06E0, "SHENZHEN LONGRUN OPTOELECTRONIC CO., LTD" },
2779 { 0x06E1, "Burck IT GmbH & Co. KG" },
2780 { 0x06E2, "ScreenCo" },
2781 { 0x06E4, "Dydell B.V." },
2782 { 0x06E6, "Equipson S.A." },
2783 { 0x06EC, "SISTEMA Jsc" },
2784 { 0x06F0, "CTG sp. z o.o." },
2785 { 0x06F1, "Aqualux Lighting" },
2786 { 0x06F8, "CHONGQING XINYUANHUI OPTOELECTRONIC TECHNOLOGY CO.,LTD" },
2787 { 0x0700, "OXYGEN SMD Ltd" },
2788 { 0x0702, "Drinelec" },
2789 { 0x0706, "LINEAR TECHNOLOGIE" },
2790 { 0x0707, "Conceptinetics Technologies and Consultancy Ltd." },
2791 { 0x0708, "AK-LIGHT" },
2792 { 0x070C, "Pixout SIA" },
2793 { 0x070D, "Lumenwerx ULC" },
2794 { 0x070E, "PragmaLab" },
2795 { 0x070F, "Theatrelight New Zealand" },
2796 { 0x0710, "D.T.S. Illuminazione srl" },
2797 { 0x0711, "Halonix Technologies Pvt Ltd." },
2798 { 0x0712, "Laser Imagineering GmbH" },
2799 { 0x071A, "YHX Visual" },
2800 { 0x071F, "Moss LED Inc" },
2801 { 0x0724, "PHC Lighting & BMS Sp. z o.o." },
2802 { 0x072B, "NEWSUBSTANCE Ltd." },
2803 { 0x072C, "SGM A/S" },
2804 { 0x072D, "Sting Alleman" },
2805 { 0x072F, "RayComposer - R. Adams" },
2806 { 0x0732, "Galaxia Electronics" },
2807 { 0x0734, "CPOINT" },
2808 { 0x073B, "Corsair Technology Ltd." },
2809 { 0x0740, "Arkalumen" },
2810 { 0x0744, "DMX Pro Sales, LLC" },
2811 { 0x0745, "Guangzhou Wingo Stage Light Co., Ltd" },
2812 { 0x0748, "Chromateq" },
2813 { 0x074F, "Panasonic Corporation" },
2814 { 0x0753, "F&V Europe B.V." },
2815 { 0x0758, "IMPOLUX GmbH" },
2816 { 0x075F, "LEDEngin Inc." },
2817 { 0x076A, "BeamZ (Tronios B.V.)" },
2818 { 0x076E, "DecoLed, LLC" },
2819 { 0x0776, "lumenetix" },
2820 { 0x077B, "GENLED Brands" },
2821 { 0x0782, "R9 Lighting" },
2822 { 0x078A, "FATEC sarl" },
2823 { 0x078E, "SHENZHEN BGLOPTO TECHNOLOGY Co., LTD." },
2824 { 0x0792, "MY-Semi Inc." },
2825 { 0x0797, "ARCPROLED Limited" },
2826 { 0x079B, "Pro Church Lights" },
2827 { 0x079F, "VPS Group, LLC" },
2828 { 0x07A3, "Guangzhou GBR PROLIGHT GROUP CO.,LTD (GBR PROLIGHT)" },
2829 { 0x07A5, "X LED Systems" },
2830 { 0x07AD, "CLS LED BV" },
2831 { 0x07AE, "A-LITE B.V." },
2832 { 0x07B0, "ADDiCTiON BoX GbR" },
2833 { 0x07B1, "TBF-PyroTec GmbH" },
2834 { 0x07B3, "Shenzhen Fabulux Technology Co., Ltd" },
2835 { 0x07B5, "ARM Automation, Inc" },
2836 { 0x07B6, "Minleon USA" },
2837 { 0x07B8, "Zhuhai Demi Technology Co., Ltd." },
2838 { 0x07BA, "Tradia Co., LTD" },
2839 { 0x07BB, "Shenzhen SOSEN Electronics Co., Ltd." },
2840 { 0x07BE, "Sanko Device Co.Ltd." },
2841 { 0x07C0, "Code Mercenaries GmbH" },
2842 { 0x07C2, "BOOQlight BV" },
2843 { 0x07C5, "SBS Lighting LLC" },
2844 { 0x07C6, "BK Lighting" },
2845 { 0x07C8, "Sidus Link Ltd." },
2846 { 0x07CC, "Griven S.r.l." },
2847 { 0x07CF, "MH-Sound" },
2848 { 0x07D1, "Made By Mouse LTD" },
2849 { 0x07D5, "PHIDA Stage Equipment Co., Ltd" },
2850 { 0x07D6, "Lite Puter Enterprise Co., Ltd." },
2851 { 0x07DA, "Flytech s.r.l." },
2852 { 0x07E8, "ROCKETSIGN Technology HK Ltd" },
2853 { 0x07E9, "TechLink Co., Ltd." },
2854 { 0x07EA, "Le Maitre Ltd" },
2855 { 0x07EF, "Guangzhou V-Show Pro Lighting Co., Ltd." },
2856 { 0x07F0, "Lifud Technology Co., Ltd" },
2857 { 0x07F2, "CB Electronics" },
2858 { 0x07F3, "Sam Light" },
2859 { 0x07F4, "LED Flex Ltd." },
2860 { 0x07F5, "Shenzhen ATENTI Technologies Co., Ltd" },
2861 { 0x07F6, "Electric Distribution Systems" },
2862 { 0x07F7, "Dakco Technologies Co., Ltd." },
2863 { 0x07F8, "Ultimate Technology Solutions GmbH" },
2864 { 0x07F9, "Bion Technologies GmbH" },
2865 { 0x07FA, "Shenzhen Pony Systems Tech Co., Ltd." },
2866 { 0x07FC, "Electro Mind Co., Ltd." },
2867 { 0x07FD, "THELIGHT Luminary for Cine and TV S.L." },
2868 { 0x07FE, "Shenzhen Apexls Optoelectronic Co., Ltd." },
2869 { 0x07FF, "Guangzhou HOMEI LIGHT Manufacturer" },
2870 { 0x0800, "Hongyeah Light" },
2871 { 0x0801, "Guangzhou Favolite Stage Lighting Co., Ltd." },
2872 { 0x0802, "AstralPool" },
2873 { 0x0803, "Guangzhou FutureColor Electronic Technology Co., Ltd." },
2874 { 0x0804, "K&G Visual Technology" },
2875 { 0x0805, "T.C.M. Light-Solutions" },
2876 { 0x0806, "Air Giants Limited" },
2877 { 0x0807, "Event Lighting Pty, Ltd." },
2878 { 0x0808, "Cooper Lighting - Zero 88" },
2879 { 0x0809, "mumoco GmbH" },
2880 { 0x080A, "Shenzhen FantaLED Electronics Co., Ltd" },
2881 { 0x080D, "HBJ Elektronik" },
2882 { 0x080F, "NavoLabs" },
2883 { 0x0810, "BDS Studios" },
2884 { 0x0811, "V-PRO" },
2885 { 0x0812, "Yamagiwa Corporation" },
2886 { 0x0813, "Shenzhen Scenico Optoelectronic Co., Ltd." },
2887 { 0x0814, "squareV" },
2888 { 0x081C, "MR Electronics Ltd." },
2889 { 0x081E, "LOBO Electronic GmbH" },
2890 { 0x0822, "Hangzhou YD Illumination Co., Ltd" },
2891 { 0x0823, "Opito Labs GmbH" },
2892 { 0x0824, "Almotechnos CO.,LTD." },
2893 { 0x0827, "PIXREAL" },
2894 { 0x0829, "CR-TEC Photoelectric" },
2895 { 0x0832, "Shenzhen EXC-LED Technology Co.,Ltd" },
2896 { 0x0836, "Nyvoll Lys" },
2897 { 0x0838, "LaserAV" },
2898 { 0x083A, "Bright Ideas Custom Electronics Inc." },
2899 { 0x083C, "TDT Productions" },
2900 { 0x083E, "Guangdong Hua Chen Film & Television Stage Project Co., Ltd." },
2901 { 0x083F, "Shenzhen LeiFei Lighting Technologies Co.,Ltd." },
2902 { 0x0840, "Shenzhen Zwich Science and Technology Co.Ltd." },
2903 { 0x0841, "Guangzhou ICON Lighting Co.,Ltd" },
2904 { 0x0843, "BHL Lichttechniek" },
2905 { 0x0845, "Cush Light LLC" },
2906 { 0x0846, "LDR - Luci della Ribalta Srl" },
2907 { 0x0848, "SLC - Static Light Company Ltd" },
2908 { 0x084B, "Neon Circus Ltd" },
2909 { 0x084C, "Guangzhou Ba Lin Electronic Technology Co., Ltd." },
2910 { 0x084D, "Guangzhou NECO Stage Lighting Factory" },
2911 { 0x084E, "RGBshine Technology Co. Ltd." },
2912 { 0x084F, "Mantic Lighting Co.,Ltd" },
2913 { 0x0850, "Proland Group, LLC" },
2914 { 0x0851, "Junction Inc. Ltd" },
2915 { 0x0854, "Sharp / NEC Display Solutions, Ltd." },
2916 { 0x0855, "GODOX Photo Equipment Co., Ltd." },
2917 { 0x0856, "Ctrl Element ehf" },
2918 { 0x0858, "Juno Lighting Group" },
2919 { 0x085A, "Guangzhou Ming Jing Stage Light Equipment Co., Ltd." },
2920 { 0x085B, "Tolifo (Dongguan) Photographic Equipment Co. Ltd" },
2921 { 0x085E, "MMS Distribution Ltd" },
2922 { 0x085F, "Media Visions, Inc." },
2923 { 0x0862, "illuminous" },
2924 { 0x0863, "XTEC Industries Pte Ltd" },
2925 { 0x0864, "Hangzhou Youte Power., Co. Ltd" },
2926 { 0x0865, "Contrade GmbH" },
2927 { 0x0866, "PAL Lighting" },
2928 { 0x0868, "Ushio America, Inc." },
2929 { 0x0869, "Club Cannon LLC" },
2930 { 0x086A, "Shenzhen Chip Optech Co.,LTD" },
2931 { 0x086C, "Bafa Elektronik ve Işık Tasarımları Sanayii Ticaret LTD Sti." },
2932 { 0x086D, "Velaflame, LLC" },
2933 { 0x086E, "Guangzhou Hi-LTTE Electronics Technology Co.,Ltd" },
2934 { 0x086F, "MARTINI RUS LLC" },
2935 { 0x0870, "Hunan YESTECH Optoelectronic Co., Ltd" },
2936 { 0x0871, "Changsha Maya Special Effects Equipment Co., Ltd" },
2937 { 0x0873, "Guangzhou BKLite Stage Lighting Equipment Co.,LTD" },
2938 { 0x0874, "Snow Professional Lighting" },
2939 { 0x0875, "ARC Solid-State Lighting Corp." },
2940 { 0x0876, "Power Gems LTD" },
2941 { 0x0877, "Skaff New Zealand Ltd" },
2942 { 0x0878, "OTTEC Technology GmbH" },
2943 { 0x087A, "Dextra Group Plc" },
2944 { 0x087B, "About Time Technologies" },
2945 { 0x087C, "Telectran International Pty Ltd." },
2946 { 0x087D, "TPV Technology Group" },
2947 { 0x0880, "GuangZhou LiDang Technology Inc." },
2948 { 0x0881, "Shenzhen Genesis-Systech Co., Ltd." },
2949 { 0x0883, "CEE Lighting Equipment Co.Ltd" },
2950 { 0x0884, "Bright Group" },
2951 { 0x0885, "SIRS-E" },
2952 { 0x0886, "KLIK Systems" },
2953 { 0x0888, "Banglux Lighting Technology Co., Ltd." },
2954 { 0x0889, "Guangzhou Shenghui Electronic Technology Co., Ltd" },
2955 { 0x088A, "Highendled Electronics Company Limited" },
2956 { 0x088B, "Shenzhen Doit Vision Co., Ltd" },
2957 { 0x088C, "Guangzhou Yi Sheng Yuan Electronic Co.,Ltd(Esun)" },
2958 { 0x088D, "Guangzhou Ling Yang lighting Science and Technology Co.,Ltd" },
2959 { 0x088E, "Stage One International Co., Ltd." },
2960 { 0x088F, "First Design System Inc." },
2961 { 0x0890, "Taurus Light Co.,Limited" },
2962 { 0x0891, "Feiner Lichttechnik GMBH" },
2963 { 0x0892, "DongGuan Ruishen Technology Co.,Ltd" },
2964 { 0x0893, "Brighten LED Lighting Limited" },
2965 { 0x0894, "Dongguan HCP Technology Co., Ltd." },
2966 { 0x0896, "CSD Design and Fabrication" },
2967 { 0x0899, "Shenzhen Huimont Technology Co., Ltd" },
2968 { 0x089A, "ADL Electronics Ltd." },
2969 { 0x089D, "gobo.ws" },
2970 { 0x08A1, "Shenzhen Gloshine Technology Co., Ltd" },
2971 { 0x08A2, "Guangzhou Gesida Light Equipment Co., Ltd." },
2972 { 0x08A3, "Redot Visual Effect Technologies (Shenzhen) Co., Ltd" },
2973 { 0x08A4, "Adam Hall GmbH" },
2974 { 0x08A5, "White Wing Logic" },
2975 { 0x08A6, "impulswerk.de" },
2976 { 0x08A7, "GuangZhou Deliya Opto-electronic Tech Co., Ltd" },
2977 { 0x08A8, "Guangzhou Yunpeng Lighting Equipment Co. Ltd." },
2978 { 0x08AA, "PiXL Factory" },
2979 { 0x08AB, "Qdot Lighting Limited" },
2980 { 0x08AC, "Bushveld Labs" },
2981 { 0x08AD, "Optical Productions LLC" },
2982 { 0x08AE, "Technical Audio Group Pty Ltd" },
2983 { 0x08AF, "AAdyn Technology" },
2984 { 0x08B0, "KIM Lighting" },
2985 { 0x08B1, "Fujian Starnet Evideo Information System Co.,Ltd." },
2986 { 0x08B2, "MCI Group" },
2987 { 0x08B3, "Stealth Light srl" },
2988 { 0x08B5, "ShenZhen Sunny Xiao Technology Co., Ltd." },
2989 { 0x08B6, "Graf Lichttechnik UG" },
2990 { 0x08B8, "LEDScape Lighting" },
2991 { 0x08B9, "Guangzhou Hua Rong Electronic Technology Co., Ltd." },
2992 { 0x08BA, "Meteor Lighting" },
2993 { 0x08BB, "Guangzhou CHEN Electronic Technology Co., Ltd." },
2994 { 0x08BC, "Michael Parkin" },
2995 { 0x08BD, "Lug Light Factory Sp. z o. o." },
2996 { 0x08BE, "Shenzhen FloatStone Technology Co., Ltd." },
2997 { 0x08BF, "Times Square Stage Lighting Inc." },
2998 { 0x08C0, "Real Tech International LTD." },
2999 { 0x08C1, "Project SSSHH Incorporated" },
3000 { 0x08C2, "Guangzhou Huipu Stage Effect Equipment Co., Ltd" },
3001 { 0x08C3, "Guangzhou Spark Stage Equipment Co. Ltd" },
3002 { 0x08C4, "Jacek Wagner" },
3003 { 0x08C5, "EHRGEIZ Lichttechnik GmbH" },
3004 { 0x08C6, "Guangzhou Ever Famous Electronic Co.,Ltd" },
3005 { 0x08C9, "LEDitgo Videowall Germany GmbH" },
3006 { 0x08CA, "Foshan City Xuandao Optoelectronics Equipment Co., Ltd" },
3007 { 0x08CB, "Practical LEDs.com" },
3008 { 0x08CC, "Guangzhou Santu Stage Lighting Equipment Co.Ltd" },
3009 { 0x08D0, "Image Engineering" },
3010 { 0x08D1, "Shenzhen Leqi Network Technology Co., Ltd." },
3011 { 0x08D3, "SVI Public Company Limited" },
3012 { 0x08D4, "Sensa-Lite Ltd." },
3013 { 0x08D5, "Sense Effects" },
3014 { 0x08D6, "Guangzhou Precision Vision Intelligent Equipment Co, Ltd" },
3015 { 0x08D7, "PatternAgents, LLC" },
3016 { 0x08D8, "W.A. Benjamin Electric Co." },
3017 { 0x08D9, "STILED" },
3018 { 0x08DA, "PLC Intelligent Technology (Shanghai) Co., Ltd." },
3019 { 0x08DD, "Matthew Tong" },
3020 { 0x08E0, "Red Arrow Controls" },
3021 { 0x08E1, "Shenzhen CLT Electronics Co.,LTD" },
3022 { 0x08E2, "Particle Studio Ltd." },
3023 { 0x08E3, "Guangzhou JinZhiHui Electronic Technology Co.,Ltd." },
3024 { 0x08E4, "LMP Lichttechnik Vertriebsgesellschaft GmbH & Co KG" },
3025 { 0x08E6, "Shenzhen VisionMax Technology Co., Ltd" },
3026 { 0x08E7, "3A Guangzhou Electronics Co., Ltd" },
3027 { 0x08E8, "North Engineering" },
3028 { 0x08EA, "Changchun Cedar Electronic Technology Co.,Ltd." },
3029 { 0x08EB, "Guangzhou Lixin Lighting Co., Ltd." },
3030 { 0x08EC, "Marvin Nadrowski" },
3031 { 0x08ED, "ShowLED" },
3032 { 0x08EE, "Spacelights" },
3033 { 0x08EF, "Guangzhou RuiYang lighting technology co. LTD." },
3034 { 0x08F0, "Guang Dong LMJ Lighting Co., Ltd" },
3035 { 0x08F1, "SanDevices, LLC" },
3036 { 0x08F2, "Virtualny Agronom Ltd." },
3037 { 0x08F3, "Outdoor Lasers Ltd." },
3038 { 0x08F4, "MC Electronic Technology(GZ) Co., Ltd." },
3039 { 0x08F5, "Fufeng lighting" },
3040 { 0x08F6, "Eulum Design, LLC" },
3041 { 0x08F7, "Neotek Lighting" },
3042 { 0x08F8, "Liberal Logic Inc." },
3043 { 0x08F9, "ACS - Ackerman Computer Sciences" },
3044 { 0x08FA, "Phaton Lighting Co., Ltd." },
3045 { 0x08FB, "RPA Electronic Solutions Inc." },
3046 { 0x08FC, "Lights By Brian" },
3047 { 0x08FD, "Koto Electric Co., Ltd." },
3048 { 0x08FE, "Zhuhai Shengchang Electronics Co., Ltd." },
3049 { 0x0900, "nox multimedia GmbH" },
3050 { 0x0901, "GermTec GmbH & Co. KG" },
3051 { 0x0902, "DongGuan Betterway Lighting Co.,Ltd" },
3052 { 0x0903, "Shenzhen INFiLED Electronics, Ltd." },
3053 { 0x0904, "Bigbear Co., Ltd." },
3054 { 0x0905, "Locimation Pty Ltd" },
3055 { 0x0906, "Crystal Technica Limited" },
3056 { 0x0907, "Shenzhen GCL Electronics Co., Ltd" },
3057 { 0x0908, "Guangzhou DeLong Stage Equipment Co., Ltd." },
3058 { 0x0909, "Beijing Starlight Electronics Co., Ltd." },
3059 { 0x090A, "Jiangmen Seekway Technology Limited" },
3060 { 0x090B, "StarLighting" },
3061 { 0x090C, "GRE Alpha" },
3062 { 0x090E, "Sichuan esRadio Technology Co., Ltd" },
3063 { 0x090F, "Shenzhen Dingli Display Technology Co., Ltd" },
3064 { 0x0910, "Shenzhen Tecnon EXCO-Vision Technology Co., Ltd." },
3065 { 0x0911, "Guangzhou Aceda Professional Lighting Co., Ltd." },
3066 { 0x0912, "ags - Wissenschaftliche Arbeitsgemeinschaft fur Studio- und Senderfragen" },
3067 { 0x0913, "Guangzhou ECK Light Equipment Company Limited" },
3068 { 0x0914, "Xenio" },
3069 { 0x0915, "Guangzhou Chuangfeng Photoelectric Equipment Co., Ltd." },
3070 { 0x0916, "ACTOR-MATE CO., LTD." },
3071 { 0x0917, "Gavtronics" },
3072 { 0x0918, "David O Smith Design" },
3073 { 0x0919, "Foshan Leiyuan Photoelectric Co., LTD" },
3074 { 0x091A, "Celex LED Technology Ltd." },
3075 { 0x091B, "Krislite Pte. Ltd." },
3076 { 0x091D, "TouchPlate Technologies Inc." },
3077 { 0x091E, "Vanilla Internet Ltd" },
3078 { 0x091F, "Yaham Recience Technology Co,. ltd." },
3079 { 0x0920, "Vexica Technology Limited" },
3080 { 0x0921, "Guangzhou mengyi stage lighting equipment co., LTD." },
3081 { 0x0922, "von Gaisberg Engineering" },
3082 { 0x0923, "Hangzhou Roleds Lighting System Co., Ltd." },
3083 { 0x0925, "Guangzhou Aiweidy Lighting Acoustics Equipment Co.,Ltd." },
3084 { 0x0926, "Elumeros Lighting Limited" },
3085 { 0x0927, "Guangzhou Mingying Electronic Technology Co., Ltd." },
3086 { 0x0929, "UPlight stage equipment(GZ) CO., Ltd." },
3087 { 0x092B, "Guangzhou Lightful Stage Lighting&Sound Equipment Co,.Ltd." },
3088 { 0x092C, "Guangzhou Chaoran Computer Co., Ltd." },
3089 { 0x092D, "LG Electronics" },
3090 { 0x092E, "YouEasy (Dongguan) Electronics Technology Co.,Ltd" },
3091 { 0x092F, "Guangzhou Shinelight Stage Equipment Factory" },
3092 { 0x0930, "jiaozuo shengguang film &equipment Co. Ltd" },
3093 { 0x0931, "Cristal Controles" },
3094 { 0x0932, "GUANGZHOU BORAY ELECTRON CO.,LTD" },
3095 { 0x0933, "Beyond Lighting WLL" },
3096 { 0x0934, "Zenopix Electronic Limited Company" },
3097 { 0x0935, "Guangzhou Huadu District Richa Lighting Equipment Factory" },
3098 { 0x0936, "AquaTronic" },
3099 { 0x0937, "Huizhou Zhonghan Electronic Technology Co., Ltd" },
3100 { 0x0938, "Guangzhou Vanray Lighting Equipment CO.,Ltd." },
3101 { 0x0939, "Edelmann Electronics" },
3102 { 0x093A, "HDT impex s.r.o." },
3103 { 0x093B, "Guangzhou Hongmingwei Stage Lighting Co., Ltd." },
3104 { 0x093D, "Sichuan Hushan Electric Co. Ltd" },
3105 { 0x093F, "Guangzhou Julong Platform Lighting Equipment Factory" },
3106 { 0x0940, "Shenzhen CreateLED Electronics Co., Ltd" },
3107 { 0x0941, "Shenzen Zhuoyang Intelligent Technology Co., Ltd." },
3108 { 0x0943, "Guangzhou Guangying Optoelectronics Co., Ltd" },
3109 { 0x0945, "Guangzhou Lin Xiang Stage Lighting Equipment CO.,LTD" },
3110 { 0x0946, "TBE Srl" },
3111 { 0x0947, "Shenzhen MOSO Electronics Technology Co., Ltd" },
3112 { 0x0948, "Wisconsin Lighting Lab, Inc. (WiLL)" },
3113 { 0x0949, "Shenzhen Jiuzhou Optoelectronic Technology" },
3114 { 0x094A, "Funovation, Inc" },
3115 { 0x094B, "Invisua Lighting BV" },
3116 { 0x094C, "Shenzhen Xiezhen Electronics Co., Ltd." },
3117 { 0x094D, "Quantum Theory" },
3118 { 0x0951, "Guangzhou GTD Lighting Technology Co., Ltd" },
3119 { 0x0952, "Guangzhou Sunway Entertainment Equipment Co., Ltd." },
3120 { 0x0953, "Boumakers Techniek" },
3121 { 0x0954, "Ledtop Visual Ltd." },
3122 { 0x0956, "Expromo Europe A/S" },
3123 { 0x0957, "White Light Ltd" },
3124 { 0x0958, "Illum Technology LLC (previously Verde Designs, Inc.)" },
3125 { 0x0959, "Urbs Lighting, LLC" },
3126 { 0x095A, "kLabs Research UK" },
3127 { 0x095B, "Wuhan Zhongtian Jiaye Mechanical and Electrical Engineering Co. LTD" },
3128 { 0x095C, "Thomas Neumann Licht und Tontechnik" },
3129 { 0x095D, "Silver Curve Ltd" },
3130 { 0x095E, "Hondel Lighting Limited" },
3131 { 0x095F, "Elaborated Networks GmbH" },
3132 { 0x0960, "Fineline Solutions Ltd." },
3133 { 0x0962, "Finland Lighting Oy" },
3134 { 0x0963, "Foshan Sololighting Technology Co., Ltd" },
3135 { 0x0964, "Inventions Guité Inc." },
3136 { 0x0965, "Fontana Fountains" },
3137 { 0x0967, "Arcus Licht- und Praesentationstechnik GmbH" },
3138 { 0x0968, "Guangzhou Beyond Lighting Co., Limited." },
3139 { 0x096C, "Guangzhou Nebula Stage Lighting Equipment Co., Ltd" },
3140 { 0x096D, "Guangzhou Xin Yilong Stage Lighting Equipment Co., Limited" },
3141 { 0x096F, "Shenzhen showho technolgy co.,ltd" },
3142 { 0x0971, "Plura Europe GmbH" },
3143 { 0x0972, "Holochrom GmbH" },
3144 { 0x0973, "Guangzhou Eagle Wei Photoelectric Technology Co., Ltd." },
3145 { 0x0974, "Marumo Electric Co., Ltd." },
3146 { 0x0975, "KB Design" },
3147 { 0x0976, "Axion Lighting LLC" },
3148 { 0x0977, "Guangzhou HuaYong Intelligent Technology Co., Ltd." },
3149 { 0x097A, "Teamboyce Limited" },
3150 { 0x097D, "Brink Electronics" },
3151 { 0x097E, "Guangzhou Deyi Lighting Co., Ltd." },
3152 { 0x097F, "RaumZeitLabor e.V." },
3153 { 0x0980, "Moog Animatics" },
3154 { 0x0981, "Luxam, Ltd." },
3155 { 0x0982, "AC Entertainment Products Ltd." },
3156 { 0x0983, "S Squared Innovations Inc." },
3157 { 0x0984, "Laserworld AG" },
3158 { 0x0986, "ROE Visual Co. Ltd." },
3159 { 0x0987, "mathertel.de" },
3160 { 0x0989, "YeGrin Liteworks" },
3161 { 0x098A, "DongGuan JuYang Electric Co., Ltd" },
3162 { 0x098B, "Glow Motion Technologies, LLC." },
3163 { 0x098C, "Shenzhen Longrich Energy Sources Technology Co., Ltd." },
3164 { 0x098D, "Batmink Ltd." },
3165 { 0x098E, "Ecosense Lighting Inc" },
3166 { 0x098F, "Digital Sputnik Lighting" },
3167 { 0x0990, "Stagelight Holding" },
3168 { 0x0991, "Guangdong Pomelo Photoelectric Equipment Co., Ltd" },
3169 { 0x0993, "Shenzhen Trigger digital Technology Co., LTD" },
3170 { 0x0996, "CCI Power Supplies, LLC" },
3171 { 0x0997, "Star Iluminacao Computadorizada LTDA" },
3172 { 0x0999, "Concept Smoke Systems Ltd." },
3173 { 0x099A, "Aixz International (S)" },
3174 { 0x099D, "Frenexport SPA" },
3175 { 0x099E, "LLC Lighting Technologies production" },
3176 { 0x09A0, "Rnet Lighting Technology Limited" },
3177 { 0x09A1, "Veranstaltungstechnik König" },
3178 { 0x09A2, "Fountain People" },
3179 { 0x09A3, "Shenzhen Lightlink Display Technology Co., Ltd" },
3180 { 0x09A4, "Brighter Lighting Sp. z.o.o." },
3181 { 0x09A5, "Prolight Concepts Ltd." },
3182 { 0x09AA, "Rushstage Show Lighting Limited" },
3183 { 0x09AD, "Dongguan Ensure Electronic Technology Co., LTD" },
3184 { 0x09AE, "Robert Juliat" },
3185 { 0x09AF, "Autotech Co." },
3186 { 0x09B0, "Luminii" },
3187 { 0x09B2, "Guangzhou Hedong Electronics Co., LTD" },
3188 { 0x09B3, "Aquatique Show Int." },
3189 { 0x09B4, "Brompton Technology Ltd." },
3190 { 0x09B5, "XBlack Visual Products" },
3191 { 0x09B6, "Second String Studios" },
3192 { 0x09B7, "inCon-trol water systems" },
3193 { 0x09B8, "Prolites S.A.L." },
3194 { 0x09BB, "Guangzhou Yiyi Technology Co., Ltd." },
3195 { 0x09BD, "Shenzhen Zhongbo Photoelectric Co., Ltd" },
3196 { 0x09BE, "Arctos Showlasertechnik GmbH" },
3197 { 0x09C0, "Guangzhou Rainbow Lighting Equipment CO.,LTD" },
3198 { 0x09C1, "Argetron Elektrik Elektronik Organizasyon Gida San. ve Dis Tic. Ltd. Sti." },
3199 { 0x09C3, "Velleman nv" },
3200 { 0x09C4, "Guangzhou XinHuang Industrial Co., Ltd." },
3201 { 0x09C6, "Photon Manufacturing" },
3202 { 0x09C7, "ShoCobra" },
3203 { 0x09C8, "Crystal Fountains Inc." },
3204 { 0x09CC, "Motomuto Aps" },
3205 { 0x09D0, "Luminar Enterprises" },
3206 { 0x09D1, "Environmental Lights" },
3207 { 0x09D2, "Shenzhen Siwelo Technology Co., LTD" },
3208 { 0x09D3, "WLPS Wodielite Production Services" },
3209 { 0x09D4, "Guangzhou Yilaiming Photoelectric Technology Co., Ltd" },
3210 { 0x09D5, "Shenzhen ImagineVision Technology Limited" },
3211 { 0x09D6, "Mittomakers" },
3212 { 0x09D7, "Unilumin Group" },
3213 { 0x09D8, "Pioneer Lighting Solutions India Pvt Ltd" },
3214 { 0x09DC, "Froggys Fog" },
3215 { 0x09DD, "Planet Innovation Products Inc" },
3216 { 0x09DE, "Matthias Bauch Software" },
3217 { 0x09E9, "Starway" },
3218 { 0x09EE, "Suzhou Pinzong Electronic Technology, CO.,Ltd" },
3219 { 0x09EF, "Andrea Croce" },
3220 { 0x09F8, "UberDisplays" },
3221 { 0x09FC, "deskontrol electronics" },
3222 { 0x0A01, "Star-Reach Corporation" },
3223 { 0x0AAA, "AAA-LUX" },
3224 { 0x0D0C, "SmartDC Inc." },
3225 { 0x0D0E, "DMX Engineering LLC" },
3226 { 0x1112, "Zhuhai Bincolor Electronic Technology Co., Ltd." },
3227 { 0x1113, "SiliconCore Technology, Inc." },
3228 { 0x1200, "Seekway Technology Limited" },
3229 { 0x1201, "PRICOM Design" },
3230 { 0x1202, "Ushio Lighting, Inc." },
3231 { 0x1203, "Movecat GmbH" },
3232 { 0x1204, "ARES s.r.l. - Socio Unico" },
3233 { 0x1205, "Carbon Lighting Limited" },
3234 { 0x1206, "Hangel Technology Co., Ltd." },
3235 { 0x1207, "BSK Networks GbR" },
3236 { 0x1208, "Nuvolight GmbH & Co KG" },
3237 { 0x1209, "Philippe Bergeron Lights" },
3238 { 0x120A, "Bulldog Lighting and Events, Inc." },
3239 { 0x120B, "Brilliant Stages Ltd." },
3240 { 0x120C, "Shanxi Tian Gong Sheng Optoelectronic Equipment Technology Co." },
3241 { 0x1211, "Recrealab" },
3242 { 0x1212, "HPL Light Company" },
3243 { 0x1221, "SAGITTER-SDJ-Proel" },
3244 { 0x1222, "SM International" },
3246 { 0x12DA, "Newlab S.r.l." },
3247 { 0x12E0, "Luxlight Skandinavien AB" },
3248 { 0x12EA, "Kolberg Percussion GmbH" },
3249 { 0x12F4, "Stage Services Ltd." },
3250 { 0x12FA, "Hollywood Rentals LLC" },
3251 { 0x12FE, "City Design S.p.A." },
3252 { 0x131E, "Blossom Communications Corp." },
3253 { 0x1337, "Raven Systems Design, Inc." },
3254 { 0x134D, "VT-Control" },
3255 { 0x1370, "Ingenieurbuero Stahlkopf" },
3256 { 0x13AE, "Smartpark Creative Solutions" },
3257 { 0x1460, "SEIKO Epson Corporation" },
3258 { 0x1464, "HUMAL Elektroonika OU" },
3259 { 0x1490, "Grid Show Systems Inc." },
3260 { 0x14A0, "Intense Lighting, LLC" },
3261 { 0x14AC, "Zaklad Elektroniczny AGAT s.c." },
3262 { 0x1501, "Artixium France SAS" },
3263 { 0x1506, "v2 Lighting Group, Inc." },
3264 { 0x1507, "LC Handels GmbH" },
3265 { 0x1508, "TommyDMX" },
3266 { 0x150C, "ACASS SYSTEMS LLC" },
3267 { 0x152A, "SHOWTACLE Ltd." },
3268 { 0x154E, "Fire & Magic" },
3269 { 0x15A0, "GuangZhou MCSWE Technologies, INC" },
3270 { 0x15A2, "FEIMEX" },
3271 { 0x15D0, "Music & Lights S.r.l." },
3272 { 0x161A, "techKnow Design Ltd." },
3273 { 0x1626, "LEDsistem Teknolojileri Tic. Ltd. Sti." },
3274 { 0x1627, "Dynamic Visual Solutions LLC" },
3275 { 0x162A, "Nerd's Meter" },
3276 { 0x1690, "awaptec GmbH" },
3277 { 0x16A0, "Audio Effetti Srl" },
3278 { 0x16AE, "Electrone Americas Ltd. Co." },
3279 { 0x16DC, "Traxon Technologies Ltd." },
3280 { 0x16E4, "Aboutshow Color Light Co., LTD" },
3281 { 0x1701, "ARTBOX" },
3282 { 0x170E, "Serva Transport Systems GmbH" },
3283 { 0x170F, "Kezun Stage Lighting Equipment Co., Ltd." },
3284 { 0x174E, "Nordgas SNe-lightingsystem" },
3285 { 0x1750, "Yuesheng International Limited" },
3286 { 0x1808, "Guangzhou Jinye Electronic Technology Co., Ltd." },
3287 { 0x1809, "Rotolight" },
3288 { 0x180A, "Guangdong Longjoin Optoelectronics Technology Co. Ltd." },
3289 { 0x180B, "Light stream" },
3290 { 0x1871, "Smoke Factory GmbH" },
3291 { 0x1872, "Super-Can Industry Growing Co. Ltd." },
3292 { 0x1873, "Zhongshan Wellmake Electronic Technology Co., Ltd." },
3293 { 0x1888, "GUANZHOU KAVON STAGE EQUIPMENT CO., LTD." },
3294 { 0x18A6, "Steadfast Technology" },
3295 { 0x1900, "ADJ Products LLC" },
3296 { 0x1901, "Zhongshan Hiline Electronics Co., Ltd." },
3297 { 0x1938, "Solid State Luminaires" },
3298 { 0x1998, "PLS Electronics Ltd." },
3299 { 0x19B9, "Duralamp S.p.A." },
3300 { 0x19BA, "Guangzhou Xinzhijie Photoelectric Co., Ltd." },
3301 { 0x19BB, "Panalux Ltd." },
3302 { 0x19BC, "Newtone AS" },
3303 { 0x19F8, "CEZOS Spolka z ograniczona odpowiedzialnoscia, sp.k." },
3304 { 0x1A00, "LIGEO GmbH" },
3305 { 0x1A0D, "Cineo Lighting" },
3306 { 0x1A16, "WADAK GmbH" },
3307 { 0x1A1A, "ValDim Waterfountains Ltd." },
3308 { 0x1A3D, "Red Lighting s.r.l." },
3310 { 0x1BB1, "PH Lightning AB" },
3311 { 0x1BC0, "ALS Stanislaw Binkiewicz" },
3312 { 0x1BC6, "Studio S Music City" },
3313 { 0x1C80, "Vehtec Tecnologia Ltda" },
3314 { 0x1E42, "SSE GmbH" },
3315 { 0x1E8D, "Moda Light" },
3316 { 0x1ECF, "Masiero s.r.l." },
3317 { 0x1ED8, "Antari Lighting And Effects Ltd." },
3318 { 0x2009, "Zboxes Intelligent Technology (Shanghai) Co., Ltd." },
3319 { 0x200A, "Vault189 Pty. Ltd." },
3320 { 0x2011, "Gantom Lighting & Controls" },
3321 { 0x207F, "Padura Elektronik GmbH" },
3322 { 0x20A6, "ALADIN Architekturlicht GmbH" },
3323 { 0x20AB, "IlluminaPi SAS" },
3324 { 0x20AD, "AZ e-lite Pte Ltd" },
3325 { 0x20B6, "Alkalite LED Technology Corp" },
3326 { 0x20B8, "Electron SA" },
3327 { 0x20B9, "ARRI -- Arnold & Richter Cine Technik GmbH & Co. Betriebs KG" },
3328 { 0x20BA, "AusChristmasLighting" },
3329 { 0x20BB, "Able Laser Tech Co., Ltd." },
3330 { 0x20BC, "Beijing Pargolite Technology Co., Ltd." },
3331 { 0x20BD, "Foshan Yoline Lighting Equipment Co., Ltd." },
3332 { 0x20BE, "Uranus Lighting Co., Ltd." },
3333 { 0x20BF, "Guangzhou Taifeng Stage Lighting Audio Equipment Factory" },
3334 { 0x20C0, "KappaStyle Productions." },
3335 { 0x20C1, "BrightBeats, LLC" },
3336 { 0x20C2, "Demilight" },
3337 { 0x20C3, "PIXILAB Technologies AB" },
3338 { 0x2121, "Brother,Brother & Sons Aps" },
3339 { 0x2122, "BEGLEC NV" },
3340 { 0x2130, "Bart van Stiphout Electronics & Software" },
3341 { 0x21A1, "Culture Crew bvba" },
3342 { 0x21A4, "CHAUVET Lighting" },
3343 { 0x21A9, "CaptSystemes" },
3344 { 0x21B3, "Coolon Pty Ltd" },
3345 { 0x21B4, "CHROMLECH" },
3346 { 0x21B5, "ChromaCove LLC" },
3347 { 0x2208, "C.I.M.E.S. (Conception Installation Maintenance En Eclairage & Sonorisation)" },
3348 { 0x2216, "D-Light Designs, LLC" },
3349 { 0x2222, "D.E.F. Srl" },
3350 { 0x2224, "DAS Integrator Pte Ltd" },
3351 { 0x2239, "Dream Solutions Ltd." },
3352 { 0x22A0, "EAS SYSTEMS" },
3353 { 0x22A6, "Elation Lighting Inc." },
3354 { 0x22A9, "Engineering Solutions Inc." },
3355 { 0x22AA, "EUTRAC - Intelligent Lighting GmbH" },
3357 { 0x22B9, "Etherlight" },
3358 { 0x2337, "Focon Showtechnic" },
3359 { 0x2338, "Humanlitech Co., Ltd." },
3360 { 0x2339, "Sky-Skan Europe GmbH" },
3361 { 0x233A, "4 Frames Lost UG" },
3362 { 0x23B2, "Gekko Technology Ltd." },
3363 { 0x2421, "HB-Laserkomponenten GmbH" },
3364 { 0x242A, "Hungaroflash" },
3365 { 0x2432, "Helvar Ltd" },
3366 { 0x2470, "Hale Microsystems LLC" },
3367 { 0x24A3, "Lighting Innovation Group AG" },
3368 { 0x24AA, "IT Ihme" },
3369 { 0x2500, "RATOC Systems, Inc." },
3370 { 0x2501, "Xero Manufacturing Pty Limited" },
3371 { 0x2621, "LEADER LIGHT s.r.o." },
3372 { 0x2622, "LDDE Vertriebs Gmbh" },
3373 { 0x2623, "Leonh Hardware Enterprise Inc." },
3374 { 0x2624, "Lisys Fenyrendszer Zrt." },
3375 { 0x2626, "LLT Lichttechnik GmbH&CO.KG" },
3376 { 0x2627, "Guangzhou Megota Technology Co., Ltd." },
3377 { 0x2630, "Laservision" },
3378 { 0x2632, "Lehigh Electric Products" },
3379 { 0x2635, "LjusDesign AB" },
3380 { 0x2636, "Lumonic Limited" },
3381 { 0x2637, "Loxone Electronics GmbH" },
3382 { 0x263A, "Lumenec Pty. Ltd." },
3383 { 0x263C, "I-Pix Digital Light Ltd." },
3384 { 0x26A2, "MEGATECHNICS Ltd." },
3385 { 0x26B4, "Milford Instruments Ltd." },
3386 { 0x2724, "Nila Inc." },
3387 { 0x2727, "Lumikit" },
3388 { 0x2734, "Nixer Ltd." },
3389 { 0x27A8, "Callegenix LLC" },
3390 { 0x2821, "Pioneer Corporation" },
3391 { 0x2826, "Peter Maes Technology" },
3392 { 0x2827, "Peternet Electronics BVBA" },
3393 { 0x2829, "PR-Electronic" },
3394 { 0x2836, "Planungsbuero" },
3395 { 0x28E1, "MTC maintronic GmbH" },
3396 { 0x2927, "ROAL Electronics SpA" },
3397 { 0x297E, "Lifetime Music Academy" },
3398 { 0x2984, "Getlux Ltd." },
3399 { 0x2999, "ALL-DO INTERNATIONAL CO., LTD." },
3400 { 0x29A1, "Sturdy Corporation" },
3401 { 0x29A9, "SRS Light Design" },
3402 { 0x29AA, "Steinigke Showtechnic GmbH" },
3403 { 0x29B2, "Selectron Bvba" },
3404 { 0x29B4, "Showtec (Highlite International B.V.)" },
3405 { 0x29B7, "Sundrax, LLC" },
3406 { 0x29B8, "Spotlight s.r.l." },
3407 { 0x29BA, "State Automation Pty Ltd." },
3408 { 0x29E8, "Stroytsirk LLC" },
3409 { 0x2A25, "Thorn Lighting Limited" },
3410 { 0x2A26, "Toni Maroni Gmb" },
3411 { 0x2AAB, "Urban Visuals & Effects Ltd." },
3412 { 0x2B28, "Visual Productions" },
3413 { 0x2B29, "MaNima Technologies BV" },
3414 { 0x2BA2, "WERPAX bvba" },
3415 { 0x2BA9, "The White Rabbit Company, Inc." },
3416 { 0x2BB4, "Williams Electronic Design Ltd." },
3417 { 0x2C1A, "DMX4ALL GmbH" },
3419 { 0x2CE0, "Lighting Services Inc." },
3420 { 0x2DC8, "Stellascapes" },
3421 { 0x2DDD, "Waylight" },
3422 { 0x2DDE, "Luminlite Electronics Co., Ltd." },
3423 { 0x2DDF, "Carpetlight GmbH" },
3424 { 0x3000, "PushingPixels" },
3425 { 0x3001, "Elemental LED, Inc." },
3426 { 0x3002, "Siberian Lighting" },
3427 { 0x3003, "ChamSix" },
3428 { 0x3235, "de koster Special Effects" },
3429 { 0x3331, "DMG Lumiere" },
3430 { 0x3332, "Teclumen s.r.l." },
3431 { 0x3333, "NightStarry Electronics Co., LTD." },
3432 { 0x3388, "Macostar International Ltd." },
3433 { 0x3434, "Global Design Solutions, Ltd." },
3434 { 0x3533, "Figure 53, LLC" },
3435 { 0x3534, "Five4, LLC" },
3436 { 0x3535, "Changsha Spark Technology Electronics Ltd." },
3437 { 0x3536, "Cindy Professional Lighting Co., Ltd." },
3438 { 0x3537, "Novacorp Inc." },
3439 { 0x3538, "Lightnet sp. z o. o." },
3440 { 0x361D, "Lumishore Ltd. UK" },
3441 { 0x3638, "Lumenpulse Lighting Inc." },
3442 { 0x37D0, "Boogy Brothers Showequipment" },
3443 { 0x37D7, "Lichttechnik & Sonderbau" },
3444 { 0x37DD, "Sehr gute GmbH" },
3445 { 0x3800, "OndeLight LTD" },
3446 { 0x3801, "SFX Controllers Sweden AB" },
3447 { 0x3805, "Yifeng Lighting Co., Ltd." },
3448 { 0x3806, "ACME EFFECTS LTD." },
3449 { 0x3868, "LanBolight Technology Co., LTD." },
3450 { 0x3888, "Fly Dragon Lighting Equipment Co.,ltd" },
3451 { 0x388A, "Guangzhou Yajiang (Yagang - Silver Star) Photoelectric Equipment Ltd." },
3452 { 0x3A37, "TheOlymp - Networking & InterNet Services" },
3453 { 0x3AFC, "Black Tank Engineering" },
3454 { 0x3B10, "NXP Semiconductors B.V." },
3455 { 0x3B88, "Shenzhen Eastar Electronic Co., Ltd." },
3456 { 0x3D30, "zactrack Lighting Technologies Gmbh" },
3457 { 0x400D, "Quasar Science LLC" },
3458 { 0x4051, "SAN JACK ANALOG HOUSE CO., LTD." },
3459 { 0x4131, "Altman Stage Lighting" },
3460 { 0x4141, "AVAB America, Inc." },
3461 { 0x4142, "Filmgear, Inc." },
3462 { 0x4143, "AC Lasers" },
3463 { 0x4144, "ADB - TTV Technologies nv" },
3464 { 0x4145, "ADE ELETTRONICA srl" },
3465 { 0x4146, "AUS FX" },
3466 { 0x4149, "Anidea Engineering, Inc." },
3467 { 0x414C, "Artistic Licence Engineering Ltd." },
3468 { 0x414D, "Amptown Lichttechnik GmbH" },
3469 { 0x414E, "Anytronics Ltd." },
3470 { 0x4150, "Apogee Lighting" },
3471 { 0x4151, "Aquarii, Inc." },
3472 { 0x4153, "Audio Scene" },
3473 { 0x4154, "Arnold Tang Productions" },
3474 { 0x4156, "Audio Visual Devices P/L" },
3475 { 0x4164, "Adelto Industries Ltd." },
3476 { 0x416C, "Alenco BV" },
3477 { 0x4172, "ARNOLD LICHTTECHNIK" },
3478 { 0x4173, "Astera LED Technology GmbH" },
3479 { 0x4179, "AYRTON" },
3480 { 0x4241, "BECKHOFF Automation GmbH" },
3481 { 0x4243, "Bill Coghill Company : Bill Coghill Design" },
3482 { 0x4245, "Bytecraft Entertainment Pty Ltd" },
3483 { 0x424F, "BOTEX" },
3484 { 0x4253, "Barco" },
3485 { 0x42A2, "Birket Engineering, Inc." },
3486 { 0x4321, "Design Partners of Canada" },
3487 { 0x4344, "CDCA Ltd." },
3488 { 0x4347, "CAST Software" },
3489 { 0x4349, "C.I.Tronics Lighting Designers Ltda" },
3490 { 0x434B, "Color Kinetics Inc." },
3491 { 0x434C, "Crealux GmbH & Co. KG" },
3492 { 0x434D, "Coemar Spa" },
3493 { 0x434F, "Cortex Design" },
3494 { 0x4350, "CLAY PAKY S.p.A" },
3495 { 0x4353, "Capricorn Software" },
3496 { 0x4354, "City Theatrical, Inc." },
3497 { 0x4358, "Connex GmbH" },
3498 { 0x4369, "Cinetix Medien u. Interface GmbH" },
3499 { 0x436F, "CODEM MUSIC S.r.l." },
3500 { 0x4441, "DIGITAL ART SYSTEM" },
3501 { 0x4442, "ELETTROLAB S.r.l." },
3502 { 0x4443, "Claudio Dal Cero Engineering" },
3503 { 0x4444, "D.O.M. Datenverarbeitung GmbH" },
3504 { 0x4445, "Dezelectric Kft." },
3505 { 0x4446, "Doug Fleenor Design, Inc." },
3506 { 0x4449, "Durand Interstellar, Inc." },
3507 { 0x444C, "Dove Lighting Systems, Inc." },
3508 { 0x444D, "Digimedia Multimedia Lighting Solutions" },
3509 { 0x444E, "DALCNET SRL" },
3510 { 0x4450, "DMXPROFI.EU GmbH i.G." },
3511 { 0x4453, "Guangzhou Desheng Lighting Industrial Co., Ltd." },
3512 { 0x4456, "Devantech Ltd." },
3513 { 0x4466, "DF elettronica s.r.l." },
3514 { 0x4469, "Diamante Lighting Srl" },
3515 { 0x446C, "Guangdong Delos Lighting Industrial Co.,Ltd." },
3516 { 0x4533, "LEDdynamics, Inc." },
3517 { 0x453A, "E:cue Control GmbH" },
3518 { 0x4541, "Engineering Arts" },
3519 { 0x4543, "EC Elettronica Srl" },
3520 { 0x4544, "Electronics Diversified LLC" },
3521 { 0x4545, "EastSun Technology Co. Ltd." },
3522 { 0x454C, "Ingenieurbuero fuer Nachrichtentechnik in der Studio und Veranstaltungstechnik" },
3523 { 0x454D, "ELM Video Technology, Inc." },
3524 { 0x454E, "ENTTEC Pty Ltd" },
3526 { 0x4553, "ERAL srl" },
3527 { 0x4554, "Entertainment Technology" },
3528 { 0x4563, "Les Eclairages Lou Inc." },
3529 { 0x456C, "Element Labs Inc." },
3530 { 0x4631, "OKEROAB AB" },
3531 { 0x464C, "Flashlight/Ampco Holding" },
3532 { 0x4653, "IT & Eventtechnik Fabian Stumpf" },
3533 { 0x4656, "Flexvisual" },
3534 { 0x4657, "The Fountain Workshop Ltd." },
3535 { 0x4658, "MAGIC FX B.V." },
3536 { 0x4678, "Global Special Effects" },
3537 { 0x4744, "Goddard Design Co." },
3538 { 0x4745, "GPE srl" },
3539 { 0x4747, "G&G LED Lighting" },
3540 { 0x474C, "G-LEC Europe GmbH" },
3542 { 0x4752, "Greenlite" },
3543 { 0x4753, "Guangzhou Haoyang Electronic Co., Ltd." },
3544 { 0x476C, "General Luminaire (Shanghai) Ltd." },
3545 { 0x4800, "VOD VISUAL.CO. (UK) Ltd." },
3546 { 0x4801, "Capture Visualisation AB" },
3547 { 0x4843, "Horizon Control Inc." },
3549 { 0x4845, "Howard Eaton Lighting Ltd." },
3550 { 0x484C, "HBE Lighting Systems" },
3551 { 0x484F, "Hollywood Controls Inc." },
3552 { 0x4856, "Enfis Ltd" },
3553 { 0x4881, "Rena Electronica B.V." },
3554 { 0x4941, "inoage GmbH" },
3555 { 0x4942, "IBEX UK Limited" },
3556 { 0x4944, "Ingham Designs" },
3557 { 0x4945, "Insta Elektro GmbH" },
3558 { 0x4947, "IGuzzini illuminazione spa" },
3559 { 0x4948, "Ice House Productions" },
3560 { 0x494C, "I-Lum" },
3561 { 0x494E, "Interactive Technologies, Inc." },
3562 { 0x4950, "Interesting Products, Inc." },
3563 { 0x4951, "IQAir AG" },
3564 { 0x4952, "Invisible Rival Incorporated" },
3565 { 0x4953, "Integrated System Technologies Ltd." },
3566 { 0x4954, "Integrated Theatre, Inc." },
3567 { 0x4973, "Innovation Solutions Ltd." },
3568 { 0x4A31, "Joshua 1 Systems Inc." },
3569 { 0x4A41, "JANUS srl" },
3570 { 0x4A42, "JB-lighting GmbH" },
3571 { 0x4A48, "James Harris" },
3572 { 0x4A4C, "Johnsson Lighting Technologies AB" },
3573 { 0x4A53, "JSC 'MFG'" },
3574 { 0x4A54, "James Thomas Engineering" },
3575 { 0x4A61, "Jands Pty Ltd." },
3576 { 0x4ACC, "RVL techniek" },
3577 { 0x4B00, "Gabor Galyas Lighting" },
3578 { 0x4B42, "KissBox" },
3579 { 0x4B43, "TmTech Electronic Co.,Ltd." },
3580 { 0x4B46, "Kino Flo, Inc." },
3581 { 0x4B4C, "KLH Electronics PLC" },
3582 { 0x4B4D, "KMX Inc." },
3583 { 0x4B55, "kuwatec, Inc." },
3584 { 0x4C20, "LAM32 srl" },
3585 { 0x4C41, "LaserAnimation Sollinger GmbH" },
3586 { 0x4C44, "LVDIAN PHOTOELECTRIC SCIENCE TECHNOLOGY LIMITED" },
3587 { 0x4C45, "Leviton Manufacturing Co., Inc." },
3588 { 0x4C47, "LightGeist Ltd." },
3589 { 0x4C4C, "LUMINEX Lighting Control Equipment bvba" },
3590 { 0x4C4D, "Ultratec Special Effects" },
3591 { 0x4C50, "LightProcessor Ltd" },
3592 { 0x4C52, "High End Systems Inc." },
3593 { 0x4C53, "Licht-, Steuer- und Schaltanlagenbau GmbH (LSS GmbH)" },
3594 { 0x4C54, "Licht-Technik" },
3595 { 0x4C55, "LumenRadio AB" },
3596 { 0x4C56, "LEDValley Technologies Sdn Bhd" },
3597 { 0x4C57, "LightWild LC" },
3598 { 0x4C58, "Lex Products Corp." },
3599 { 0x4C59, "Laser Technology Ltd." },
3600 { 0x4C5A, "Sumolight GmbH / LightMinded Industries, Inc." },
3601 { 0x4C5B, "LightLife, Gesellschaft fur audiovisuelle Erlebnisse mbH" },
3602 { 0x4C64, "LED Team" },
3603 { 0x4C65, "Legargeant and Associates" },
3604 { 0x4C69, "LIGHTOLIER" },
3605 { 0x4C6C, "Lampo Lighting Designers" },
3606 { 0x4C73, "LSC Lighting Systems (Aust) Pty. Ltd." },
3607 { 0x4CDC, "acdc LED Ltd." },
3608 { 0x4CE5, "LED Company s.r.o." },
3609 { 0x4D41, "MA Lighting Technology GmbH" },
3610 { 0x4D42, "LAN Systems--Midibox project" },
3611 { 0x4D44, "Les Generateurs de brouillard MDG Fog Generators Ltd." },
3612 { 0x4D4C, "Mode Lighting (UK) Ltd." },
3613 { 0x4D50, "Martin Professional A/S" },
3614 { 0x4D54, "medien technik cords" },
3615 { 0x4D56, "Avolites Ltd." },
3616 { 0x4D58, "MX design" },
3617 { 0x4D5A, "Covert Science GmbH" },
3618 { 0x4D61, "MARTINI S.p.A." },
3619 { 0x4D77, "Mueller Elektronik" },
3620 { 0x4E41, "Company NA" },
3621 { 0x4E4A, "NJD Electronics" },
3622 { 0x4E4C, "NOVALIGHT S.r.l." },
3623 { 0x4E57, "AIM Northwest" },
3625 { 0x4F41, "Oase GmbH" },
3626 { 0x4F43, "Offstage Controls (formerly Obsidian Control)" },
3627 { 0x4F4C, "DDS Elettronica" },
3628 { 0x4F75, "Outsight Pty Ltd." },
3629 { 0x5000, "http://www.orangepi-dmx.org" },
3630 { 0x5001, "Hua Yuan Ke Tai" },
3631 { 0x5002, "Shanghai Shylon Optoelectronic Technology Co., Ltd." },
3632 { 0x5003, "Futlight Optoelectronics Co.,Ltd." },
3633 { 0x5004, "Shanghai Sansi Electronic Engineering Co.,Ltd" },
3634 { 0x5005, "MEDIAM Ltd. (Modus brand)" },
3635 { 0x5006, "ENEDO Power SpA" },
3636 { 0x5007, "Alfalite" },
3637 { 0x5008, "Chengdu Chengyu Electronic Technology Co., Ltd." },
3638 { 0x5009, "Izzro Optoelectronics Technology Co., Ltd." },
3639 { 0x500A, "AU Optronics Corporation (AUO)" },
3640 { 0x500B, "WebKat Eletronic's" },
3641 { 0x500C, "L.E.C. Societe Lyonnaise D' Equipement Et De Controle" },
3642 { 0x5010, "Shenzhen Viye Technology Co., Ltd." },
3643 { 0x5011, "Guangzhou Skydance Co., Ltd." },
3644 { 0x5017, "American Lighting" },
3645 { 0x5040, "Guangzhou Color Imagination LED Lighting Ltd." },
3646 { 0x5041, "Philips Entertainment Lighting Asia" },
3647 { 0x5043, "Pathway Connectivity Inc." },
3648 { 0x504C, "Peperoni Lighting-Solutions" },
3649 { 0x504D, "Peter Meyer Project Management Adviser GmbH" },
3650 { 0x504E, "Uni-Bright nv" },
3651 { 0x5050, "Newton Engineering and Design Group LLC" },
3652 { 0x5051, "PDQ Manufacturing, Inc" },
3653 { 0x5052, "Production Resource Group" },
3654 { 0x5053, "Philips Selecon" },
3655 { 0x5058, "PXM s.c." },
3656 { 0x5062, "LED, Inc." },
3657 { 0x5065, "Peradise" },
3658 { 0x5066, "Pfannenberg GmbH" },
3659 { 0x5068, "Philips Lighting BV" },
3660 { 0x5070, "Show Light Oy" },
3661 { 0x5071, "Raindrop-Media" },
3662 { 0x5072, "ARRI Rental Deutschland GmbH" },
3663 { 0x5075, "Pulsar Light of Cambridge Ltd." },
3664 { 0x5099, "Altec Di Gregorio Andrea" },
3665 { 0x5100, "Luxibel" },
3666 { 0x5101, "LBT Electronics Pvt. Ltd." },
3667 { 0x5102, "INDATA d.o.o." },
3668 { 0x512D, "DJPOWER ELECTRONIC STAGE LIGHTING FIXTURE FACTORY (GUANGZHOU)" },
3669 { 0x5149, "JAP Optoelectronic Ltd." },
3670 { 0x514D, "QMAXZ lighting" },
3671 { 0x5153, "QuickSilver Controls, Inc." },
3672 { 0x5168, "Shenzhen Sunricher Technology Co.,Ltd." },
3673 { 0x516C, "Quicklights" },
3674 { 0x51D7, "Innovative Dimmers LLC (Ratpac dimmers)" },
3675 { 0x51D8, "Amperor Electronics (Shenzhen) Co., Ltd." },
3676 { 0x5200, "Shenzhen Aotian Technology Co. , Ltd." },
3677 { 0x5201, "Crestron Electronics, Inc." },
3678 { 0x5202, "Shenzhen Lianjin Photoelectricity Co., Ltd." },
3679 { 0x5244, "Revolution Display" },
3680 { 0x524C, "Radical Lighting Ltd." },
3681 { 0x524D, "RUIZ TECH" },
3682 { 0x524E, "RNC Systems Inc." },
3683 { 0x5250, "RootPath Ltd." },
3684 { 0x5252, "RoscoLab Ltd." },
3685 { 0x5253, "Robe Show Lighting s.r.o." },
3686 { 0x5341, "Stage Technologies Limited" },
3687 { 0x5342, "Industrias Sola Basic S.A. de C.V." },
3688 { 0x5343, "Ocean Thin Films Inc." },
3689 { 0x5344, "Stardraw.com Ltd." },
3690 { 0x5345, "Selador" },
3691 { 0x5346, "Synthe FX, LLC" },
3692 { 0x5347, "SGM Technology For Lighting SPA" },
3693 { 0x5348, "Schreder" },
3694 { 0x5349, "Soundsculpture Incorporated" },
3695 { 0x534A, "SAS Productions" },
3696 { 0x534B, "SK-Software" },
3697 { 0x534C, "SOUNDLIGHT" },
3698 { 0x534E, "Sand Network Systems" },
3699 { 0x5353, "Sean Sill" },
3700 { 0x5354, "Stagetronics Ltda" },
3701 { 0x5355, "Lochmun Ltd." },
3702 { 0x5356, "OOO SAMLIGHT" },
3703 { 0x5363, "SpaceCannon vH" },
3704 { 0x5368, "ShowCAD Control Systems Ltd." },
3705 { 0x536C, "StageLine Electronic" },
3706 { 0x5370, "Chroma-Q" },
3707 { 0x5374, "STG-Beikirch Industrieelektronik + Sicherheitstechnik GmbH & Co. KG" },
3708 { 0x5376, "SV-wtu eU" },
3709 { 0x5377, "SWISSON AG" },
3710 { 0x5379, "Singularity (UK) Ltd." },
3711 { 0x53A8, "Simon Tech" },
3712 { 0x5431, "AUTOLUX Handels- und ProduktionsgmbH" },
3713 { 0x5441, "TecArt Lighting" },
3714 { 0x5444, "Technographic Displays Ltd." },
3715 { 0x5445, "TESI Elettronica srl" },
3716 { 0x544C, "Tempest Lighting Inc." },
3717 { 0x5453, "TalentStorm Enterprises, Inc." },
3718 { 0x5454, "TamaTech Labo Company Ltd," },
3719 { 0x5459, "TDE-Lighttech B.V." },
3720 { 0x5550, "UP-LUX Eletronica Ltda." },
3721 { 0x5555, "Martin Sukale Medientechnik GbR" },
3722 { 0x55AA, "Emilum GmbH" },
3723 { 0x564C, "Vari-Lite, Inc." },
3724 { 0x5651, "Vision Quest Lighting Inc." },
3725 { 0x5652, "Megapixel Visual Reality" },
3726 { 0x5653, "Viso Systems Aps" },
3727 { 0x5655, "Shenzhen CAS VU Technologies Co., Ltd." },
3728 { 0x5744, "W-DEV" },
3729 { 0x5746, "Wildfire, Inc." },
3730 { 0x5747, "Wenger / JR Clancy" },
3731 { 0x5753, "Wireless Solution Sweden AB" },
3732 { 0x5754, "LIGHTMAN (Interlite AB)" },
3733 { 0x5759, "Wybron, Inc." },
3734 { 0x584C, "X-Laser" },
3735 { 0x584D, "Xtraordinary Musical Accolade Systems" },
3736 { 0x5858, "Illuminance Technologies" },
3737 { 0x5865, "XENON ARCHITECTURAL LIGHTING" },
3738 { 0x586C, "Eurolumen (Shanghai) Lighting Co., LTD" },
3739 { 0x586D, "www.doityourselfchristmas.com hobbyists" },
3740 { 0x5888, "Plsao Optoelectronics Technology Co., Ltd." },
3741 { 0x5A53, "Zingerli Show Engineering" },
3743 { 0x5D00, "L1 Inc." },
3744 { 0x5D01, "MTS Medientechnik GmbH" },
3745 { 0x5D02, "Underwater Lights Limited" },
3746 { 0x5DAC, "Mediatec Group" },
3747 { 0x5E5D, "Multisenses GmbH" },
3748 { 0x5E5E, "Converging Systems Inc." },
3749 { 0x6019, "Artifice Industries Ltd." },
3750 { 0x6100, "Krobox Sdn Bhd" },
3751 { 0x610A, "Visenge Pty. Ltd" },
3752 { 0x6123, "CMYLight (S) Pte. Ltd." },
3753 { 0x6124, "Fiilex" },
3754 { 0x614C, "Alektra AB" },
3755 { 0x6154, "Advatek Lighting" },
3756 { 0x6164, "AVID Labs" },
3757 { 0x616C, "Advanced Lighting Systems" },
3758 { 0x6200, "LUCITAG Ltd." },
3759 { 0x6201, "NuDelta Digital, LLC" },
3760 { 0x6202, "ESCO Sp. z o.o." },
3761 { 0x6203, "Flektor" },
3762 { 0x6204, "Shenzhen Absen Optoelectronic Co., Ltd" },
3763 { 0x6205, "Zhuhai Ltech Technology Co., Ltd." },
3764 { 0x6206, "Lighting Innovation Company, LLC" },
3765 { 0x6273, "B&S Elektronische Geräte GmbH" },
3766 { 0x6342, "Mega Systems Inc." },
3767 { 0x6364, "CDS advanced technology bv" },
3768 { 0x636D, "Cambridge Micro Engineering Limited" },
3769 { 0x641A, "Heliospectra AB" },
3770 { 0x644C, "bdL KG" },
3771 { 0x6461, "Digilin Australia" },
3772 { 0x6464, "Dangeross Design" },
3773 { 0x646C, "dilitronics GmbH" },
3774 { 0x646F, "eldoLED BV" },
3775 { 0x6472, "Ingenieurburo Steffens" },
3776 { 0x64B9, "Finelite, Inc." },
3777 { 0x6542, "eBrain GmbH" },
3778 { 0x6543, "LES-TV Ltd." },
3779 { 0x6547, "euroGenie" },
3780 { 0x6553, "EtherShow" },
3781 { 0x6555, "Shantea Controls" },
3782 { 0x6565, "Stratus Systems LLC" },
3783 { 0x656C, "ELC lighting" },
3784 { 0x6573, "Environmental Lighting Solutions" },
3785 { 0x6574, "Electronic Theatre Controls, Inc." },
3786 { 0x6576, "eventa Aktiengesellschaft" },
3787 { 0x6600, "WANTS Electronics Co. Ltd." },
3788 { 0x6644, "Sunlab Technologies S.L." },
3789 { 0x666D, "MAD-Effects" },
3790 { 0x6673, "Freescale Semiconductor U.K. Ltd." },
3791 { 0x6756, "Lumisia Co., Ltd." },
3792 { 0x676C, "GLP German Light Products GmbH" },
3793 { 0x67F0, "Toshiba Lighting & Technology Corporation" },
3794 { 0x6816, "ChamberPlus Co., Ltd" },
3795 { 0x6864, "James Embedded Systems Engineering (JESE Ltd)" },
3796 { 0x6865, "Hubbell Entertainment, Inc." },
3797 { 0x686C, "HERA LED" },
3798 { 0x694C, "iLight Technologies Inc" },
3799 { 0x6969, "Better Way Lighting" },
3800 { 0x6974, "Ittermann electronic GmbH" },
3801 { 0x6A6A, "Roxx GmbH" },
3802 { 0x6A6B, "JPK Systems Limited" },
3803 { 0x6B64, "Key Delfin" },
3804 { 0x6B69, "Magical Fountain SA de CV (Magic Fountain)" },
3805 { 0x6BEA, "Remoticom BV" },
3806 { 0x6BED, "Planar Systems, Inc." },
3807 { 0x6BEE, "Ephesus Lighting" },
3808 { 0x6BEF, "Shenzhen Ifountain Technology Ltd." },
3809 { 0x6C6D, "Zumtobel Lighting GmbH" },
3810 { 0x6C78, "Claude Heintz Design" },
3811 { 0x6C92, "Ambra Elettronica s.r.l." },
3812 { 0x6D61, "MAL Effekt-Technik GmbH" },
3813 { 0x6D62, "MBN GmbH" },
3814 { 0x6D63, "Sein & Schein GmbH" },
3815 { 0x6E00, "LEDeco solution, s.r.o." },
3816 { 0x6F00, "Guangzhou Huaying Stage Lighting Equipment Co. Ltd." },
3817 { 0x6F01, "DAVAI!JPL" },
3818 { 0x6F02, "hazebase (Uta Raabe e.K.)" },
3819 { 0x6FEA, "Lumina Visual Productions" },
3820 { 0x6FEB, "Insight Lighting" },
3821 { 0x6FEC, "Arc Lighting Co. Ltd." },
3822 { 0x6FED, "Explorentis" },
3823 { 0x6FEE, "fos design sp. z o.o." },
3824 { 0x7000, "Nippon Ceramic Co., Ltd." },
3825 { 0x700A, "Guangzhou Leemc Lighting Tech., Co., Ltd." },
3826 { 0x700B, "Vice Lighting DWC LLC" },
3827 { 0x7068, "Pharos Architectural Controls" },
3828 { 0x7070, "SBT GmbH" },
3829 { 0x7072, "Pr-Lighting Ltd." },
3830 { 0x7078, "PixelRange Inc." },
3831 { 0x70F0, "Pangolin Laser Systems, Inc." },
3832 { 0x7151, "The Light Source, Inc." },
3833 { 0x7363, "Sean Christopher FX" },
3834 { 0x7365, "Ballantyne Strong Inc." },
3835 { 0x736C, "Strand Lighting Ltd." },
3836 { 0x7400, "Danalux" },
3837 { 0x7401, "Harvatek Corporation" },
3838 { 0x7402, "Chris Kallas" },
3839 { 0x7403, "Yenrich Technology Corporation" },
3841 { 0x7765, "MKT engineering GmbH & Co. KG" },
3842 { 0x7777, "DVT Light" },
3843 { 0x7788, "DigitaLicht AG" },
3844 { 0x780E, "Mole-Richardson Co." },
3845 { 0x783A, "Audiolux Devices LLC" },
3846 { 0x786C, "XLN-t bvba" },
3847 { 0x7888, "Tontron Photoelectric Co., Limited" },
3848 { 0x78B4, "LED Flex Limited" },
3849 { 0x7900, "Leprecon / CAE, Inc." },
3850 { 0x79BC, "DC Reactive" },
3851 { 0x7A70, "Open Lighting" },
3852 { 0x7AA0, "Anaren Inc." },
3853 { 0x7AAA, "WEAD (Wagner Electronic and Design)" },
3854 { 0x7AAB, "Hyundai Fomex Co., Ltd." },
3855 { 0x7B1B, "DimLight Ltd." },
3856 { 0x7D00, "expanseElectronics" },
3857 { 0x7D61, "HMB|TEC GmbH" },
3858 { 0x7DE7, "Guangzhou ILightings Equipment Co., Ltd." },
3859 { 0x7DE8, "Shenzhen LAMP Technology Co., Ltd." },
3860 { 0x7DEA, "RobLight A/S" },
3861 { 0x7DEB, "Krypton" },
3862 { 0x7DEE, "zencontrol Pty Ltd" },
3863 { 0x7EE7, "Arthur Digital Solutions Kft" },
3864 { 0x7EE8, "Guangzhou Yingfeng Lighting Equipment Co., Ltd." },
3865 { 0x7EE9, "Technology Kitchen" },
3866 { 0x7EEA, "Cartwright Engineering" },
3867 { 0x7EEB, "mylaserpage" },
3868 { 0x7EEC, "SHENZHEN LP Display" },
3869 { 0x7EED, "Look Solutions GmbH & Co. KG" },
3870 { 0x7EEE, "General Lighting Electronic Co., Ltd." },
3871 { 0x7EEF, "Huizhou Mounteck Technology Co., Ltd." },
3872 { 0x7FF0, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3873 { 0x7FF1, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3874 { 0x7FF2, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3875 { 0x7FF3, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3876 { 0x7FF4, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3877 { 0x7FF5, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3878 { 0x7FF6, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3879 { 0x7FF7, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3880 { 0x7FF8, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3881 { 0x7FF9, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3882 { 0x7FFA, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3883 { 0x7FFB, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3884 { 0x7FFC, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3885 { 0x7FFD, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3886 { 0x7FFE, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3887 { 0x7FFF, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" },
3891 static value_string_ext artnet_esta_man_vals_ext
= VALUE_STRING_EXT_INIT(artnet_esta_man_vals
);
3893 static const value_string artnet_indicator_state_vals
[] = {
3894 { 0x00, "unknown" },
3895 { 0x01, "Locate Mode" },
3896 { 0x02, "Mute Mode" },
3897 { 0x03, "Normal Mode" },
3901 static const true_false_string tfs_artnet_rom_booted
= {
3903 "Normal boot (from flash)"
3906 static const value_string artnet_port_prog_auth_vals
[] = {
3907 { 0x00, "unknown" },
3908 { 0x01, "front panel" },
3909 { 0x02, "network" },
3914 #define ARTNET_PT_DMX512 0x00
3915 #define ARTNET_PT_MIDI 0x01
3916 #define ARTNET_PT_AVAB 0x02
3917 #define ARTNET_PT_CMX 0x03
3918 #define ARTNET_PT_ADB625 0x04
3919 #define ARTNET_PT_ARTNET 0x05
3920 #define ARTNET_PT_DALI 0x06
3922 #define ARTNET_PT_DIR_NONE 0x00
3923 #define ARTNET_PT_DIR_INPUT 0x40
3924 #define ARTNET_PT_DIR_OUTPUT 0x80
3925 #define ARTNET_PT_DIR_BIDIR 0xc0
3927 static const value_string artnet_port_type_vals
[] = {
3928 { ARTNET_PT_DIR_NONE
, "Not present" },
3929 { ARTNET_PT_DIR_INPUT
| ARTNET_PT_DMX512
, "DMX512 -> Art-Net" },
3930 { ARTNET_PT_DIR_INPUT
| ARTNET_PT_MIDI
, "MIDI -> Art-Net" },
3931 { ARTNET_PT_DIR_INPUT
| ARTNET_PT_AVAB
, "Avab -> Art-Net" },
3932 { ARTNET_PT_DIR_INPUT
| ARTNET_PT_CMX
, "Colortran CMX -> Art-Net" },
3933 { ARTNET_PT_DIR_INPUT
| ARTNET_PT_ADB625
, "ADB 62.5 -> Art-Net" },
3934 { ARTNET_PT_DIR_INPUT
| ARTNET_PT_ARTNET
, "Art-Net -> Art-Net" },
3935 { ARTNET_PT_DIR_INPUT
| ARTNET_PT_DALI
, "DALI -> Art-Net" },
3936 { ARTNET_PT_DIR_OUTPUT
| ARTNET_PT_DMX512
, "Art-Net -> DMX512" },
3937 { ARTNET_PT_DIR_OUTPUT
| ARTNET_PT_MIDI
, "Art-Net -> MIDI" },
3938 { ARTNET_PT_DIR_OUTPUT
| ARTNET_PT_AVAB
, "Art-Net -> Avab" },
3939 { ARTNET_PT_DIR_OUTPUT
| ARTNET_PT_CMX
, "Art-Net -> Colortran CMX" },
3940 { ARTNET_PT_DIR_OUTPUT
| ARTNET_PT_ADB625
, "Art-Net -> ADB 62.5" },
3941 { ARTNET_PT_DIR_OUTPUT
| ARTNET_PT_ARTNET
, "Art-Net -> Art-Net" },
3942 { ARTNET_PT_DIR_OUTPUT
| ARTNET_PT_DALI
, "Art-Net -> DALI" },
3943 { ARTNET_PT_DIR_BIDIR
| ARTNET_PT_DMX512
, "Art-Net <-> DMX512" },
3944 { ARTNET_PT_DIR_BIDIR
| ARTNET_PT_MIDI
, "Art-Net <-> MIDI" },
3945 { ARTNET_PT_DIR_BIDIR
| ARTNET_PT_AVAB
, "Art-Net <-> Avab" },
3946 { ARTNET_PT_DIR_BIDIR
| ARTNET_PT_CMX
, "Art-Net <-> Colortran CMX" },
3947 { ARTNET_PT_DIR_BIDIR
| ARTNET_PT_ADB625
, "Art-Net <-> ADB 62.5" },
3948 { ARTNET_PT_DIR_BIDIR
| ARTNET_PT_ARTNET
, "Art-Net <-> Art-Net" },
3949 { ARTNET_PT_DIR_BIDIR
| ARTNET_PT_DALI
, "Art-Net <-> DALI" },
3954 #define ARTNET_AC_NONE 0x00
3955 #define ARTNET_AC_CANCEL_MERGE 0x01
3956 #define ARTNET_AC_LED_NORMAL 0x02
3957 #define ARTNET_AC_LED_MUTE 0x03
3958 #define ARTNET_AC_LED_LOCATE 0x04
3959 #define ARTNET_AC_RESET_RX_FLAGS 0x05
3960 #define ARTNET_AC_ANALYSIS_ON 0x06
3961 #define ARTNET_AC_ANALYSIS_OFF 0x07
3962 #define ARTNET_AC_FAIL_HOLD 0x08
3963 #define ARTNET_AC_FAIL_ZERO 0x09
3964 #define ARTNET_AC_FAIL_FULL 0x0A
3965 #define ARTNET_AC_FAIL_SCENE 0x0B
3966 #define ARTNET_AC_FAIL_RECORD 0x0C
3967 #define ARTNET_AC_MERGE_LTP0 0x10
3968 #define ARTNET_AC_MERGE_LTP1 0x11
3969 #define ARTNET_AC_MERGE_LTP2 0x12
3970 #define ARTNET_AC_MERGE_LTP3 0x13
3971 #define ARTNET_AC_DIR_TX0 0x20
3972 #define ARTNET_AC_DIR_TX1 0x21
3973 #define ARTNET_AC_DIR_TX2 0x22
3974 #define ARTNET_AC_DIR_TX3 0x23
3975 #define ARTNET_AC_DIR_RX0 0x30
3976 #define ARTNET_AC_DIR_RX1 0x31
3977 #define ARTNET_AC_DIR_RX2 0x32
3978 #define ARTNET_AC_DIR_RX3 0x33
3979 #define ARTNET_AC_MERGE_HTP0 0x50
3980 #define ARTNET_AC_MERGE_HTP1 0x51
3981 #define ARTNET_AC_MERGE_HTP2 0x52
3982 #define ARTNET_AC_MERGE_HTP3 0x53
3983 #define ARTNET_AC_ARTNET_SEL0 0x60
3984 #define ARTNET_AC_ARTNET_SEL1 0x61
3985 #define ARTNET_AC_ARTNET_SEL2 0x62
3986 #define ARTNET_AC_ARTNET_SEL3 0x63
3987 #define ARTNET_AC_ACN_SEL0 0x70
3988 #define ARTNET_AC_ACN_SEL1 0x71
3989 #define ARTNET_AC_ACN_SEL2 0x72
3990 #define ARTNET_AC_ACN_SEL3 0x73
3991 #define ARTNET_AC_CLEAR_OP0 0x90
3992 #define ARTNET_AC_CLEAR_OP1 0x91
3993 #define ARTNET_AC_CLEAR_OP2 0x92
3994 #define ARTNET_AC_CLEAR_OP3 0x93
3995 #define ARTNET_AC_STYLE_DELTA0 0xA0
3996 #define ARTNET_AC_STYLE_DELTA1 0xA1
3997 #define ARTNET_AC_STYLE_DELTA2 0xA2
3998 #define ARTNET_AC_STYLE_DELTA3 0xA3
3999 #define ARTNET_AC_STYLE_CONST0 0xB0
4000 #define ARTNET_AC_STYLE_CONST1 0xB1
4001 #define ARTNET_AC_STYLE_CONST2 0xB2
4002 #define ARTNET_AC_STYLE_CONST3 0xB3
4003 #define ARTNET_AC_RDM_ENABLE0 0xC0
4004 #define ARTNET_AC_RDM_ENABLE1 0xC1
4005 #define ARTNET_AC_RDM_ENABLE2 0xC2
4006 #define ARTNET_AC_RDM_ENABLE3 0xC3
4007 #define ARTNET_AC_RDM_DISABLE0 0xD0
4008 #define ARTNET_AC_RDM_DISABLE1 0xD1
4009 #define ARTNET_AC_RDM_DISABLE2 0xD2
4010 #define ARTNET_AC_RDM_DISABLE3 0xD3
4011 #define ARTNET_AC_BQP0 0xE0
4012 #define ARTNET_AC_BQP1 0xE1
4013 #define ARTNET_AC_BQP2 0xE2
4014 #define ARTNET_AC_BQP3 0xE3
4015 #define ARTNET_AC_BQP4 0xE4
4016 #define ARTNET_AC_BQP5 0xE5
4017 #define ARTNET_AC_BQP6 0xE6
4018 #define ARTNET_AC_BQP7 0xE7
4019 #define ARTNET_AC_BQP8 0xE8
4020 #define ARTNET_AC_BQP9 0xE9
4021 #define ARTNET_AC_BQP10 0xEA
4022 #define ARTNET_AC_BQP11 0xEB
4023 #define ARTNET_AC_BQP12 0xEC
4024 #define ARTNET_AC_BQP13 0xED
4025 #define ARTNET_AC_BQP14 0xEE
4026 #define ARTNET_AC_BQP15 0xEF
4028 static const value_string artnet_address_command_vals
[] = {
4029 { ARTNET_AC_NONE
, "No Action" },
4030 { ARTNET_AC_CANCEL_MERGE
, "Cancel merge" },
4031 { ARTNET_AC_LED_NORMAL
, "LED Normal" },
4032 { ARTNET_AC_LED_MUTE
, "LED Mute" },
4033 { ARTNET_AC_LED_LOCATE
, "LED Locate" },
4034 { ARTNET_AC_RESET_RX_FLAGS
, "Reset SIP text" },
4035 { ARTNET_AC_ANALYSIS_ON
, "Enable analysis/debugging" },
4036 { ARTNET_AC_ANALYSIS_OFF
, "Disable analysis/debugging" },
4037 { ARTNET_AC_FAIL_HOLD
, "AcFail: Set outputs to hold last state" },
4038 { ARTNET_AC_FAIL_ZERO
, "AcFail: Set outputs to zero" },
4039 { ARTNET_AC_FAIL_FULL
, "AcFail: Set outputs to full" },
4040 { ARTNET_AC_FAIL_SCENE
, "AcFail: Set outputs to failsafe scene" },
4041 { ARTNET_AC_FAIL_RECORD
, "AcFail: Record outputs as failsafe scene" },
4042 { ARTNET_AC_MERGE_LTP0
, "DMX port 1 LTP" },
4043 { ARTNET_AC_MERGE_LTP1
, "DMX port 2 LTP" },
4044 { ARTNET_AC_MERGE_LTP2
, "DMX port 3 LTP" },
4045 { ARTNET_AC_MERGE_LTP3
, "DMX port 4 LTP" },
4046 { ARTNET_AC_DIR_TX0
, "Set Port 0 direction to output" },
4047 { ARTNET_AC_DIR_TX1
, "Set Port 1 direction to output (deprecated)" },
4048 { ARTNET_AC_DIR_TX2
, "Set Port 2 direction to output (deprecated)" },
4049 { ARTNET_AC_DIR_TX3
, "Set Port 3 direction to output (deprecated)" },
4050 { ARTNET_AC_DIR_RX0
, "Set Port 0 direction to input" },
4051 { ARTNET_AC_DIR_RX1
, "Set Port 1 direction to input (deprecated)" },
4052 { ARTNET_AC_DIR_RX2
, "Set Port 2 direction to input (deprecated)" },
4053 { ARTNET_AC_DIR_RX3
, "Set Port 3 direction to input (deprecated)" },
4054 { ARTNET_AC_MERGE_HTP0
, "DMX port 1 HTP" },
4055 { ARTNET_AC_MERGE_HTP1
, "DMX port 2 HTP" },
4056 { ARTNET_AC_MERGE_HTP2
, "DMX port 3 HTP" },
4057 { ARTNET_AC_MERGE_HTP3
, "DMX port 4 HTP" },
4058 { ARTNET_AC_ARTNET_SEL0
, "DMX port 1 Art-Net -> DMX/RDM" },
4059 { ARTNET_AC_ARTNET_SEL1
, "DMX port 2 Art-Net -> DMX/RDM" },
4060 { ARTNET_AC_ARTNET_SEL2
, "DMX port 3 Art-Net -> DMX/RDM" },
4061 { ARTNET_AC_ARTNET_SEL3
, "DMX port 4 Art-Net -> DMX/RDM" },
4062 { ARTNET_AC_ACN_SEL0
, "DMX port 1 Art-Net -> RDM, sACN -> DMX" },
4063 { ARTNET_AC_ACN_SEL1
, "DMX port 2 Art-Net -> RDM, sACN -> DMX" },
4064 { ARTNET_AC_ACN_SEL2
, "DMX port 3 Art-Net -> RDM, sACN -> DMX" },
4065 { ARTNET_AC_ACN_SEL3
, "DMX port 4 Art-Net -> RDM, sACN -> DMX" },
4066 { ARTNET_AC_CLEAR_OP0
, "Clear DMX port 1" },
4067 { ARTNET_AC_CLEAR_OP1
, "Clear DMX port 2" },
4068 { ARTNET_AC_CLEAR_OP2
, "Clear DMX port 3" },
4069 { ARTNET_AC_CLEAR_OP3
, "Clear DMX port 4" },
4070 { ARTNET_AC_STYLE_DELTA0
, "DMX port 1 delta mode" },
4071 { ARTNET_AC_STYLE_DELTA1
, "DMX port 2 delta mode" },
4072 { ARTNET_AC_STYLE_DELTA2
, "DMX port 3 delta mode" },
4073 { ARTNET_AC_STYLE_DELTA3
, "DMX port 4 delta mode" },
4074 { ARTNET_AC_STYLE_CONST0
, "DMX port 1 constant mode" },
4075 { ARTNET_AC_STYLE_CONST1
, "DMX port 2 constant mode" },
4076 { ARTNET_AC_STYLE_CONST2
, "DMX port 3 constant mode" },
4077 { ARTNET_AC_STYLE_CONST3
, "DMX port 4 constant mode" },
4078 { ARTNET_AC_RDM_ENABLE0
, "DMX port 1 enable RDM" },
4079 { ARTNET_AC_RDM_ENABLE1
, "DMX port 2 enable RDM" },
4080 { ARTNET_AC_RDM_ENABLE2
, "DMX port 3 enable RDM" },
4081 { ARTNET_AC_RDM_ENABLE3
, "DMX port 4 enable RDM" },
4082 { ARTNET_AC_RDM_DISABLE0
, "DMX port 1 disable RDM" },
4083 { ARTNET_AC_RDM_DISABLE1
, "DMX port 2 disable RDM" },
4084 { ARTNET_AC_RDM_DISABLE2
, "DMX port 3 disable RDM" },
4085 { ARTNET_AC_RDM_DISABLE3
, "DMX port 4 disable RDM" },
4086 { ARTNET_AC_BQP0
, "Set BackgroundQueuePolicy to 0 (Collect using STATUS_NONE)" },
4087 { ARTNET_AC_BQP1
, "Set BackgroundQueuePolicy to 1 (Collect using STATUS_ADVISORY)" },
4088 { ARTNET_AC_BQP2
, "Set BackgroundQueuePolicy to 2 (Collect using STATUS_WARNING)" },
4089 { ARTNET_AC_BQP3
, "Set BackgroundQueuePolicy to 3 (Collect using STATUS_ERROR)" },
4090 { ARTNET_AC_BQP4
, "Set BackgroundQueuePolicy to 4 (Disabled)" },
4091 { ARTNET_AC_BQP5
, "Set BackgroundQueuePolicy to 5 (user defined)" },
4092 { ARTNET_AC_BQP6
, "Set BackgroundQueuePolicy to 6 (user defined)" },
4093 { ARTNET_AC_BQP7
, "Set BackgroundQueuePolicy to 7 (user defined)" },
4094 { ARTNET_AC_BQP8
, "Set BackgroundQueuePolicy to 8 (user defined)" },
4095 { ARTNET_AC_BQP9
, "Set BackgroundQueuePolicy to 9 (user defined)" },
4096 { ARTNET_AC_BQP10
, "Set BackgroundQueuePolicy to 10 (user defined)" },
4097 { ARTNET_AC_BQP11
, "Set BackgroundQueuePolicy to 11 (user defined)" },
4098 { ARTNET_AC_BQP12
, "Set BackgroundQueuePolicy to 12 (user defined)" },
4099 { ARTNET_AC_BQP13
, "Set BackgroundQueuePolicy to 13 (user defined)" },
4100 { ARTNET_AC_BQP14
, "Set BackgroundQueuePolicy to 14 (user defined)" },
4101 { ARTNET_AC_BQP15
, "Set BackgroundQueuePolicy to 15 (user defined)" },
4105 #define ARTNET_FT_FIRM_FIRST 0x00
4106 #define ARTNET_FT_FIRM_CONT 0x01
4107 #define ARTNET_FT_FIRM_LAST 0x02
4108 #define ARTNET_FT_UBEA_FIRST 0x03
4109 #define ARTNET_FT_UBEA_CONT 0x04
4110 #define ARTNET_FT_UBEA_LAST 0x05
4112 static const value_string artnet_firmware_master_type_vals
[] = {
4113 { ARTNET_FT_FIRM_FIRST
, "FirmFirst" },
4114 { ARTNET_FT_FIRM_CONT
, "FirmCont" },
4115 { ARTNET_FT_FIRM_LAST
, "FirmLast" },
4116 { ARTNET_FT_UBEA_FIRST
, "UbeaFirst" },
4117 { ARTNET_FT_UBEA_CONT
, "UbeaCont" },
4118 { ARTNET_FT_UBEA_LAST
, "UbeaLast" },
4122 #define ARTNET_FRT_FIRM_BLOCK_GOOD 0x00
4123 #define ARTNET_FRT_FIRM_ALL_GOOD 0x01
4124 #define ARTNET_FRT_FIRM_FAIL 0xff
4126 static const value_string artnet_firmware_reply_type_vals
[] = {
4127 { ARTNET_FRT_FIRM_BLOCK_GOOD
, "FirmBlockGood" },
4128 { ARTNET_FRT_FIRM_ALL_GOOD
, "FirmAllGood" },
4129 { ARTNET_FRT_FIRM_FAIL
, "FirmFail" },
4133 #define ARTNET_TRC_TOD_FULL 0x00
4135 static const value_string artnet_tod_request_command_vals
[] = {
4136 { ARTNET_TRC_TOD_FULL
, "TodFull" },
4140 #define ARTNET_TDC_TOD_FULL 0x00
4141 #define ARTNET_TDC_TOD_NAK 0xFF
4143 static const value_string artnet_tod_data_command_vals
[] = {
4144 { ARTNET_TDC_TOD_FULL
, "TodFull" },
4145 { ARTNET_TDC_TOD_NAK
, "TodNak" },
4149 #define ARTNET_TCC_ATC_NONE 0x00
4150 #define ARTNET_TCC_ATC_FLUSH 0x01
4151 #define ARTNET_TCC_ATC_END 0x02
4152 #define ARTNET_TCC_ATC_INC_ON 0x03
4153 #define ARTNET_TCC_ATC_INC_OFF 0x04
4155 static const value_string artnet_tod_control_command_vals
[] = {
4156 { ARTNET_TCC_ATC_NONE
, "AtcNone" },
4157 { ARTNET_TCC_ATC_FLUSH
, "AtcFlush" },
4158 { ARTNET_TCC_ATC_END
, "AtcEnd" },
4159 { ARTNET_TCC_ATC_INC_ON
, "AtcIncOn" },
4160 { ARTNET_TCC_ATC_INC_OFF
, "AtcIncOff" },
4164 #define ARTNET_RC_AR_PROCESS 0x00
4166 static const value_string artnet_rdm_command_vals
[] = {
4167 { ARTNET_RC_AR_PROCESS
, "ArProcess" },
4171 #define ARTNET_CC_DISCOVERY_COMMAND 0x10
4172 #define ARTNET_CC_DISCOVERY_COMMAND_RESPONSE 0x11
4173 #define ARTNET_CC_GET_COMMAND 0x20
4174 #define ARTNET_CC_GET_COMMAND_RESPONSE 0x21
4175 #define ARTNET_CC_SET_COMMAND 0x30
4176 #define ARTNET_CC_SET_COMMAND_RESPONSE 0x31
4178 static const value_string artnet_cc_vals
[] = {
4179 { ARTNET_CC_DISCOVERY_COMMAND
, "Discovery Command" },
4180 { ARTNET_CC_DISCOVERY_COMMAND_RESPONSE
, "Discovery Command Response" },
4181 { ARTNET_CC_GET_COMMAND
, "Get Command" },
4182 { ARTNET_CC_GET_COMMAND_RESPONSE
, "Get Command Response" },
4183 { ARTNET_CC_SET_COMMAND
, "Set Command" },
4184 { ARTNET_CC_SET_COMMAND_RESPONSE
, "Set Command Response" },
4188 #define ARTNET_FILE_TYPE_FIRST 0x00
4189 #define ARTNET_FILE_TYPE_NORM 0x01
4190 #define ARTNET_FILE_TYPE_LAST 0x02
4192 static const value_string artnet_file_type_vals
[] = {
4193 { ARTNET_FILE_TYPE_FIRST
, "First file packet" } ,
4194 { ARTNET_FILE_TYPE_NORM
, "File packet" } ,
4195 { ARTNET_FILE_TYPE_LAST
, "Final file packet" } ,
4199 static const char * artnet_poll_reply_node_report_regex
= "^#([A-Fa-f0-9]{4}) \\[?([0-9]+)\\]? (.{1,56})$";
4201 static const value_string vals_artnet_poll_reply_style
[] = {
4202 { 0x00, "StNode (Art-Net to DMX device)" },
4203 { 0x01, "StController (Lighting console)" },
4204 { 0x02, "StMedia (Medial server)" },
4205 { 0x03, "StRoute (Network routing device)" },
4206 { 0x04, "StBackup (Backup device)" },
4207 { 0x05, "StConfig (Configuration or diagnostic tool)" },
4208 { 0x06, "StVisual (Visualizer)" },
4212 static const true_false_string tfs_artnet_poll_reply_tx_and_conversion_proto
= {
4217 static const true_false_string tfs_artnet_poll_reply_status2_bigaddr_supported
= {
4218 "15bit Port-Address",
4222 static const true_false_string tfs_artnet_poll_reply_output_style
= {
4227 static const true_false_string tfs_artnet_poll_reply_output_discovery
= {
4228 "Currently not running",
4232 static const value_string vals_artnet_poll_reply_status3_failsafe_state
[] = {
4233 { 0x00, "Hold last state" },
4234 { 0x01, "All outputs to zero" },
4235 { 0x02, "All outputs to full" },
4236 { 0x03, "Playback failsafe scene" },
4240 static const value_string vals_artnet_poll_reply_node_report_status_code
[] = {
4241 { 0x0000, "RcDebug" },
4242 { 0x0001, "RcPowerOk" },
4243 { 0x0002, "RcPowerFail" },
4244 { 0x0003, "RcSocketWr1" },
4245 { 0x0004, "RcParseFail" },
4246 { 0x0005, "RcUdpFail" },
4247 { 0x0006, "RcShNameOk" },
4248 { 0x0007, "RcLoNameOk" },
4249 { 0x0008, "RcDmxError" },
4250 { 0x0009, "RcDmxUdpFull" },
4251 { 0x000A, "RcDmxRxFull" },
4252 { 0x000B, "RcSwitchErr" },
4253 { 0x000C, "RcConfigErr" },
4254 { 0x000D, "RcDmxShort" },
4255 { 0x000E, "RcFirmwareFail" },
4256 { 0x000F, "RcUserFail" },
4257 { 0x0010, "RcFactoryRes" },
4261 static const range_string vals_artnet_poll_reply_bg_queue_policy
[] = {
4262 { 0, 0, "Collect using STATUS_NONE" },
4263 { 1, 1, "Collect using STATUS_ADVISORY" },
4264 { 2, 2, "Collect using STATUS_WARNING" },
4265 { 3, 3, "Collect using STATUS_ERROR" },
4266 { 4, 4, "Collection disabled" },
4267 { 5, 250, "Manufacturer defined" },
4268 { 251, 255, "Reserved" },
4272 /* Define the artnet proto */
4273 static int proto_artnet
;
4274 expert_module_t
* expert_artnet
;
4277 static int hf_artnet_filler
;
4278 static int hf_artnet_spare
;
4279 static int hf_artnet_data
;
4280 static int hf_artnet_excess_bytes
;
4283 static int hf_artnet_header
;
4284 static int hf_artnet_header_id
;
4285 static int hf_artnet_header_opcode
;
4286 static int hf_artnet_header_protver
;
4289 static int hf_artnet_poll
;
4290 static int hf_artnet_poll_talktome
;
4291 static int hf_artnet_poll_talktome_reply_change
;
4292 static int hf_artnet_poll_talktome_diag
;
4293 static int hf_artnet_poll_talktome_diag_unicast
;
4294 static int hf_artnet_poll_talktome_vlc
;
4295 static int hf_artnet_poll_talktome_targeted
;
4297 static int hf_artnet_poll_diag_priority
;
4298 static int hf_artnet_poll_target_port_top
;
4299 static int hf_artnet_poll_target_port_bottom
;
4300 static int hf_artnet_poll_esta_man
;
4301 static int hf_artnet_poll_oem
;
4303 static int ett_artnet_poll_talktome
;
4305 static int * const artnet_poll_talktome_fields
[] = {
4306 &hf_artnet_poll_talktome_reply_change
,
4307 &hf_artnet_poll_talktome_diag
,
4308 &hf_artnet_poll_talktome_diag_unicast
,
4309 &hf_artnet_poll_talktome_vlc
,
4310 &hf_artnet_poll_talktome_targeted
,
4314 static const true_false_string tfs_artnet_talktome_diag_unicast
= {
4319 static const value_string artnet_talktome_diag_priority_vals
[] = {
4324 { 0xe0, "DpCritical" },
4325 { 0xf0, "DpVolatile" },
4330 static int hf_artnet_poll_reply
;
4331 static int hf_artnet_poll_reply_ip_address
;
4332 static int hf_artnet_poll_reply_port_nr
;
4333 static int hf_artnet_poll_reply_versinfo
;
4334 static int hf_artnet_poll_reply_netswitch
;
4335 static int hf_artnet_poll_reply_subswitch
;
4336 static int hf_artnet_poll_reply_oem
;
4337 static int hf_artnet_poll_reply_ubea_version
;
4338 static int hf_artnet_poll_reply_status
;
4339 static int hf_artnet_poll_reply_status_ubea_present
;
4340 static int hf_artnet_poll_reply_status_rdm_supported
;
4341 static int hf_artnet_poll_reply_status_rom_booted
;
4342 static int hf_artnet_poll_reply_status_port_prog
;
4343 static int hf_artnet_poll_reply_status_indicator
;
4345 static int hf_artnet_poll_reply_esta_man
;
4346 static int hf_artnet_poll_reply_short_name
;
4347 static int hf_artnet_poll_reply_long_name
;
4348 static int hf_artnet_poll_reply_node_report
;
4349 static int hf_artnet_poll_reply_port_info
;
4350 static int hf_artnet_poll_reply_num_ports
;
4351 static int hf_artnet_poll_reply_port_types
;
4352 static int hf_artnet_poll_reply_port_types_1
;
4353 static int hf_artnet_poll_reply_port_types_2
;
4354 static int hf_artnet_poll_reply_port_types_3
;
4355 static int hf_artnet_poll_reply_port_types_4
;
4356 static int hf_artnet_poll_reply_good_input
;
4357 static int hf_artnet_poll_reply_good_input_1
;
4358 static int hf_artnet_poll_reply_good_input_2
;
4359 static int hf_artnet_poll_reply_good_input_3
;
4360 static int hf_artnet_poll_reply_good_input_4
;
4361 static int hf_artnet_poll_reply_good_output
;
4362 static int hf_artnet_poll_reply_good_output_1
;
4363 static int hf_artnet_poll_reply_good_output_2
;
4364 static int hf_artnet_poll_reply_good_output_3
;
4365 static int hf_artnet_poll_reply_good_output_4
;
4366 static int hf_artnet_poll_reply_good_output_b
;
4367 static int hf_artnet_poll_reply_good_output_b_1
;
4368 static int hf_artnet_poll_reply_good_output_b_2
;
4369 static int hf_artnet_poll_reply_good_output_b_3
;
4370 static int hf_artnet_poll_reply_good_output_b_4
;
4371 static int hf_artnet_poll_reply_good_output_tx_proto
;
4372 static int hf_artnet_poll_reply_good_output_merge_ltp
;
4373 static int hf_artnet_poll_reply_good_output_short
;
4374 static int hf_artnet_poll_reply_good_output_merge_artnet
;
4375 static int hf_artnet_poll_reply_good_output_dmx_text
;
4376 static int hf_artnet_poll_reply_good_output_dmx_sip
;
4377 static int hf_artnet_poll_reply_good_output_dmx_test
;
4378 static int hf_artnet_poll_reply_good_output_data
;
4379 static int hf_artnet_poll_reply_good_output_bg_discovery
;
4380 static int hf_artnet_poll_reply_good_output_discovery
;
4381 static int hf_artnet_poll_reply_good_output_style
;
4382 static int hf_artnet_poll_reply_good_output_rdm
;
4383 static int hf_artnet_poll_reply_swin
;
4384 static int hf_artnet_poll_reply_swin_1
;
4385 static int hf_artnet_poll_reply_swin_2
;
4386 static int hf_artnet_poll_reply_swin_3
;
4387 static int hf_artnet_poll_reply_swin_4
;
4388 static int hf_artnet_poll_reply_swin_1_universe
;
4389 static int hf_artnet_poll_reply_swin_2_universe
;
4390 static int hf_artnet_poll_reply_swin_3_universe
;
4391 static int hf_artnet_poll_reply_swin_4_universe
;
4392 static int hf_artnet_poll_reply_swout
;
4393 static int hf_artnet_poll_reply_swout_1
;
4394 static int hf_artnet_poll_reply_swout_2
;
4395 static int hf_artnet_poll_reply_swout_3
;
4396 static int hf_artnet_poll_reply_swout_4
;
4397 static int hf_artnet_poll_reply_swout_1_universe
;
4398 static int hf_artnet_poll_reply_swout_2_universe
;
4399 static int hf_artnet_poll_reply_swout_3_universe
;
4400 static int hf_artnet_poll_reply_swout_4_universe
;
4401 static int hf_artnet_poll_reply_sacnprio
;
4402 static int hf_artnet_poll_reply_swmacro
;
4403 static int hf_artnet_poll_reply_swremote
;
4404 static int hf_artnet_poll_reply_style
;
4405 static int hf_artnet_poll_reply_mac
;
4406 static int hf_artnet_poll_reply_bind_ip_address
;
4407 static int hf_artnet_poll_reply_bind_index
;
4408 static int hf_artnet_poll_reply_status2
;
4409 static int hf_artnet_poll_reply_status2_web_supported
;
4410 static int hf_artnet_poll_reply_status2_dhcp_used
;
4411 static int hf_artnet_poll_reply_status2_dhcp_supported
;
4412 static int hf_artnet_poll_reply_status2_bigaddr_supported
;
4413 static int hf_artnet_poll_reply_status2_sacn_supported
;
4414 static int hf_artnet_poll_reply_status2_squawking
;
4415 static int hf_artnet_poll_reply_status2_output_switching_supported
;
4416 static int hf_artnet_poll_reply_status2_control_rdm_supported
;
4417 static int hf_artnet_poll_reply_status3
;
4418 static int hf_artnet_poll_reply_status3_prog_bg_discovery_supported
;
4419 static int hf_artnet_poll_reply_status3_bg_queue_supported
;
4420 static int hf_artnet_poll_reply_status3_rdmnet_supported
;
4421 static int hf_artnet_poll_reply_status3_switching_port_supported
;
4422 static int hf_artnet_poll_reply_status3_llrp_supported
;
4423 static int hf_artnet_poll_reply_status3_failover_supported
;
4424 static int hf_artnet_poll_reply_status3_failsafe_state
;
4425 static int hf_artnet_poll_reply_default_responder_uid
;
4426 static int hf_artnet_poll_reply_node_report_status_code
;
4427 static int hf_artnet_poll_reply_node_report_response_counter
;
4428 static int hf_artnet_poll_reply_node_report_status_string
;
4430 static int ett_artnet_poll_reply_status
;
4431 static int ett_artnet_poll_reply_good_input_1
;
4432 static int ett_artnet_poll_reply_good_input_2
;
4433 static int ett_artnet_poll_reply_good_input_3
;
4434 static int ett_artnet_poll_reply_good_input_4
;
4435 static int ett_artnet_poll_reply_good_output_1
;
4436 static int ett_artnet_poll_reply_good_output_2
;
4437 static int ett_artnet_poll_reply_good_output_3
;
4438 static int ett_artnet_poll_reply_good_output_4
;
4439 static int ett_artnet_poll_reply_good_output_b_1
;
4440 static int ett_artnet_poll_reply_good_output_b_2
;
4441 static int ett_artnet_poll_reply_good_output_b_3
;
4442 static int ett_artnet_poll_reply_good_output_b_4
;
4443 static int ett_artnet_poll_reply_swmacro
;
4444 static int ett_artnet_poll_reply_swremote
;
4445 static int ett_artnet_poll_reply_status2
;
4446 static int ett_artnet_poll_reply_status3
;
4448 static int hf_artnet_poll_reply_good_input_converts_to
;
4449 static int hf_artnet_poll_reply_good_input_recv_error
;
4450 static int hf_artnet_poll_reply_good_input_disabled
;
4451 static int hf_artnet_poll_reply_good_input_dmx_text
;
4452 static int hf_artnet_poll_reply_good_input_dmx_sip
;
4453 static int hf_artnet_poll_reply_good_input_dmx_test
;
4454 static int hf_artnet_poll_reply_good_input_data
;
4456 static int hf_artnet_poll_reply_swmacro_1
;
4457 static int hf_artnet_poll_reply_swmacro_2
;
4458 static int hf_artnet_poll_reply_swmacro_3
;
4459 static int hf_artnet_poll_reply_swmacro_4
;
4460 static int hf_artnet_poll_reply_swmacro_5
;
4461 static int hf_artnet_poll_reply_swmacro_6
;
4462 static int hf_artnet_poll_reply_swmacro_7
;
4463 static int hf_artnet_poll_reply_swmacro_8
;
4465 static int hf_artnet_poll_reply_swremote_1
;
4466 static int hf_artnet_poll_reply_swremote_2
;
4467 static int hf_artnet_poll_reply_swremote_3
;
4468 static int hf_artnet_poll_reply_swremote_4
;
4469 static int hf_artnet_poll_reply_swremote_5
;
4470 static int hf_artnet_poll_reply_swremote_6
;
4471 static int hf_artnet_poll_reply_swremote_7
;
4472 static int hf_artnet_poll_reply_swremote_8
;
4474 static int hf_artnet_poll_reply_user
;
4475 static int hf_artnet_poll_reply_refreshrate
;
4476 static int hf_artnet_poll_reply_bg_queue_policy
;
4478 static int * const artnet_poll_reply_status_fields
[] = {
4479 &hf_artnet_poll_reply_status_ubea_present
,
4480 &hf_artnet_poll_reply_status_rdm_supported
,
4481 &hf_artnet_poll_reply_status_rom_booted
,
4482 &hf_artnet_poll_reply_status_port_prog
,
4483 &hf_artnet_poll_reply_status_indicator
,
4487 static int * const artnet_poll_reply_good_input_fields
[] = {
4488 &hf_artnet_poll_reply_good_input_converts_to
,
4489 &hf_artnet_poll_reply_good_input_recv_error
,
4490 &hf_artnet_poll_reply_good_input_disabled
,
4491 &hf_artnet_poll_reply_good_input_dmx_text
,
4492 &hf_artnet_poll_reply_good_input_dmx_sip
,
4493 &hf_artnet_poll_reply_good_input_dmx_test
,
4494 &hf_artnet_poll_reply_good_input_data
,
4498 static int * const artnet_poll_reply_good_output_fields
[] = {
4499 &hf_artnet_poll_reply_good_output_tx_proto
,
4500 &hf_artnet_poll_reply_good_output_merge_ltp
,
4501 &hf_artnet_poll_reply_good_output_short
,
4502 &hf_artnet_poll_reply_good_output_merge_artnet
,
4503 &hf_artnet_poll_reply_good_output_dmx_text
,
4504 &hf_artnet_poll_reply_good_output_dmx_sip
,
4505 &hf_artnet_poll_reply_good_output_dmx_test
,
4506 &hf_artnet_poll_reply_good_output_data
,
4510 static int * const artnet_poll_reply_good_output_b_fields
[] = {
4511 &hf_artnet_poll_reply_good_output_bg_discovery
,
4512 &hf_artnet_poll_reply_good_output_discovery
,
4513 &hf_artnet_poll_reply_good_output_style
,
4514 &hf_artnet_poll_reply_good_output_rdm
,
4518 static int * const artnet_poll_reply_status2_fields
[] = {
4519 &hf_artnet_poll_reply_status2_web_supported
,
4520 &hf_artnet_poll_reply_status2_dhcp_used
,
4521 &hf_artnet_poll_reply_status2_dhcp_supported
,
4522 &hf_artnet_poll_reply_status2_bigaddr_supported
,
4523 &hf_artnet_poll_reply_status2_sacn_supported
,
4524 &hf_artnet_poll_reply_status2_squawking
,
4525 &hf_artnet_poll_reply_status2_output_switching_supported
,
4526 &hf_artnet_poll_reply_status2_control_rdm_supported
,
4530 static int * const artnet_poll_reply_status3_fields
[] = {
4531 &hf_artnet_poll_reply_status3_prog_bg_discovery_supported
,
4532 &hf_artnet_poll_reply_status3_bg_queue_supported
,
4533 &hf_artnet_poll_reply_status3_rdmnet_supported
,
4534 &hf_artnet_poll_reply_status3_switching_port_supported
,
4535 &hf_artnet_poll_reply_status3_llrp_supported
,
4536 &hf_artnet_poll_reply_status3_failover_supported
,
4537 &hf_artnet_poll_reply_status3_failsafe_state
,
4541 static int * const artnet_poll_reply_swmacro_fields
[] = {
4542 &hf_artnet_poll_reply_swmacro_1
,
4543 &hf_artnet_poll_reply_swmacro_2
,
4544 &hf_artnet_poll_reply_swmacro_3
,
4545 &hf_artnet_poll_reply_swmacro_4
,
4546 &hf_artnet_poll_reply_swmacro_5
,
4547 &hf_artnet_poll_reply_swmacro_6
,
4548 &hf_artnet_poll_reply_swmacro_7
,
4549 &hf_artnet_poll_reply_swmacro_8
,
4553 static int * const artnet_poll_reply_swremote_fields
[] = {
4554 &hf_artnet_poll_reply_swremote_1
,
4555 &hf_artnet_poll_reply_swremote_2
,
4556 &hf_artnet_poll_reply_swremote_3
,
4557 &hf_artnet_poll_reply_swremote_4
,
4558 &hf_artnet_poll_reply_swremote_5
,
4559 &hf_artnet_poll_reply_swremote_6
,
4560 &hf_artnet_poll_reply_swremote_7
,
4561 &hf_artnet_poll_reply_swremote_8
,
4565 static expert_field ei_artnet_poll_reply_bind_ip_without_index
;
4566 static expert_field ei_artnet_poll_reply_bind_index_without_ip
;
4567 static expert_field ei_artnet_poll_reply_node_report_invalid_format
;
4570 static int hf_artnet_output
;
4571 static int hf_artnet_output_sequence
;
4572 static int hf_artnet_output_physical
;
4573 static int hf_artnet_output_universe
;
4574 static int hf_artnet_output_length
;
4577 static int hf_artnet_sync
;
4578 static int hf_artnet_sync_aux
;
4581 static int hf_artnet_address
;
4582 static int hf_artnet_address_netswitch_special
;
4583 static int hf_artnet_address_netswitch_net
;
4584 static int hf_artnet_address_netswitch_write
;
4585 static int hf_artnet_address_bind_index
;
4586 static int hf_artnet_address_short_name
;
4587 static int hf_artnet_address_long_name
;
4588 static int hf_artnet_address_swin
;
4589 static int hf_artnet_address_swin_1
;
4590 static int hf_artnet_address_swin_2
;
4591 static int hf_artnet_address_swin_3
;
4592 static int hf_artnet_address_swin_4
;
4593 static int hf_artnet_address_swout
;
4594 static int hf_artnet_address_swout_1
;
4595 static int hf_artnet_address_swout_2
;
4596 static int hf_artnet_address_swout_3
;
4597 static int hf_artnet_address_swout_4
;
4598 static int hf_artnet_address_subswitch_special
;
4599 static int hf_artnet_address_subswitch_sub
;
4600 static int hf_artnet_address_subswitch_write
;
4601 static int hf_artnet_address_sacnprio
;
4602 static int hf_artnet_address_command
;
4604 static int ett_artnet_address_netswitch
;
4605 static int ett_artnet_address_subswitch
;
4607 static int * const artnet_address_netswitch_fields
[] = {
4608 &hf_artnet_address_netswitch_net
,
4609 &hf_artnet_address_netswitch_write
,
4613 static int * const artnet_address_subswitch_fields
[] = {
4614 &hf_artnet_address_subswitch_sub
,
4615 &hf_artnet_address_subswitch_write
,
4619 static const value_string artnet_address_switch_vals
[] = {
4620 { 0x00, "Reset to Physical Switch" },
4621 { 0x7f, "No Change" },
4626 static int hf_artnet_input
;
4627 static int hf_artnet_input_bind_index
;
4628 static int hf_artnet_input_num_ports
;
4629 static int hf_artnet_input_input
;
4630 static int hf_artnet_input_input_1
;
4631 static int hf_artnet_input_input_2
;
4632 static int hf_artnet_input_input_3
;
4633 static int hf_artnet_input_input_4
;
4634 static int hf_artnet_input_input_disabled
;
4636 static int ett_artnet_input_input_1
;
4637 static int ett_artnet_input_input_2
;
4638 static int ett_artnet_input_input_3
;
4639 static int ett_artnet_input_input_4
;
4641 static int * const artnet_input_input_fields
[] = {
4642 &hf_artnet_input_input_disabled
,
4646 /* ArtFirmwareMaster */
4647 static int hf_artnet_firmware_master
;
4648 static int hf_artnet_firmware_master_type
;
4649 static int hf_artnet_firmware_master_block_id
;
4650 static int hf_artnet_firmware_master_length
;
4651 static int hf_artnet_firmware_master_data
;
4653 /* ArtFirmwareReply */
4654 static int hf_artnet_firmware_reply
;
4655 static int hf_artnet_firmware_reply_type
;
4658 static int hf_artnet_video_setup_control
;
4659 static int hf_artnet_video_setup_font_height
;
4660 static int hf_artnet_video_setup_first_font
;
4661 static int hf_artnet_video_setup_last_font
;
4662 static int hf_artnet_video_setup_win_font_name
;
4663 static int hf_artnet_video_setup_font_data
;
4665 /* ArtVideoPalette */
4666 static int hf_artnet_video_palette_colour_red
;
4667 static int hf_artnet_video_palette_colour_green
;
4668 static int hf_artnet_video_palette_colour_blue
;
4671 static int hf_artnet_video_data_pos_x
;
4672 static int hf_artnet_video_data_pos_y
;
4673 static int hf_artnet_video_data_len_x
;
4674 static int hf_artnet_video_data_len_y
;
4675 static int hf_artnet_video_data_data
;
4677 /* ArtPollFpReply */
4678 static int hf_artnet_poll_fp_reply
;
4681 static int hf_artnet_tod_request
;
4682 static int hf_artnet_tod_request_net
;
4683 static int hf_artnet_tod_request_command
;
4684 static int hf_artnet_tod_request_ad_count
;
4685 static int hf_artnet_tod_request_address
;
4688 static int hf_artnet_tod_data
;
4689 static int hf_artnet_tod_data_rdm_ver
;
4690 static int hf_artnet_tod_data_bind_index
;
4691 static int hf_artnet_tod_data_port
;
4692 static int hf_artnet_tod_data_net
;
4693 static int hf_artnet_tod_data_command_response
;
4694 static int hf_artnet_tod_data_address
;
4695 static int hf_artnet_tod_data_uid_total
;
4696 static int hf_artnet_tod_data_block_count
;
4697 static int hf_artnet_tod_data_uid_count
;
4698 static int hf_artnet_tod_data_tod
;
4701 static int hf_artnet_tod_control
;
4702 static int hf_artnet_tod_control_net
;
4703 static int hf_artnet_tod_control_command
;
4704 static int hf_artnet_tod_control_address
;
4705 static int hf_artnet_tod_control_universe
;
4708 static int hf_artnet_rdm
;
4709 static int hf_artnet_rdm_command
;
4710 static int hf_artnet_rdm_address
;
4711 static int hf_artnet_rdm_sc
;
4713 static int hf_artnet_rdm_rdmver
;
4714 static int hf_artnet_rdm_fifo_avail
;
4715 static int hf_artnet_rdm_fifo_max
;
4716 static int hf_artnet_rdm_net
;
4719 static int hf_artnet_rdm_sub
;
4720 static int hf_artnet_rdm_sub_uid
;
4721 static int hf_artnet_rdm_sub_command_class
;
4722 static int hf_artnet_rdm_sub_pid
;
4723 static int hf_artnet_rdm_sub_sub_device
;
4724 static int hf_artnet_rdm_sub_sub_count
;
4725 static int hf_artnet_rdm_sub_data
;
4728 static int hf_artnet_ip_prog
;
4729 static int hf_artnet_ip_prog_command
;
4730 static int hf_artnet_ip_prog_command_prog_port
;
4731 static int hf_artnet_ip_prog_command_prog_sm
;
4732 static int hf_artnet_ip_prog_command_prog_ip
;
4733 static int hf_artnet_ip_prog_command_reset
;
4734 static int hf_artnet_ip_prog_command_gw
;
4735 static int hf_artnet_ip_prog_command_unused
;
4736 static int hf_artnet_ip_prog_command_dhcp_enable
;
4737 static int hf_artnet_ip_prog_command_prog_enable
;
4738 static int hf_artnet_ip_prog_ip
;
4739 static int hf_artnet_ip_prog_sm
;
4740 static int hf_artnet_ip_prog_port
;
4741 static int hf_artnet_ip_prog_gw
;
4743 static int ett_artnet_ip_prog_command
;
4745 static int * const artnet_ip_prog_command_fields
[] = {
4746 &hf_artnet_ip_prog_command_prog_port
,
4747 &hf_artnet_ip_prog_command_prog_sm
,
4748 &hf_artnet_ip_prog_command_prog_ip
,
4749 &hf_artnet_ip_prog_command_reset
,
4750 &hf_artnet_ip_prog_command_gw
,
4751 &hf_artnet_ip_prog_command_unused
,
4752 &hf_artnet_ip_prog_command_dhcp_enable
,
4753 &hf_artnet_ip_prog_command_prog_enable
,
4757 /* ArtIpProgReply */
4758 static int hf_artnet_ip_prog_reply
;
4759 static int hf_artnet_ip_prog_reply_ip
;
4760 static int hf_artnet_ip_prog_reply_sm
;
4761 static int hf_artnet_ip_prog_reply_port
;
4762 static int hf_artnet_ip_prog_reply_status
;
4763 static int hf_artnet_ip_prog_reply_status_unused
;
4764 static int hf_artnet_ip_prog_reply_status_dhcp_enable
;
4765 static int hf_artnet_ip_prog_reply_gw
;
4767 static int ett_artnet_ip_prog_reply_status
;
4769 static int * const artnet_ip_prog_reply_status_fields
[] = {
4770 &hf_artnet_ip_prog_reply_status_unused
,
4771 &hf_artnet_ip_prog_reply_status_dhcp_enable
,
4776 static int hf_artnet_diag_data
;
4777 static int hf_artnet_diag_data_priority
;
4778 static int hf_artnet_diag_data_port
;
4779 static int hf_artnet_diag_data_length
;
4780 static int hf_artnet_diag_data_data
;
4783 static int hf_artnet_command
;
4784 static int hf_artnet_command_esta_man
;
4785 static int hf_artnet_command_length
;
4786 static int hf_artnet_command_data
;
4788 /* ArtDataRequest */
4789 static int hf_artnet_data_request
;
4790 static int hf_artnet_data_request_esta_man
;
4791 static int hf_artnet_data_request_oem
;
4792 static int hf_artnet_data_request_request
;
4793 static int hf_artnet_data_request_spare
;
4795 #define ARTNET_DR_POLL 0x0000
4796 #define ARTNET_DR_URL_PRODUCT 0x0001
4797 #define ARTNET_DR_URL_USERGUIDE 0x0002
4798 #define ARTNET_DR_URL_SUPPORT 0x0003
4799 #define ARTNET_DR_URL_PERS_UDR 0x0004
4800 #define ARTNET_DR_URL_PERS_GDTF 0x0005
4801 #define ARTNET_DR_MAN_SPEC_LOW 0x8000
4802 #define ARTNET_DR_MAN_SPEC_HIGH 0xFFFF
4804 static const range_string artnet_data_request_vals
[] = {
4805 { ARTNET_DR_POLL
, ARTNET_DR_POLL
, "DrPoll" },
4806 { ARTNET_DR_URL_PRODUCT
, ARTNET_DR_URL_PRODUCT
, "DrUrlProduct" },
4807 { ARTNET_DR_URL_USERGUIDE
, ARTNET_DR_URL_USERGUIDE
, "DrUrlUserGuide" },
4808 { ARTNET_DR_URL_SUPPORT
, ARTNET_DR_URL_SUPPORT
, "DrUrlSupport" },
4809 { ARTNET_DR_URL_PERS_UDR
, ARTNET_DR_URL_PERS_UDR
, "DrPersUdr" },
4810 { ARTNET_DR_URL_PERS_GDTF
, ARTNET_DR_URL_PERS_GDTF
, "DrPersGdtf" },
4811 { ARTNET_DR_MAN_SPEC_LOW
, ARTNET_DR_MAN_SPEC_HIGH
, "DrManSpec" },
4816 static int hf_artnet_data_reply
;
4817 static int hf_artnet_data_reply_esta_man
;
4818 static int hf_artnet_data_reply_oem
;
4819 static int hf_artnet_data_reply_request
;
4820 static int hf_artnet_data_reply_payload_length
;
4821 static int hf_artnet_data_reply_payload
;
4824 static int hf_artnet_media
;
4827 static int hf_artnet_media_patch
;
4829 /* ArtMediaControl */
4830 static int hf_artnet_media_control
;
4832 /* ArtMediaControlReply */
4833 static int hf_artnet_media_control_reply
;
4836 static int hf_artnet_time_code
;
4837 static int hf_artnet_time_code_stream_id
;
4838 static int hf_artnet_time_code_frames
;
4839 static int hf_artnet_time_code_seconds
;
4840 static int hf_artnet_time_code_minutes
;
4841 static int hf_artnet_time_code_hours
;
4842 static int hf_artnet_time_code_type
;
4844 static const value_string artnet_time_code_vals
[] = {
4845 { 0x00, "Film (24fps)" },
4846 { 0x01, "EBU (25fps)" },
4847 { 0x02, "DF (29.97fps)" },
4848 { 0x03, "SMPTE (30fps)" },
4853 static int hf_artnet_time_sync
;
4856 #define ARTNET_TRIGGER_NOT_OEM_SPECIFIC 0xFFFF
4858 static int hf_artnet_trigger
;
4859 static int hf_artnet_trigger_oem
;
4860 static int hf_artnet_trigger_key
;
4861 static int hf_artnet_trigger_key_unspecific
;
4862 static int hf_artnet_trigger_subkey
;
4863 static int hf_artnet_trigger_data
;
4865 static const value_string artnet_trigger_key_vals
[] = {
4866 { 0x00, "KeyAscii" },
4867 { 0x01, "KeyMacro" },
4868 { 0x02, "KeySoft" },
4869 { 0x03, "KeyShow" },
4874 static int hf_artnet_directory
;
4875 static int hf_artnet_directory_filler
;
4876 static int hf_artnet_directory_cmd
;
4877 static int hf_artnet_directory_file
;
4879 /* ArtDirectoryReply */
4880 static int hf_artnet_directory_reply
;
4881 static int hf_artnet_directory_reply_filler
;
4882 static int hf_artnet_directory_reply_flags
;
4883 static int hf_artnet_directory_reply_file
;
4884 static int hf_artnet_directory_reply_name
;
4885 static int hf_artnet_directory_reply_desc
;
4886 static int hf_artnet_directory_reply_length
;
4887 static int hf_artnet_directory_reply_data
;
4890 static int hf_artnet_mac_master
;
4893 static int hf_artnet_mac_slave
;
4895 /* ArtFileTnMaster */
4896 static int hf_artnet_file_tn_master
;
4897 static int hf_artnet_file_tn_master_filler
;
4898 static int hf_artnet_file_tn_master_type
;
4899 static int hf_artnet_file_tn_master_block_id
;
4900 static int hf_artnet_file_tn_master_length
;
4901 static int hf_artnet_file_tn_master_name
;
4902 static int hf_artnet_file_tn_master_checksum
;
4903 static int hf_artnet_file_tn_master_spare
;
4904 static int hf_artnet_file_tn_master_data
;
4907 /* ArtFileFnMaster */
4908 static int hf_artnet_file_fn_master
;
4910 /* ArtFileFnReply */
4911 static int hf_artnet_file_fn_reply
;
4914 static int hf_artnet_nzs
;
4915 static int hf_artnet_nzs_sequence
;
4916 static int hf_artnet_nzs_start_code
;
4917 static int hf_artnet_nzs_subuni
;
4918 static int hf_artnet_nzs_net
;
4919 static int hf_artnet_nzs_length
;
4920 static int hf_artnet_nzs_vlc_man_id
;
4921 static int hf_artnet_nzs_vlc_sub_code
;
4922 static int hf_artnet_nzs_vlc_flags
;
4923 static int hf_artnet_nzs_vlc_flags_ieee
;
4924 static int hf_artnet_nzs_vlc_flags_reply
;
4925 static int hf_artnet_nzs_vlc_flags_beacon
;
4926 static int hf_artnet_nzs_vlc_transaction
;
4927 static int hf_artnet_nzs_vlc_slot_addr
;
4928 static int hf_artnet_nzs_vlc_payload_size
;
4929 static int hf_artnet_nzs_vlc_payload_checksum
;
4930 static int hf_artnet_nzs_vlc_mod_depth
;
4931 static int hf_artnet_nzs_vlc_mod_freq
;
4932 static int hf_artnet_nzs_vlc_mod_type
;
4933 static int hf_artnet_nzs_vlc_lang_code
;
4934 static int hf_artnet_nzs_vlc_beacon_repeat
;
4935 static int hf_artnet_nzs_vlc_payload
;
4936 static int hf_artnet_nzs_vlc_payload_beacon_url
;
4937 static int hf_artnet_nzs_vlc_payload_beacon_text
;
4938 static int hf_artnet_nzs_vlc_payload_beacon_location_id
;
4940 static int ett_artnet_nzs_vlc_flags
;
4942 static int * const artnet_nzs_vlc_flags_fields
[] = {
4943 &hf_artnet_nzs_vlc_flags_beacon
,
4944 &hf_artnet_nzs_vlc_flags_reply
,
4945 &hf_artnet_nzs_vlc_flags_ieee
,
4949 #define ARTNET_NZS_VLC_START_CODE 0x91
4950 #define ARTNET_NZS_VLC_MAGIC_MAN_ID 0x414C
4951 #define ARTNET_NZS_VLC_MAGIC_SUB_CODE 0x45
4953 static const true_false_string tfs_artnet_nzs_vlc_ieee
= {
4958 static const true_false_string tfs_artnet_nzs_vlc_beacon
= {
4959 "continuously repeat",
4963 #define ARTNET_NZS_VLC_LANG_CODE_BEACON_URL 0x0000
4964 #define ARTNET_NZS_VLC_LANG_CODE_BEACON_TEXT 0x0001
4965 #define ARTNET_NZS_VLC_LANG_CODE_BEACON_LOCID 0x0002
4967 static const value_string vals_artnet_nzs_vlc_lang_code
[] = {
4968 { ARTNET_NZS_VLC_LANG_CODE_BEACON_URL
, "BeaconURL" },
4969 { ARTNET_NZS_VLC_LANG_CODE_BEACON_TEXT
, "BeaconText" },
4970 { ARTNET_NZS_VLC_LANG_CODE_BEACON_LOCID
, "BeaconLocationID" },
4975 /* Define the tree for artnet */
4976 static int ett_artnet
;
4978 /* A static handle for the rdm dissector */
4979 static dissector_handle_t rdm_handle
;
4980 static dissector_handle_t dmx_chan_handle
;
4983 dissect_artnet_poll(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
)
4986 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_poll_talktome
,
4987 ett_artnet_poll_talktome
,
4988 artnet_poll_talktome_fields
,
4992 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " Prio=%s",
4993 val_to_str(tvb_get_uint8(tvb
, offset
), artnet_talktome_diag_priority_vals
, "unknown(%u)"));
4994 proto_tree_add_item(tree
, hf_artnet_poll_diag_priority
, tvb
,
4995 offset
, 1, ENC_BIG_ENDIAN
);
4998 /* TargetPort Top/Bottom not present (compatibility, >= Rev. DE) */
4999 if(tvb_reported_length_remaining(tvb
, offset
) < 4) {
5003 proto_tree_add_item(tree
, hf_artnet_poll_target_port_top
, tvb
,
5004 offset
, 2, ENC_BIG_ENDIAN
);
5007 proto_tree_add_item(tree
, hf_artnet_poll_target_port_bottom
, tvb
,
5008 offset
, 2, ENC_BIG_ENDIAN
);
5011 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " (%d-%d)",
5012 tvb_get_uint16(tvb
, offset
-2, ENC_BIG_ENDIAN
),
5013 tvb_get_uint16(tvb
, offset
-4, ENC_BIG_ENDIAN
));
5015 /* EstaMan/OEM not present (compatibility, >= Rev. DE) */
5016 if(tvb_reported_length_remaining(tvb
, offset
) < 4) {
5020 proto_tree_add_item(tree
, hf_artnet_poll_esta_man
, tvb
,
5021 offset
, 2, ENC_BIG_ENDIAN
);
5024 proto_tree_add_item(tree
, hf_artnet_poll_oem
, tvb
,
5025 offset
, 2, ENC_BIG_ENDIAN
);
5032 dissect_artnet_poll_reply(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
)
5034 proto_tree
*hi
, *si
, *ti
;
5035 proto_item
*tf
, *tp
;
5036 uint16_t universe
,uni_port
;
5038 uint32_t bind_ip_address
;
5039 GRegex
*regex
= NULL
;
5040 GMatchInfo
*match_info
= NULL
;
5041 bool bg_queue_supported
;
5043 proto_tree_add_item(tree
, hf_artnet_poll_reply_ip_address
, tvb
,
5044 offset
, 4, ENC_BIG_ENDIAN
);
5047 proto_tree_add_item(tree
, hf_artnet_poll_reply_port_nr
, tvb
,
5048 offset
, 2, ENC_LITTLE_ENDIAN
);
5051 proto_tree_add_item(tree
, hf_artnet_poll_reply_versinfo
, tvb
,
5052 offset
, 2, ENC_BIG_ENDIAN
);
5055 proto_tree_add_item(tree
, hf_artnet_poll_reply_netswitch
, tvb
,
5056 offset
, 1, ENC_BIG_ENDIAN
);
5057 universe
= (tvb_get_uint8(tvb
, offset
) & 0x7F) << 8;
5060 proto_tree_add_item(tree
, hf_artnet_poll_reply_subswitch
, tvb
,
5061 offset
, 1, ENC_BIG_ENDIAN
);
5062 universe
|= (tvb_get_uint8(tvb
, offset
) & 0x0F) << 4;
5065 proto_tree_add_item(tree
, hf_artnet_poll_reply_oem
, tvb
,
5066 offset
, 2, ENC_BIG_ENDIAN
);
5069 proto_tree_add_item(tree
, hf_artnet_poll_reply_ubea_version
, tvb
,
5070 offset
, 1, ENC_BIG_ENDIAN
);
5073 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_poll_reply_status
,
5074 ett_artnet_poll_reply_status
,
5075 artnet_poll_reply_status_fields
,
5079 proto_tree_add_item(tree
, hf_artnet_poll_reply_esta_man
, tvb
,
5080 offset
, 2, ENC_LITTLE_ENDIAN
);
5083 proto_tree_add_item(tree
, hf_artnet_poll_reply_short_name
,
5084 tvb
, offset
, 18, ENC_ASCII
);
5087 proto_tree_add_item(tree
, hf_artnet_poll_reply_long_name
,
5088 tvb
, offset
, 64, ENC_ASCII
);
5091 proto_tree_add_item(tree
, hf_artnet_poll_reply_node_report
,
5092 tvb
, offset
, 64, ENC_ASCII
);
5094 /* Try to extract node report regex data as generated fields (only if data contained) */
5095 if(tvb_get_uint64(tvb
, offset
, ENC_BIG_ENDIAN
) > 0) {
5096 regex
= g_regex_new(artnet_poll_reply_node_report_regex
, (GRegexCompileFlags
) 0, (GRegexMatchFlags
) 0, NULL
);
5097 DISSECTOR_ASSERT(regex
!= NULL
);
5100 (const char*)tvb_get_string_enc(pinfo
->pool
, tvb
, offset
, 64, ENC_ASCII
),
5101 (GRegexMatchFlags
) 0,
5104 if(g_match_info_matches(match_info
) && g_match_info_get_match_count(match_info
) == 4) {
5105 char *status_code
= g_match_info_fetch(match_info
, 1);
5106 char *counter
= g_match_info_fetch(match_info
, 2);
5107 char *status_string
= g_match_info_fetch(match_info
, 3);
5109 tf
= proto_tree_add_uint(tree
, hf_artnet_poll_reply_node_report_status_code
, tvb
, 0, 0, (uint16_t)strtol(status_code
, NULL
, 16));
5110 proto_item_set_generated(tf
);
5112 tf
= proto_tree_add_uint(tree
, hf_artnet_poll_reply_node_report_response_counter
, tvb
, 0, 0, (uint32_t)strtoul(counter
, NULL
, 10));
5113 proto_item_set_generated(tf
);
5115 tf
= proto_tree_add_string(tree
, hf_artnet_poll_reply_node_report_status_string
, tvb
, 0, 0, status_string
);
5116 proto_item_set_generated(tf
);
5118 g_free(status_code
);
5120 g_free(status_string
);
5122 expert_add_info(pinfo
, tree
, &ei_artnet_poll_reply_node_report_invalid_format
);
5124 g_regex_unref(regex
);
5125 g_match_info_free(match_info
);
5130 hi
= proto_tree_add_item(tree
,
5131 hf_artnet_poll_reply_port_info
,
5134 ARTNET_POLL_REPLY_PORT_INFO_LENGTH
,
5137 si
= proto_item_add_subtree(hi
, ett_artnet
);
5139 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " Ports=%d", tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
));
5140 proto_tree_add_item(si
, hf_artnet_poll_reply_num_ports
, tvb
,
5141 offset
, 2, ENC_BIG_ENDIAN
);
5144 hi
= proto_tree_add_item(si
,
5145 hf_artnet_poll_reply_port_types
,
5148 ARTNET_POLL_REPLY_PORT_TYPES_LENGTH
,
5151 ti
= proto_item_add_subtree(hi
, ett_artnet
);
5153 proto_tree_add_item(ti
, hf_artnet_poll_reply_port_types_1
, tvb
,
5154 offset
, 1, ENC_BIG_ENDIAN
);
5157 proto_tree_add_item(ti
, hf_artnet_poll_reply_port_types_2
, tvb
,
5158 offset
, 1, ENC_BIG_ENDIAN
);
5161 proto_tree_add_item(ti
, hf_artnet_poll_reply_port_types_3
, tvb
,
5162 offset
, 1, ENC_BIG_ENDIAN
);
5165 proto_tree_add_item(ti
, hf_artnet_poll_reply_port_types_4
, tvb
,
5166 offset
, 1, ENC_BIG_ENDIAN
);
5169 hi
= proto_tree_add_item(si
,
5170 hf_artnet_poll_reply_good_input
,
5173 ARTNET_POLL_REPLY_GOOD_INPUT_LENGTH
,
5176 ti
= proto_item_add_subtree(hi
, ett_artnet
);
5178 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_input_1
,
5179 ett_artnet_poll_reply_good_input_1
,
5180 artnet_poll_reply_good_input_fields
,
5183 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_input_2
,
5184 ett_artnet_poll_reply_good_input_2
,
5185 artnet_poll_reply_good_input_fields
,
5188 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_input_3
,
5189 ett_artnet_poll_reply_good_input_3
,
5190 artnet_poll_reply_good_input_fields
,
5193 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_input_4
,
5194 ett_artnet_poll_reply_good_input_4
,
5195 artnet_poll_reply_good_input_fields
,
5199 hi
= proto_tree_add_item(si
,
5200 hf_artnet_poll_reply_good_output
,
5203 ARTNET_POLL_REPLY_GOOD_OUTPUT_LENGTH
,
5206 ti
= proto_item_add_subtree(hi
, ett_artnet
);
5208 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_1
,
5209 ett_artnet_poll_reply_good_output_1
,
5210 artnet_poll_reply_good_output_fields
,
5213 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_2
,
5214 ett_artnet_poll_reply_good_output_2
,
5215 artnet_poll_reply_good_output_fields
,
5218 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_3
,
5219 ett_artnet_poll_reply_good_output_3
,
5220 artnet_poll_reply_good_output_fields
,
5223 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_4
,
5224 ett_artnet_poll_reply_good_output_4
,
5225 artnet_poll_reply_good_output_fields
,
5229 hi
= proto_tree_add_item(si
,
5230 hf_artnet_poll_reply_swin
,
5233 ARTNET_POLL_REPLY_SWIN_LENGTH
,
5236 ti
= proto_item_add_subtree(hi
, ett_artnet
);
5238 proto_tree_add_item(ti
, hf_artnet_poll_reply_swin_1
, tvb
,
5239 offset
, 1, ENC_BIG_ENDIAN
);
5241 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5242 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swin_1_universe
,tvb
,
5243 offset
, 0, universe
| uni_port
);
5244 proto_item_set_generated(tf
);
5247 proto_tree_add_item(ti
, hf_artnet_poll_reply_swin_2
, tvb
,
5248 offset
, 1, ENC_BIG_ENDIAN
);
5249 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5250 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swin_2_universe
,tvb
,
5251 offset
, 0, universe
| uni_port
);
5252 proto_item_set_generated(tf
);
5255 proto_tree_add_item(ti
, hf_artnet_poll_reply_swin_3
, tvb
,
5256 offset
, 1, ENC_BIG_ENDIAN
);
5257 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5258 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swin_3_universe
,tvb
,
5259 offset
, 0, universe
| uni_port
);
5260 proto_item_set_generated(tf
);
5263 proto_tree_add_item(ti
, hf_artnet_poll_reply_swin_4
, tvb
,
5264 offset
, 1, ENC_BIG_ENDIAN
);
5265 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5266 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swin_4_universe
,tvb
,
5267 offset
, 0, universe
| uni_port
);
5268 proto_item_set_generated(tf
);
5271 hi
= proto_tree_add_item(si
,
5272 hf_artnet_poll_reply_swout
,
5275 ARTNET_POLL_REPLY_SWOUT_LENGTH
,
5278 ti
= proto_item_add_subtree(hi
, ett_artnet
);
5280 proto_tree_add_item(ti
, hf_artnet_poll_reply_swout_1
, tvb
,
5281 offset
, 1, ENC_BIG_ENDIAN
);
5282 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5283 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swout_1_universe
,tvb
,
5284 offset
, 0, universe
| uni_port
);
5285 proto_item_set_generated(tf
);
5288 proto_tree_add_item(ti
, hf_artnet_poll_reply_swout_2
, tvb
,
5289 offset
, 1, ENC_BIG_ENDIAN
);
5290 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5291 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swout_2_universe
,tvb
,
5292 offset
, 0, universe
| uni_port
);
5293 proto_item_set_generated(tf
);
5296 proto_tree_add_item(ti
, hf_artnet_poll_reply_swout_3
, tvb
,
5297 offset
, 1, ENC_BIG_ENDIAN
);
5298 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5299 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swout_3_universe
,tvb
,
5300 offset
, 0, universe
| uni_port
);
5301 proto_item_set_generated(tf
);
5304 proto_tree_add_item(ti
, hf_artnet_poll_reply_swout_4
, tvb
,
5305 offset
, 1, ENC_BIG_ENDIAN
);
5306 uni_port
= tvb_get_uint8(tvb
, offset
) & 0x0F;
5307 tf
= proto_tree_add_uint(ti
,hf_artnet_poll_reply_swout_4_universe
,tvb
,
5308 offset
, 0, universe
| uni_port
);
5309 proto_item_set_generated(tf
);
5312 proto_tree_add_item(tree
, hf_artnet_poll_reply_sacnprio
, tvb
,
5313 offset
, 1, ENC_BIG_ENDIAN
);
5316 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_poll_reply_swmacro
,
5317 ett_artnet_poll_reply_swmacro
,
5318 artnet_poll_reply_swmacro_fields
,
5322 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_poll_reply_swremote
,
5323 ett_artnet_poll_reply_swremote
,
5324 artnet_poll_reply_swremote_fields
,
5328 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
5332 proto_tree_add_item(tree
, hf_artnet_poll_reply_style
, tvb
,
5333 offset
, 1, ENC_BIG_ENDIAN
);
5336 proto_tree_add_item(tree
, hf_artnet_poll_reply_mac
,
5337 tvb
, offset
, 6, ENC_NA
);
5340 bind_ip_address
= tvb_get_uint32(tvb
, offset
, ENC_BIG_ENDIAN
);
5341 tp
= proto_tree_add_item(tree
, hf_artnet_poll_reply_bind_ip_address
, tvb
,
5342 offset
, 4, ENC_BIG_ENDIAN
);
5343 if(bind_ip_address
== 0) {
5344 proto_item_append_text(tp
, " (unused)");
5348 bind_index
= tvb_get_uint8(tvb
, offset
);
5349 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " BindIdx=0x%02x", bind_index
);
5350 tp
= proto_tree_add_item(tree
, hf_artnet_poll_reply_bind_index
, tvb
,
5351 offset
, 1, ENC_BIG_ENDIAN
);
5352 if(bind_index
== 0) {
5353 proto_item_append_text(tp
, " (unused)");
5354 } else if(bind_index
== 1) {
5355 proto_item_append_text(tp
, " (root device)");
5359 /* If bind IP is non-zero, bind index must also be non-zero */
5360 if(bind_ip_address
!= 0 && bind_index
== 0) {
5361 expert_add_info(pinfo
, tree
, &ei_artnet_poll_reply_bind_ip_without_index
);
5364 /* If bind index is non-zero, bind IP must also be non-zero */
5365 if(bind_index
!= 0 && bind_ip_address
== 0) {
5366 expert_add_info(pinfo
, tree
, &ei_artnet_poll_reply_bind_index_without_ip
);
5369 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_poll_reply_status2
,
5370 ett_artnet_poll_reply_status2
,
5371 artnet_poll_reply_status2_fields
,
5376 hi
= proto_tree_add_item(tree
,
5377 hf_artnet_poll_reply_good_output_b
,
5380 ARTNET_POLL_REPLY_GOOD_OUTPUT_B_LENGTH
,
5383 ti
= proto_item_add_subtree(hi
, ett_artnet
);
5385 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_b_1
,
5386 ett_artnet_poll_reply_good_output_b_1
,
5387 artnet_poll_reply_good_output_b_fields
,
5390 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_b_2
,
5391 ett_artnet_poll_reply_good_output_b_2
,
5392 artnet_poll_reply_good_output_b_fields
,
5395 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_b_3
,
5396 ett_artnet_poll_reply_good_output_b_3
,
5397 artnet_poll_reply_good_output_b_fields
,
5400 proto_tree_add_bitmask(ti
, tvb
, offset
, hf_artnet_poll_reply_good_output_b_4
,
5401 ett_artnet_poll_reply_good_output_b_4
,
5402 artnet_poll_reply_good_output_b_fields
,
5406 bg_queue_supported
= (bool)tvb_get_bits(tvb
, offset
*8+6, 1, ENC_NA
);
5407 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_poll_reply_status3
,
5408 ett_artnet_poll_reply_status3
,
5409 artnet_poll_reply_status3_fields
,
5413 proto_tree_add_item(tree
, hf_artnet_poll_reply_default_responder_uid
, tvb
, offset
, 6, ENC_NA
);
5416 proto_tree_add_item(tree
, hf_artnet_poll_reply_user
, tvb
, offset
, 2, ENC_BIG_ENDIAN
);
5419 proto_tree_add_item(tree
, hf_artnet_poll_reply_refreshrate
, tvb
, offset
, 2, ENC_BIG_ENDIAN
);
5422 if(bg_queue_supported
) {
5423 proto_tree_add_item(tree
, hf_artnet_poll_reply_bg_queue_policy
, tvb
, offset
, 1, ENC_BIG_ENDIAN
);
5427 /* There are additional filler bytes reserved for future use */
5428 if (offset
< tvb_reported_length(tvb
))
5430 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
, offset
, -1, ENC_NA
);
5431 offset
= tvb_reported_length(tvb
);
5438 dissect_artnet_output(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
, proto_tree
* base_tree
)
5445 proto_tree_add_item(tree
, hf_artnet_output_sequence
, tvb
,
5446 offset
, 1, ENC_BIG_ENDIAN
);
5449 proto_tree_add_item(tree
, hf_artnet_output_physical
, tvb
,
5450 offset
, 1, ENC_BIG_ENDIAN
);
5453 proto_tree_add_item(tree
, hf_artnet_output_universe
, tvb
,
5454 offset
, 2, ENC_LITTLE_ENDIAN
);
5457 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " Seq=%d Port=%d Univ=%d",
5458 tvb_get_uint8(tvb
, offset
-4), tvb_get_uint8(tvb
, offset
-3), tvb_get_uint16(tvb
, offset
-2, ENC_LITTLE_ENDIAN
));
5460 length
= tvb_get_ntohs(tvb
, offset
);
5461 proto_tree_add_uint(tree
, hf_artnet_output_length
, tvb
,
5465 size
= tvb_reported_length_remaining(tvb
, offset
);
5467 save_info
= col_get_writable(pinfo
->cinfo
, COL_INFO
);
5468 col_set_writable(pinfo
->cinfo
, COL_INFO
, false);
5470 next_tvb
= tvb_new_subset_length(tvb
, offset
, length
);
5472 call_dissector(dmx_chan_handle
, next_tvb
, pinfo
, base_tree
);
5474 col_set_writable(pinfo
->cinfo
, COL_INFO
, save_info
);
5476 return offset
+ size
;
5480 dissect_artnet_sync(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
5482 proto_tree_add_item(tree
, hf_artnet_sync_aux
, tvb
,
5483 offset
, 2, ENC_BIG_ENDIAN
);
5490 dissect_artnet_nzs(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
, proto_tree
* base_tree
)
5492 uint16_t length
, payload_length
, lang_code
;
5498 proto_tree_add_item(tree
, hf_artnet_nzs_sequence
, tvb
,
5499 offset
, 1, ENC_BIG_ENDIAN
);
5502 start_code
= tvb_get_uint8(tvb
, offset
);
5503 proto_tree_add_item(tree
, hf_artnet_nzs_start_code
, tvb
,
5504 offset
, 1, ENC_BIG_ENDIAN
);
5507 proto_tree_add_item(tree
, hf_artnet_nzs_subuni
, tvb
,
5508 offset
, 1, ENC_BIG_ENDIAN
);
5511 proto_tree_add_item(tree
, hf_artnet_nzs_net
, tvb
,
5512 offset
, 1, ENC_BIG_ENDIAN
);
5515 length
= tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
);
5516 proto_tree_add_item(tree
, hf_artnet_nzs_length
, tvb
,
5517 offset
, 2, ENC_BIG_ENDIAN
);
5521 /* check if packet is normal ArtNzs or ArtVlc */
5523 if(tvb_reported_length_remaining(tvb
, offset
) < 3) {
5528 start_code
== ARTNET_NZS_VLC_START_CODE
&&
5529 tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
) == ARTNET_NZS_VLC_MAGIC_MAN_ID
&&
5530 tvb_get_uint8(tvb
, offset
+ 2) == ARTNET_NZS_VLC_MAGIC_SUB_CODE
5535 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_man_id
, tvb
,
5536 offset
, 2, ENC_BIG_ENDIAN
);
5539 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_sub_code
, tvb
,
5540 offset
, 1, ENC_BIG_ENDIAN
);
5543 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_nzs_vlc_flags
,
5544 ett_artnet_nzs_vlc_flags
,
5545 artnet_nzs_vlc_flags_fields
,
5549 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_transaction
, tvb
,
5550 offset
, 2, ENC_BIG_ENDIAN
);
5553 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_slot_addr
, tvb
,
5554 offset
, 2, ENC_BIG_ENDIAN
);
5557 payload_length
= tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
);
5558 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_payload_size
, tvb
,
5559 offset
, 2, ENC_BIG_ENDIAN
);
5562 proto_tree_add_checksum(tree
, tvb
, offset
, hf_artnet_nzs_vlc_payload_checksum
, -1, NULL
, NULL
, 0, ENC_BIG_ENDIAN
, PROTO_CHECKSUM_NO_FLAGS
);
5565 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
5569 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_mod_depth
, tvb
,
5570 offset
, 1, ENC_BIG_ENDIAN
);
5573 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_mod_freq
, tvb
,
5574 offset
, 2, ENC_BIG_ENDIAN
);
5577 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_mod_type
, tvb
,
5578 offset
, 2, ENC_BIG_ENDIAN
);
5581 lang_code
= tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
);
5582 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_lang_code
, tvb
,
5583 offset
, 2, ENC_BIG_ENDIAN
);
5586 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_beacon_repeat
, tvb
,
5587 offset
, 2, ENC_BIG_ENDIAN
);
5590 proto_tree_add_item(tree
, hf_artnet_nzs_vlc_payload
, tvb
,
5591 offset
, payload_length
, ENC_NA
);
5593 if(lang_code
== ARTNET_NZS_VLC_LANG_CODE_BEACON_URL
) {
5594 pi
= proto_tree_add_item(tree
, hf_artnet_nzs_vlc_payload_beacon_url
, tvb
, offset
, payload_length
, ENC_ASCII
);
5595 proto_item_set_generated(pi
);
5596 } else if(lang_code
== ARTNET_NZS_VLC_LANG_CODE_BEACON_TEXT
) {
5597 pi
= proto_tree_add_item(tree
, hf_artnet_nzs_vlc_payload_beacon_text
, tvb
, offset
, payload_length
, ENC_ASCII
);
5598 proto_item_set_generated(pi
);
5599 } else if(lang_code
== ARTNET_NZS_VLC_LANG_CODE_BEACON_LOCID
&& tvb_reported_length_remaining(tvb
, offset
) >= 2) {
5600 pi
= proto_tree_add_item(tree
, hf_artnet_nzs_vlc_payload_beacon_location_id
, tvb
, offset
, 2, ENC_BIG_ENDIAN
);
5601 proto_item_set_generated(pi
);
5603 offset
+= payload_length
;
5609 /* Nzs -> DMX data */
5611 save_info
= col_get_writable(pinfo
->cinfo
, COL_INFO
);
5612 col_set_writable(pinfo
->cinfo
, COL_INFO
, false);
5614 next_tvb
= tvb_new_subset_length(tvb
, offset
, length
);
5616 call_dissector(dmx_chan_handle
, next_tvb
, pinfo
, base_tree
);
5618 col_set_writable(pinfo
->cinfo
, COL_INFO
, save_info
);
5620 return offset
+ length
;
5626 dissect_artnet_address(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
) {
5627 proto_tree
*hi
, *si
, *ti
;
5630 net
= tvb_get_uint8(tvb
, offset
);
5632 /* Treat the "special" values differently */
5633 if (net
== 0x00 || net
== 0x7F) {
5634 proto_tree_add_uint(tree
,hf_artnet_address_netswitch_special
, tvb
,
5637 proto_tree_add_bitmask_text(tree
, tvb
, offset
, 1, "NetSwitch: ",
5638 "NetSwitch Error: ", ett_artnet_address_netswitch
,
5639 artnet_address_netswitch_fields
, ENC_BIG_ENDIAN
, 0);
5644 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " BindIdx=0x%02x", tvb_get_uint8(tvb
, offset
));
5645 proto_tree_add_item(tree
, hf_artnet_address_bind_index
, tvb
,
5646 offset
, 1, ENC_BIG_ENDIAN
);
5649 proto_tree_add_item(tree
, hf_artnet_address_short_name
,
5650 tvb
, offset
, 18, ENC_ASCII
);
5653 proto_tree_add_item(tree
, hf_artnet_address_long_name
,
5654 tvb
, offset
, 64, ENC_ASCII
);
5657 hi
= proto_tree_add_item(tree
,
5658 hf_artnet_address_swin
,
5661 ARTNET_ADDRESS_SWIN_LENGTH
,
5664 ti
= proto_item_add_subtree(hi
, ett_artnet
);
5666 proto_tree_add_item(ti
, hf_artnet_address_swin_1
, tvb
,
5667 offset
, 1, ENC_BIG_ENDIAN
);
5670 proto_tree_add_item(ti
, hf_artnet_address_swin_2
, tvb
,
5671 offset
, 1, ENC_BIG_ENDIAN
);
5674 proto_tree_add_item(ti
, hf_artnet_address_swin_3
, tvb
,
5675 offset
, 1, ENC_BIG_ENDIAN
);
5678 proto_tree_add_item(ti
, hf_artnet_address_swin_4
, tvb
,
5679 offset
, 1, ENC_BIG_ENDIAN
);
5682 hi
= proto_tree_add_item(tree
,
5683 hf_artnet_address_swout
,
5686 ARTNET_ADDRESS_SWOUT_LENGTH
,
5689 si
= proto_item_add_subtree(hi
, ett_artnet
);
5691 proto_tree_add_item(si
, hf_artnet_address_swout_1
, tvb
,
5692 offset
, 1, ENC_BIG_ENDIAN
);
5695 proto_tree_add_item(si
, hf_artnet_address_swout_2
, tvb
,
5696 offset
, 1, ENC_BIG_ENDIAN
);
5699 proto_tree_add_item(si
, hf_artnet_address_swout_3
, tvb
,
5700 offset
, 1, ENC_BIG_ENDIAN
);
5703 proto_tree_add_item(si
, hf_artnet_address_swout_4
, tvb
,
5704 offset
, 1, ENC_BIG_ENDIAN
);
5707 sub
= tvb_get_uint8(tvb
, offset
);
5709 /* Treat the "special" values differently */
5710 if (sub
== 0x00 || sub
== 0x7F) {
5711 proto_tree_add_uint(tree
,hf_artnet_address_subswitch_special
, tvb
,
5714 proto_tree_add_bitmask_text(tree
, tvb
, offset
, 1, "SubSwitch: ",
5715 "SubSwitch Error: ", ett_artnet_address_subswitch
,
5716 artnet_address_subswitch_fields
, ENC_BIG_ENDIAN
, 0);
5720 proto_tree_add_item(tree
, hf_artnet_address_sacnprio
, tvb
,
5721 offset
, 1, ENC_BIG_ENDIAN
);
5724 proto_tree_add_item(tree
, hf_artnet_address_command
, tvb
,
5725 offset
, 1, ENC_BIG_ENDIAN
);
5733 dissect_artnet_input(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
) {
5734 proto_tree
*hi
, *si
;
5736 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
5740 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " BindIdx=0x%02x", tvb_get_uint8(tvb
, offset
));
5741 proto_tree_add_item(tree
, hf_artnet_input_bind_index
, tvb
,
5742 offset
, 1, ENC_BIG_ENDIAN
);
5745 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " Ports=%d", tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
));
5746 proto_tree_add_item(tree
, hf_artnet_input_num_ports
, tvb
,
5747 offset
, 2, ENC_BIG_ENDIAN
);
5750 hi
= proto_tree_add_item(tree
,
5751 hf_artnet_input_input
,
5754 ARTNET_INPUT_INPUT_LENGTH
,
5757 si
= proto_item_add_subtree(hi
, ett_artnet
);
5759 proto_tree_add_bitmask(si
, tvb
, offset
, hf_artnet_input_input_1
,
5760 ett_artnet_input_input_1
,
5761 artnet_input_input_fields
,
5765 proto_tree_add_bitmask(si
, tvb
, offset
, hf_artnet_input_input_2
,
5766 ett_artnet_input_input_2
,
5767 artnet_input_input_fields
,
5771 proto_tree_add_bitmask(si
, tvb
, offset
, hf_artnet_input_input_3
,
5772 ett_artnet_input_input_3
,
5773 artnet_input_input_fields
,
5777 proto_tree_add_bitmask(si
, tvb
, offset
, hf_artnet_input_input_4
,
5778 ett_artnet_input_input_4
,
5779 artnet_input_input_fields
,
5787 dissect_artnet_video_setup(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
) {
5789 uint8_t font_height
, last_font
;
5791 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
5795 proto_tree_add_item(tree
, hf_artnet_video_setup_control
, tvb
,
5796 offset
, 1, ENC_BIG_ENDIAN
);
5799 font_height
= tvb_get_uint8(tvb
, offset
);
5800 proto_tree_add_uint(tree
, hf_artnet_video_setup_font_height
, tvb
,
5801 offset
, 1, font_height
);
5804 proto_tree_add_item(tree
, hf_artnet_video_setup_first_font
, tvb
,
5805 offset
, 1, ENC_BIG_ENDIAN
);
5808 last_font
= tvb_get_uint8(tvb
, offset
);
5809 proto_tree_add_uint(tree
, hf_artnet_video_setup_last_font
, tvb
,
5810 offset
, 1, last_font
);
5813 proto_tree_add_item(tree
, hf_artnet_video_setup_win_font_name
,
5814 tvb
, offset
, 64, ENC_ASCII
);
5817 size
= last_font
* font_height
;
5819 proto_tree_add_item(tree
, hf_artnet_video_setup_font_data
, tvb
,
5820 offset
, size
, ENC_NA
);
5828 dissect_artnet_video_palette(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
5830 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
5834 proto_tree_add_item(tree
, hf_artnet_video_palette_colour_red
, tvb
,
5835 offset
, 17, ENC_NA
);
5838 proto_tree_add_item(tree
, hf_artnet_video_palette_colour_green
, tvb
,
5839 offset
, 17, ENC_NA
);
5842 proto_tree_add_item(tree
, hf_artnet_video_palette_colour_blue
, tvb
,
5843 offset
, 17, ENC_NA
);
5850 dissect_artnet_video_data(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
) {
5851 uint8_t len_x
, len_y
;
5854 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
5858 proto_tree_add_item(tree
, hf_artnet_video_data_pos_x
, tvb
,
5859 offset
, 1, ENC_BIG_ENDIAN
);
5862 proto_tree_add_item(tree
, hf_artnet_video_data_pos_y
, tvb
,
5863 offset
, 1, ENC_BIG_ENDIAN
);
5866 len_x
= tvb_get_uint8(tvb
, offset
);
5867 proto_tree_add_uint(tree
, hf_artnet_video_data_len_x
, tvb
,
5871 len_y
= tvb_get_uint8(tvb
, offset
);
5872 proto_tree_add_uint(tree
, hf_artnet_video_data_len_y
, tvb
,
5876 size
= len_x
* len_y
* 2;
5878 proto_tree_add_item(tree
, hf_artnet_video_data_data
, tvb
,
5879 offset
, size
, ENC_NA
);
5887 dissect_artnet_firmware_master(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
) {
5888 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
5892 proto_tree_add_item(tree
, hf_artnet_firmware_master_type
, tvb
,
5893 offset
, 1, ENC_BIG_ENDIAN
);
5896 proto_tree_add_item(tree
, hf_artnet_firmware_master_block_id
, tvb
,
5897 offset
, 1, ENC_BIG_ENDIAN
);
5900 proto_tree_add_item(tree
, hf_artnet_firmware_master_length
, tvb
,
5901 offset
, 4, ENC_BIG_ENDIAN
);
5904 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
5905 offset
, 20, ENC_NA
);
5908 proto_tree_add_item(tree
, hf_artnet_firmware_master_data
, tvb
,
5909 offset
, 1024, ENC_NA
);
5916 dissect_artnet_firmware_reply(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
) {
5917 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
5921 proto_tree_add_item(tree
, hf_artnet_firmware_reply_type
, tvb
,
5922 offset
, 1, ENC_BIG_ENDIAN
);
5925 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
5926 offset
, 21, ENC_NA
);
5933 dissect_artnet_tod_request(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
)
5937 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
5941 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
5945 proto_tree_add_item(tree
, hf_artnet_tod_request_net
, tvb
,
5949 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " Cmd=%s", val_to_str(tvb_get_uint8(tvb
, offset
), artnet_tod_request_command_vals
, "unknown(%u)"));
5950 proto_tree_add_item(tree
, hf_artnet_tod_request_command
, tvb
,
5951 offset
, 1, ENC_BIG_ENDIAN
);
5954 ad_count
= tvb_get_uint8(tvb
, offset
);
5955 proto_tree_add_uint(tree
, hf_artnet_tod_request_ad_count
, tvb
,
5956 offset
, 1, ad_count
);
5959 proto_tree_add_item(tree
, hf_artnet_tod_request_address
, tvb
,
5960 offset
, ad_count
, ENC_NA
);
5967 dissect_artnet_tod_data(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
)
5971 uint8_t i
, uid_count
;
5973 proto_tree_add_item(tree
, hf_artnet_tod_data_rdm_ver
, tvb
,
5974 offset
, 1, ENC_BIG_ENDIAN
);
5977 proto_tree_add_item(tree
, hf_artnet_tod_data_port
, tvb
,
5978 offset
, 1, ENC_BIG_ENDIAN
);
5981 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
5985 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " BindIdx=0x%02x", tvb_get_uint8(tvb
, offset
));
5986 proto_tree_add_item(tree
, hf_artnet_tod_data_bind_index
, tvb
,
5987 offset
, 1, ENC_BIG_ENDIAN
);
5990 proto_tree_add_item(tree
, hf_artnet_tod_data_net
, tvb
,
5991 offset
, 1, ENC_BIG_ENDIAN
);
5992 universe
= (tvb_get_uint8(tvb
, offset
) & 0x7F) << 8;
5995 proto_tree_add_item(tree
, hf_artnet_tod_data_command_response
, tvb
,
5996 offset
, 1, ENC_BIG_ENDIAN
);
5999 proto_tree_add_item(tree
, hf_artnet_tod_data_address
, tvb
,
6000 offset
, 1, ENC_BIG_ENDIAN
);
6001 universe
|= tvb_get_uint8(tvb
, offset
);
6002 tf
= proto_tree_add_uint(tree
,hf_artnet_tod_control_universe
,tvb
,
6003 offset
, 0, universe
);
6004 proto_item_set_generated(tf
);
6007 proto_tree_add_item(tree
, hf_artnet_tod_data_uid_total
, tvb
,
6008 offset
, 2, ENC_BIG_ENDIAN
);
6011 proto_tree_add_item(tree
, hf_artnet_tod_data_block_count
, tvb
,
6012 offset
, 1, ENC_BIG_ENDIAN
);
6015 uid_count
= tvb_get_uint8(tvb
, offset
);
6016 proto_tree_add_uint(tree
, hf_artnet_tod_data_uid_count
, tvb
,
6017 offset
, 1, uid_count
);
6020 for( i
= 0; i
< uid_count
; i
++)
6022 proto_tree_add_item(tree
, hf_artnet_tod_data_tod
, tvb
,
6031 dissect_artnet_tod_control(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
)
6036 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6040 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6044 proto_tree_add_item(tree
, hf_artnet_tod_control_net
, tvb
,
6045 offset
, 1, ENC_BIG_ENDIAN
);
6046 universe
= (tvb_get_uint8(tvb
, offset
) & 0x7F) << 8;
6049 col_append_fstr(pinfo
->cinfo
, COL_INFO
, " Cmd=%s", val_to_str(tvb_get_uint8(tvb
, offset
), artnet_tod_control_command_vals
, "unknown(%u)"));
6050 proto_tree_add_item(tree
, hf_artnet_tod_control_command
, tvb
,
6051 offset
, 1, ENC_BIG_ENDIAN
);
6054 proto_tree_add_item(tree
, hf_artnet_tod_control_address
, tvb
,
6055 offset
, 1, ENC_BIG_ENDIAN
);
6056 universe
|= tvb_get_uint8(tvb
, offset
);
6057 tf
= proto_tree_add_uint(tree
,hf_artnet_tod_control_universe
,tvb
,
6058 offset
, 0, universe
);
6059 proto_item_set_generated(tf
);
6066 dissect_artnet_rdm(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo
, proto_tree
*base_tree
)
6076 rdmver
= tvb_get_uint8(tvb
, offset
);
6077 if (rdmver
== 0x00) {
6078 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6082 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6087 proto_tree_add_item(tree
, hf_artnet_rdm_rdmver
, tvb
,
6088 offset
, 1, ENC_BIG_ENDIAN
);
6091 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6095 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6099 proto_tree_add_item(tree
, hf_artnet_rdm_fifo_avail
, tvb
,
6100 offset
, 1, ENC_BIG_ENDIAN
);
6103 proto_tree_add_item(tree
, hf_artnet_rdm_fifo_max
, tvb
,
6104 offset
, 1, ENC_BIG_ENDIAN
);
6107 proto_tree_add_item(tree
, hf_artnet_rdm_net
, tvb
,
6108 offset
, 1, ENC_BIG_ENDIAN
);
6109 universe
= (tvb_get_uint8(tvb
, offset
) & 0x7F) << 8;
6113 proto_tree_add_item(tree
, hf_artnet_rdm_command
, tvb
,
6114 offset
, 1, ENC_BIG_ENDIAN
);
6117 proto_tree_add_item(tree
, hf_artnet_rdm_address
, tvb
,
6118 offset
, 1, ENC_BIG_ENDIAN
);
6119 universe
|= tvb_get_uint8(tvb
, offset
);
6120 tf
= proto_tree_add_uint(tree
,hf_artnet_tod_control_universe
,tvb
,
6121 offset
, 0, universe
);
6122 proto_item_set_generated(tf
);
6125 /* check for old version that included the 0xCC startcode
6126 * The 0xCC will never be the first byte of the RDM packet
6128 sc
= tvb_get_uint8(tvb
, offset
);
6131 proto_tree_add_item(tree
, hf_artnet_rdm_sc
, tvb
,
6132 offset
, 1, ENC_BIG_ENDIAN
);
6136 size
= tvb_reported_length_remaining(tvb
, offset
);
6138 save_info
= col_get_writable(pinfo
->cinfo
, COL_INFO
);
6139 col_set_writable(pinfo
->cinfo
, COL_INFO
, false);
6141 next_tvb
= tvb_new_subset_remaining(tvb
, offset
);
6143 call_dissector(rdm_handle
, next_tvb
, pinfo
, base_tree
);
6145 col_set_writable(pinfo
->cinfo
, COL_INFO
, save_info
);
6147 return offset
+ size
;
6152 dissect_artnet_rdm_sub(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
, packet_info
*pinfo _U_
)
6157 proto_tree_add_item(tree
, hf_artnet_rdm_rdmver
, tvb
,
6158 offset
, 1, ENC_BIG_ENDIAN
);
6161 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6165 proto_tree_add_item(tree
, hf_artnet_rdm_sub_uid
, tvb
,
6169 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6173 cc
= tvb_get_uint8(tvb
, offset
);
6174 proto_tree_add_item(tree
, hf_artnet_rdm_sub_command_class
, tvb
,
6175 offset
, 1, ENC_BIG_ENDIAN
);
6178 proto_tree_add_item(tree
, hf_artnet_rdm_sub_pid
, tvb
,
6179 offset
, 2, ENC_BIG_ENDIAN
);
6182 proto_tree_add_item(tree
, hf_artnet_rdm_sub_sub_device
, tvb
,
6183 offset
, 2, ENC_BIG_ENDIAN
);
6186 proto_tree_add_item(tree
, hf_artnet_rdm_sub_sub_count
, tvb
,
6187 offset
, 2, ENC_BIG_ENDIAN
);
6190 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6195 case ARTNET_CC_SET_COMMAND
:
6196 case ARTNET_CC_GET_COMMAND_RESPONSE
:
6197 size
= tvb_reported_length_remaining(tvb
, offset
);
6198 proto_tree_add_item(tree
, hf_artnet_rdm_sub_data
, tvb
,
6199 offset
, size
, ENC_NA
);
6203 case ARTNET_CC_DISCOVERY_COMMAND
:
6204 case ARTNET_CC_DISCOVERY_COMMAND_RESPONSE
:
6205 case ARTNET_CC_GET_COMMAND
:
6206 case ARTNET_CC_SET_COMMAND_RESPONSE
:
6215 dissect_artnet_ip_prog(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6217 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6221 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_ip_prog_command
,
6222 ett_artnet_ip_prog_command
,
6223 artnet_ip_prog_command_fields
,
6227 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6231 proto_tree_add_item(tree
, hf_artnet_ip_prog_ip
, tvb
,
6232 offset
, 4, ENC_BIG_ENDIAN
);
6235 proto_tree_add_item(tree
, hf_artnet_ip_prog_sm
, tvb
,
6236 offset
, 4, ENC_BIG_ENDIAN
);
6239 proto_tree_add_item(tree
, hf_artnet_ip_prog_port
, tvb
,
6240 offset
, 2, ENC_BIG_ENDIAN
);
6243 proto_tree_add_item(tree
, hf_artnet_ip_prog_gw
, tvb
,
6244 offset
, 4, ENC_BIG_ENDIAN
);
6247 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6255 dissect_artnet_ip_prog_reply(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6257 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6261 proto_tree_add_item(tree
, hf_artnet_ip_prog_reply_ip
, tvb
,
6262 offset
, 4, ENC_BIG_ENDIAN
);
6265 proto_tree_add_item(tree
, hf_artnet_ip_prog_reply_sm
, tvb
,
6266 offset
, 4, ENC_BIG_ENDIAN
);
6269 proto_tree_add_item(tree
, hf_artnet_ip_prog_reply_port
, tvb
,
6270 offset
, 2, ENC_BIG_ENDIAN
);
6273 proto_tree_add_bitmask(tree
, tvb
, offset
, hf_artnet_ip_prog_reply_status
,
6274 ett_artnet_ip_prog_reply_status
,
6275 artnet_ip_prog_reply_status_fields
,
6279 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6283 proto_tree_add_item(tree
, hf_artnet_ip_prog_reply_gw
, tvb
,
6284 offset
, 4, ENC_BIG_ENDIAN
);
6287 proto_tree_add_item(tree
, hf_artnet_spare
, tvb
,
6295 dissect_artnet_poll_fp_reply(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6303 dissect_artnet_diag_data(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6307 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6311 proto_tree_add_item(tree
, hf_artnet_diag_data_priority
, tvb
,
6315 proto_tree_add_item(tree
, hf_artnet_diag_data_port
, tvb
,
6316 offset
, 1, ENC_BIG_ENDIAN
);
6319 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6323 length
= tvb_get_ntohs(tvb
, offset
);
6324 proto_tree_add_item(tree
, hf_artnet_diag_data_length
, tvb
,
6325 offset
, 2, ENC_BIG_ENDIAN
);
6328 proto_tree_add_item(tree
, hf_artnet_diag_data_data
, tvb
,
6329 offset
, length
, ENC_ASCII
);
6337 dissect_artnet_command(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6341 proto_tree_add_item(tree
, hf_artnet_command_esta_man
, tvb
,
6342 offset
, 2, ENC_BIG_ENDIAN
);
6345 length
= tvb_get_ntohs(tvb
, offset
);
6346 proto_tree_add_item(tree
, hf_artnet_command_length
, tvb
,
6347 offset
, 2, ENC_BIG_ENDIAN
);
6350 proto_tree_add_item(tree
, hf_artnet_command_data
, tvb
,
6351 offset
, length
, ENC_ASCII
);
6357 /* ArtDataRequest */
6359 dissect_artnet_data_request(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6361 proto_tree_add_item(tree
, hf_artnet_data_request_esta_man
, tvb
,
6362 offset
, 2, ENC_BIG_ENDIAN
);
6365 proto_tree_add_item(tree
, hf_artnet_data_request_oem
, tvb
,
6366 offset
, 2, ENC_BIG_ENDIAN
);
6369 proto_tree_add_item(tree
, hf_artnet_data_request_request
, tvb
,
6370 offset
, 2, ENC_BIG_ENDIAN
);
6373 proto_tree_add_item(tree
, hf_artnet_data_request_spare
, tvb
,
6374 offset
, 22, ENC_NA
);
6382 dissect_artnet_data_reply(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6384 uint16_t payload_length
;
6386 proto_tree_add_item(tree
, hf_artnet_data_reply_esta_man
, tvb
,
6387 offset
, 2, ENC_BIG_ENDIAN
);
6390 proto_tree_add_item(tree
, hf_artnet_data_reply_oem
, tvb
,
6391 offset
, 2, ENC_BIG_ENDIAN
);
6394 proto_tree_add_item(tree
, hf_artnet_data_reply_request
, tvb
,
6395 offset
, 2, ENC_BIG_ENDIAN
);
6398 payload_length
= tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
);
6399 proto_tree_add_item(tree
, hf_artnet_data_reply_payload_length
, tvb
,
6400 offset
, 2, ENC_BIG_ENDIAN
);
6403 if(payload_length
== 0) {
6407 proto_tree_add_item(tree
, hf_artnet_data_reply_payload
, tvb
,
6408 offset
, payload_length
, ENC_ASCII
);
6410 offset
+= payload_length
;
6417 dissect_artnet_media(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6424 dissect_artnet_media_patch(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6429 /* ArtMediaControl */
6431 dissect_artnet_media_control(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6436 /* ArtMediaControlReply */
6438 dissect_artnet_media_control_reply(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6445 dissect_artnet_time_code(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6447 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6451 proto_tree_add_item(tree
, hf_artnet_time_code_stream_id
, tvb
,
6452 offset
, 1, ENC_BIG_ENDIAN
);
6455 proto_tree_add_item(tree
, hf_artnet_time_code_frames
, tvb
,
6456 offset
, 1, ENC_BIG_ENDIAN
);
6459 proto_tree_add_item(tree
, hf_artnet_time_code_seconds
, tvb
,
6460 offset
, 1, ENC_BIG_ENDIAN
);
6463 proto_tree_add_item(tree
, hf_artnet_time_code_minutes
, tvb
,
6464 offset
, 1, ENC_BIG_ENDIAN
);
6467 proto_tree_add_item(tree
, hf_artnet_time_code_hours
, tvb
,
6468 offset
, 1, ENC_BIG_ENDIAN
);
6471 proto_tree_add_item(tree
, hf_artnet_time_code_type
, tvb
,
6472 offset
, 1, ENC_BIG_ENDIAN
);
6480 dissect_artnet_time_sync(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6487 dissect_artnet_trigger(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6492 proto_tree_add_item(tree
, hf_artnet_filler
, tvb
,
6496 oem
= tvb_get_uint16(tvb
, offset
, ENC_BIG_ENDIAN
);
6497 proto_tree_add_item(tree
, hf_artnet_trigger_oem
, tvb
,
6498 offset
, 2, ENC_BIG_ENDIAN
);
6501 proto_tree_add_item(tree
, hf_artnet_trigger_key
, tvb
,
6502 offset
, 1, ENC_BIG_ENDIAN
);
6504 if(oem
== ARTNET_TRIGGER_NOT_OEM_SPECIFIC
) {
6505 pi
= proto_tree_add_item(tree
, hf_artnet_trigger_key_unspecific
, tvb
,
6506 offset
, 1, ENC_BIG_ENDIAN
);
6507 proto_item_set_generated(pi
);
6511 proto_tree_add_item(tree
, hf_artnet_trigger_subkey
, tvb
,
6512 offset
, 1, ENC_BIG_ENDIAN
);
6515 proto_tree_add_item(tree
, hf_artnet_trigger_data
, tvb
,
6516 offset
, 512, ENC_NA
);
6524 dissect_artnet_directory(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6526 proto_tree_add_item(tree
, hf_artnet_directory_filler
, tvb
,
6530 proto_tree_add_item(tree
, hf_artnet_directory_cmd
, tvb
,
6534 proto_tree_add_item(tree
, hf_artnet_directory_file
, tvb
,
6535 offset
, 2, ENC_BIG_ENDIAN
);
6541 /* ArtDirectoryReply */
6543 dissect_artnet_directory_reply(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6545 proto_tree_add_item(tree
, hf_artnet_directory_reply_filler
, tvb
,
6549 proto_tree_add_item(tree
, hf_artnet_directory_reply_flags
, tvb
,
6553 proto_tree_add_item(tree
, hf_artnet_directory_reply_file
, tvb
,
6554 offset
, 2, ENC_BIG_ENDIAN
);
6557 proto_tree_add_item(tree
, hf_artnet_directory_reply_name
, tvb
,
6558 offset
, 16, ENC_ASCII
);
6561 proto_tree_add_item(tree
, hf_artnet_directory_reply_desc
, tvb
,
6562 offset
, 64, ENC_ASCII
);
6565 proto_tree_add_item(tree
, hf_artnet_directory_reply_length
, tvb
,
6566 offset
, 8, ENC_BIG_ENDIAN
);
6569 proto_tree_add_item(tree
, hf_artnet_directory_reply_data
, tvb
,
6570 offset
, 64, ENC_NA
);
6578 dissect_artnet_mac_master(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6585 dissect_artnet_mac_slave(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6590 /* ArtFileTnMaster */
6592 dissect_artnet_file_tn_master(tvbuff_t
*tvb
, unsigned offset
, proto_tree
*tree
)
6594 proto_tree_add_item(tree
, hf_artnet_file_tn_master_filler
, tvb
,
6598 proto_tree_add_item(tree
, hf_artnet_file_tn_master_type
, tvb
,
6602 proto_tree_add_item(tree
, hf_artnet_file_tn_master_block_id
, tvb
,
6606 proto_tree_add_item(tree
, hf_artnet_file_tn_master_length
, tvb
,
6607 offset
, 4, ENC_BIG_ENDIAN
);
6610 proto_tree_add_item(tree
, hf_artnet_file_tn_master_name
, tvb
,
6611 offset
, 14, ENC_ASCII
);
6614 proto_tree_add_checksum(tree
, tvb
, offset
, hf_artnet_file_tn_master_checksum
, -1, NULL
, NULL
, 0, ENC_BIG_ENDIAN
, PROTO_CHECKSUM_NO_FLAGS
);
6617 proto_tree_add_item(tree
, hf_artnet_file_tn_master_spare
, tvb
,
6621 proto_tree_add_item(tree
, hf_artnet_file_tn_master_data
, tvb
,
6622 offset
, 512, ENC_NA
);
6628 /* ArtFileFnMaster */
6630 dissect_artnet_file_fn_master(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6635 /* ArtFileFnReply */
6637 dissect_artnet_file_fn_reply(tvbuff_t
*tvb _U_
, unsigned offset
, proto_tree
*tree _U_
)
6643 dissect_artnet(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
, void* data _U_
) {
6647 const uint8_t *header
;
6648 proto_tree
*ti
, *hi
, *si
= NULL
, *artnet_tree
, *artnet_header_tree
;
6650 col_set_str(pinfo
->cinfo
, COL_PROTOCOL
, "ARTNET");
6651 col_clear(pinfo
->cinfo
, COL_INFO
);
6653 ti
= proto_tree_add_item(tree
, proto_artnet
, tvb
, offset
, -1, ENC_NA
);
6654 artnet_tree
= proto_item_add_subtree(ti
, ett_artnet
);
6656 hi
= proto_tree_add_item(artnet_tree
, hf_artnet_header
, tvb
,
6657 offset
, ARTNET_HEADER_LENGTH
, ENC_NA
);
6658 artnet_header_tree
= proto_item_add_subtree(hi
, ett_artnet
);
6660 proto_tree_add_item_ret_string(artnet_header_tree
, hf_artnet_header_id
,
6661 tvb
, offset
, 8, ENC_ASCII
|ENC_NA
, pinfo
->pool
, &header
);
6664 opcode
= tvb_get_letohs(tvb
, offset
);
6666 col_set_str(pinfo
->cinfo
, COL_INFO
,
6667 val_to_str_ext_const(opcode
, &artnet_opcode_vals_ext
, "Unknown"));
6670 proto_tree_add_uint(artnet_header_tree
, hf_artnet_header_opcode
, tvb
,
6673 proto_item_append_text(ti
, ", Opcode: %s (0x%04x)", val_to_str_ext_const(opcode
, &artnet_opcode_vals_ext
, "Unknown"), opcode
);
6677 if (opcode
!= ARTNET_OP_POLL_REPLY
&& opcode
!= ARTNET_OP_POLL_FP_REPLY
) {
6679 proto_tree_add_item(artnet_header_tree
, hf_artnet_header_protver
, tvb
,
6680 offset
, 2, ENC_BIG_ENDIAN
);
6682 proto_item_set_len(artnet_header_tree
, ARTNET_HEADER_LENGTH
+2 );
6689 case ARTNET_OP_POLL
:
6691 hi
= proto_tree_add_item(artnet_tree
,
6698 si
= proto_item_add_subtree(hi
, ett_artnet
);
6700 size
= dissect_artnet_poll( tvb
, offset
, si
, pinfo
);
6703 proto_item_set_len(si
, size
);
6708 case ARTNET_OP_POLL_REPLY
:
6710 hi
= proto_tree_add_item(artnet_tree
,
6711 hf_artnet_poll_reply
,
6717 si
= proto_item_add_subtree(hi
, ett_artnet
);
6719 size
= dissect_artnet_poll_reply( tvb
, offset
, si
, pinfo
);
6722 proto_item_set_len(si
, size
);
6727 case ARTNET_OP_POLL_FP_REPLY
:
6729 hi
= proto_tree_add_item(artnet_tree
,
6730 hf_artnet_poll_fp_reply
,
6735 si
= proto_item_add_subtree(hi
, ett_artnet
);
6737 size
= dissect_artnet_poll_fp_reply( tvb
, offset
, si
);
6740 proto_item_set_len(si
, size
);
6745 case ARTNET_OP_DIAG_DATA
:
6747 hi
= proto_tree_add_item(artnet_tree
,
6748 hf_artnet_diag_data
,
6753 si
= proto_item_add_subtree(hi
, ett_artnet
);
6755 size
= dissect_artnet_diag_data( tvb
, offset
, si
);
6758 proto_item_set_len(si
, size
);
6763 case ARTNET_OP_COMMAND
:
6765 hi
= proto_tree_add_item(artnet_tree
,
6771 si
= proto_item_add_subtree(hi
, ett_artnet
);
6773 size
= dissect_artnet_command( tvb
, offset
, si
);
6776 proto_item_set_len(si
, size
);
6781 case ARTNET_OP_DATA_REQUEST
:
6783 hi
= proto_tree_add_item(artnet_tree
,
6784 hf_artnet_data_request
,
6789 si
= proto_item_add_subtree(hi
, ett_artnet
);
6791 size
= dissect_artnet_data_request( tvb
, offset
, si
);
6794 proto_item_set_len(si
, size
);
6799 case ARTNET_OP_DATA_REPLY
:
6801 hi
= proto_tree_add_item(artnet_tree
,
6802 hf_artnet_data_reply
,
6807 si
= proto_item_add_subtree(hi
, ett_artnet
);
6809 size
= dissect_artnet_data_reply( tvb
, offset
, si
);
6812 proto_item_set_len(si
, size
);
6817 case ARTNET_OP_OUTPUT
:
6818 hi
= proto_tree_add_item(artnet_tree
,
6825 si
= proto_item_add_subtree(hi
, ett_artnet
);
6827 size
= dissect_artnet_output( tvb
, offset
, si
, pinfo
, tree
);
6829 proto_item_set_len(si
, size
);
6834 case ARTNET_OP_SYNC
:
6836 hi
= proto_tree_add_item(artnet_tree
,
6843 si
= proto_item_add_subtree(hi
, ett_artnet
);
6845 size
= dissect_artnet_sync( tvb
, offset
, si
);
6848 proto_item_set_len(si
, size
);
6854 case ARTNET_OP_ADDRESS
:
6856 hi
= proto_tree_add_item(artnet_tree
,
6863 si
= proto_item_add_subtree(hi
, ett_artnet
);
6865 size
= dissect_artnet_address( tvb
, offset
, si
, pinfo
);
6868 proto_item_set_len(si
, size
);
6873 case ARTNET_OP_INPUT
:
6875 hi
= proto_tree_add_item(artnet_tree
,
6882 si
= proto_item_add_subtree(hi
, ett_artnet
);
6884 size
= dissect_artnet_input( tvb
, offset
, si
, pinfo
);
6887 proto_item_set_len(si
, size
);
6892 case ARTNET_OP_TOD_REQUEST
:
6894 hi
= proto_tree_add_item(artnet_tree
,
6895 hf_artnet_tod_request
,
6901 si
= proto_item_add_subtree(hi
, ett_artnet
);
6903 size
= dissect_artnet_tod_request( tvb
, offset
, si
, pinfo
);
6906 proto_item_set_len(si
, size
);
6911 case ARTNET_OP_TOD_DATA
:
6913 hi
= proto_tree_add_item(artnet_tree
,
6920 si
= proto_item_add_subtree(hi
, ett_artnet
);
6922 size
= dissect_artnet_tod_data( tvb
, offset
, si
, pinfo
);
6925 proto_item_set_len(si
, size
);
6930 case ARTNET_OP_TOD_CONTROL
:
6932 hi
= proto_tree_add_item(artnet_tree
,
6933 hf_artnet_tod_control
,
6938 si
= proto_item_add_subtree(hi
, ett_artnet
);
6940 size
= dissect_artnet_tod_control( tvb
, offset
, si
, pinfo
);
6943 proto_item_set_len(si
, size
);
6949 hi
= proto_tree_add_item(artnet_tree
,
6955 si
= proto_item_add_subtree(hi
, ett_artnet
);
6956 size
= dissect_artnet_rdm(tvb
, offset
, si
, pinfo
, tree
);
6959 proto_item_set_len( si
, size
);
6963 case ARTNET_OP_RDM_SUB
:
6965 hi
= proto_tree_add_item(artnet_tree
,
6971 si
= proto_item_add_subtree(hi
, ett_artnet
);
6973 size
= dissect_artnet_rdm_sub( tvb
, offset
, si
, pinfo
);
6976 proto_item_set_len( si
, size
);
6981 case ARTNET_OP_MEDIA
:
6983 hi
= proto_tree_add_item(artnet_tree
,
6989 si
= proto_item_add_subtree(hi
, ett_artnet
);
6991 size
= dissect_artnet_media( tvb
, offset
, si
);
6994 proto_item_set_len( si
, size
);
6999 case ARTNET_OP_MEDIA_PATCH
:
7001 hi
= proto_tree_add_item(artnet_tree
,
7002 hf_artnet_media_patch
,
7007 si
= proto_item_add_subtree(hi
, ett_artnet
);
7009 size
= dissect_artnet_media_patch( tvb
, offset
, si
);
7012 proto_item_set_len( si
, size
);
7017 case ARTNET_OP_MEDIA_CONTROL
:
7019 hi
= proto_tree_add_item(artnet_tree
,
7020 hf_artnet_media_control
,
7025 si
= proto_item_add_subtree(hi
, ett_artnet
);
7027 size
= dissect_artnet_media_control( tvb
, offset
, si
);
7030 proto_item_set_len( si
, size
);
7035 case ARTNET_OP_MEDIA_CONTRL_REPLY
:
7037 hi
= proto_tree_add_item(artnet_tree
,
7038 hf_artnet_media_control_reply
,
7043 si
= proto_item_add_subtree(hi
, ett_artnet
);
7045 size
= dissect_artnet_media_control_reply( tvb
, offset
, si
);
7048 proto_item_set_len( si
, size
);
7053 case ARTNET_OP_TIME_CODE
:
7055 hi
= proto_tree_add_item(artnet_tree
,
7056 hf_artnet_time_code
,
7061 si
= proto_item_add_subtree(hi
, ett_artnet
);
7063 size
= dissect_artnet_time_code( tvb
, offset
, si
);
7066 proto_item_set_len( si
, size
);
7071 case ARTNET_OP_TIME_SYNC
:
7073 hi
= proto_tree_add_item(artnet_tree
,
7074 hf_artnet_time_sync
,
7079 si
= proto_item_add_subtree(hi
, ett_artnet
);
7081 size
= dissect_artnet_time_sync( tvb
, offset
, si
);
7084 proto_item_set_len( si
, size
);
7091 hi
= proto_tree_add_item(artnet_tree
,
7097 si
= proto_item_add_subtree(hi
, ett_artnet
);
7099 size
= dissect_artnet_nzs( tvb
, offset
, si
, pinfo
, tree
);
7102 proto_item_set_len( si
, size
);
7107 case ARTNET_OP_TRIGGER
:
7109 hi
= proto_tree_add_item(artnet_tree
,
7115 si
= proto_item_add_subtree(hi
, ett_artnet
);
7117 size
= dissect_artnet_trigger( tvb
, offset
, si
);
7120 proto_item_set_len( si
, size
);
7125 case ARTNET_OP_DIRECTORY
:
7127 hi
= proto_tree_add_item(artnet_tree
,
7128 hf_artnet_directory
,
7133 si
= proto_item_add_subtree(hi
, ett_artnet
);
7135 size
= dissect_artnet_directory( tvb
, offset
, si
);
7138 proto_item_set_len( si
, size
);
7143 case ARTNET_OP_DIRECTORY_REPLY
:
7145 hi
= proto_tree_add_item(artnet_tree
,
7146 hf_artnet_directory_reply
,
7151 si
= proto_item_add_subtree(hi
, ett_artnet
);
7153 size
= dissect_artnet_directory_reply( tvb
, offset
, si
);
7156 proto_item_set_len( si
, size
);
7162 case ARTNET_OP_VIDEO_SETUP
:
7164 hi
= proto_tree_add_item(artnet_tree
,
7171 si
= proto_item_add_subtree(hi
, ett_artnet
);
7173 size
= dissect_artnet_video_setup( tvb
, offset
, si
);
7176 proto_item_set_len(si
, size
);
7181 case ARTNET_OP_VIDEO_PALETTE
:
7183 hi
= proto_tree_add_item(artnet_tree
,
7190 si
= proto_item_add_subtree(hi
, ett_artnet
);
7192 size
= dissect_artnet_video_palette( tvb
, offset
, si
);
7195 proto_item_set_len(si
, size
);
7200 case ARTNET_OP_VIDEO_DATA
:
7202 hi
= proto_tree_add_item(artnet_tree
,
7209 si
= proto_item_add_subtree(hi
, ett_artnet
);
7211 size
= dissect_artnet_video_data( tvb
, offset
, si
);
7214 proto_item_set_len(si
, size
);
7219 case ARTNET_OP_MAC_MASTER
:
7221 hi
= proto_tree_add_item(artnet_tree
,
7222 hf_artnet_mac_master
,
7228 si
= proto_item_add_subtree(hi
, ett_artnet
);
7230 size
= dissect_artnet_mac_master( tvb
, offset
, si
);
7233 proto_item_set_len(si
, size
);
7238 case ARTNET_OP_MAC_SLAVE
:
7240 hi
= proto_tree_add_item(artnet_tree
,
7241 hf_artnet_mac_slave
,
7247 si
= proto_item_add_subtree(hi
, ett_artnet
);
7249 size
= dissect_artnet_mac_slave( tvb
, offset
, si
);
7252 proto_item_set_len(si
, size
);
7257 case ARTNET_OP_FIRMWARE_MASTER
:
7259 hi
= proto_tree_add_item(artnet_tree
,
7260 hf_artnet_firmware_master
,
7266 si
= proto_item_add_subtree(hi
, ett_artnet
);
7268 size
= dissect_artnet_firmware_master( tvb
, offset
, si
);
7271 proto_item_set_len(si
, size
);
7276 case ARTNET_OP_FIRMWARE_REPLY
:
7278 hi
= proto_tree_add_item(artnet_tree
,
7279 hf_artnet_firmware_reply
,
7285 si
= proto_item_add_subtree(hi
, ett_artnet
);
7287 size
= dissect_artnet_firmware_reply( tvb
, offset
, si
);
7290 proto_item_set_len(si
, size
);
7295 case ARTNET_OP_FILE_TN_MASTER
:
7297 hi
= proto_tree_add_item(artnet_tree
,
7298 hf_artnet_file_tn_master
,
7303 si
= proto_item_add_subtree(hi
, ett_artnet
);
7305 size
= dissect_artnet_file_tn_master( tvb
, offset
, si
);
7308 proto_item_set_len(si
, size
);
7313 case ARTNET_OP_FILE_FN_MASTER
:
7315 hi
= proto_tree_add_item(artnet_tree
,
7316 hf_artnet_file_fn_master
,
7321 si
= proto_item_add_subtree(hi
, ett_artnet
);
7323 size
= dissect_artnet_file_fn_master( tvb
, offset
, si
);
7326 proto_item_set_len(si
, size
);
7331 case ARTNET_OP_FILE_FN_REPLY
:
7333 hi
= proto_tree_add_item(artnet_tree
,
7334 hf_artnet_file_fn_reply
,
7339 si
= proto_item_add_subtree(hi
, ett_artnet
);
7341 size
= dissect_artnet_file_fn_reply( tvb
, offset
, si
);
7344 proto_item_set_len(si
, size
);
7349 case ARTNET_OP_IP_PROG
:
7351 hi
= proto_tree_add_item(artnet_tree
,
7357 si
= proto_item_add_subtree(hi
, ett_artnet
);
7359 size
= dissect_artnet_ip_prog( tvb
,offset
, si
);
7362 proto_item_set_len(si
, size
);
7367 case ARTNET_OP_IP_PROG_REPLY
:
7369 hi
= proto_tree_add_item(artnet_tree
,
7370 hf_artnet_ip_prog_reply
,
7375 si
= proto_item_add_subtree(hi
, ett_artnet
);
7377 size
= dissect_artnet_ip_prog_reply( tvb
, offset
, si
);
7380 proto_item_set_len(si
, size
);
7387 if (tvb_reported_length_remaining(tvb
, offset
) > 0) {
7388 proto_tree_add_item(artnet_tree
, hf_artnet_data
, tvb
, offset
, -1, ENC_NA
);
7390 return tvb_captured_length(tvb
);
7393 if (tvb_reported_length_remaining(tvb
, offset
) > 0) {
7394 proto_tree_add_item(artnet_tree
, hf_artnet_excess_bytes
, tvb
,
7395 offset
, -1, ENC_NA
);
7397 return tvb_captured_length(tvb
);
7400 /* Heuristic dissector */
7402 dissect_artnet_heur(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
, void *data
)
7406 /* check if we atleast have the 8 byte header */
7407 if (tvb_captured_length(tvb
) < 8)
7410 /* Check the 8 byte header "Art-Net\0" = 0x4172742d4e657400*/
7411 qword
= tvb_get_ntoh64(tvb
,0);
7412 if(qword
!= UINT64_C (0x4172742d4e657400))
7415 /* if the header matches, dissect it */
7416 dissect_artnet(tvb
, pinfo
, tree
, data
);
7422 proto_register_artnet(void) {
7423 static hf_register_info hf
[] = {
7427 { &hf_artnet_excess_bytes
,
7429 "artnet.excess_bytes",
7430 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
7436 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
7439 { &hf_artnet_filler
,
7442 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
7448 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
7453 { &hf_artnet_header
,
7454 { "Descriptor Header",
7456 FT_NONE
, BASE_NONE
, NULL
, 0,
7457 "Art-Net Descriptor Header", HFILL
}},
7459 { &hf_artnet_header_id
,
7462 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
7463 "ArtNET ID", HFILL
}},
7465 { &hf_artnet_header_opcode
,
7467 "artnet.header.opcode",
7468 FT_UINT16
, BASE_HEX
| BASE_EXT_STRING
, &artnet_opcode_vals_ext
, 0x0,
7469 "Art-Net message type", HFILL
}},
7471 { &hf_artnet_header_protver
,
7473 "artnet.header.protver",
7474 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
7475 "Protocol revision number", HFILL
}},
7482 FT_NONE
, BASE_NONE
, NULL
, 0,
7483 "Art-Net ArtPoll packet", HFILL
}},
7485 { &hf_artnet_poll_talktome
,
7487 "artnet.poll.talktome",
7488 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7491 { &hf_artnet_poll_talktome_reply_change
,
7492 { "Send me ArtPollReply on change",
7493 "artnet.poll.talktome_reply_change",
7494 FT_BOOLEAN
, 8, TFS(&tfs_enabled_disabled
), 0x02,
7497 { &hf_artnet_poll_talktome_diag
,
7498 { "Send diagnostics messages",
7499 "artnet.poll.talktome_diag",
7500 FT_BOOLEAN
, 8, TFS(&tfs_enabled_disabled
), 0x04,
7503 { &hf_artnet_poll_talktome_diag_unicast
,
7504 { "Send diagnostics unicast",
7505 "artnet.poll.talktome_diag_unicast",
7506 FT_BOOLEAN
, 8, TFS(&tfs_artnet_talktome_diag_unicast
), 0x08,
7509 { &hf_artnet_poll_talktome_vlc
,
7510 { "VLC transmission",
7511 "artnet.poll.talktome_vlc",
7512 FT_BOOLEAN
, 8, TFS(&tfs_disabled_enabled
), 0x10,
7515 { &hf_artnet_poll_talktome_targeted
,
7517 "artnet.poll.talktome_targeted",
7518 FT_BOOLEAN
, 8, TFS(&tfs_enabled_disabled
), 0x20,
7521 { &hf_artnet_poll_diag_priority
,
7523 "artnet.poll.diag_priority",
7524 FT_UINT8
, BASE_DEC
, VALS(artnet_talktome_diag_priority_vals
), 0x0,
7525 "Minimum diagnostics message priority", HFILL
}},
7527 { &hf_artnet_poll_target_port_top
,
7528 { "Target Port Top",
7529 "artnet.poll.target_port_top",
7530 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
7531 "Top of the port range", HFILL
}},
7533 { &hf_artnet_poll_target_port_bottom
,
7534 { "Target Port Bottom",
7535 "artnet.poll.target_port_bottom",
7536 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
7537 "Bottom of the port range", HFILL
}},
7539 { &hf_artnet_poll_esta_man
,
7541 "artnet.poll.esta_man",
7542 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_esta_man_vals_ext
, 0x0,
7545 { &hf_artnet_poll_oem
,
7548 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_oem_code_vals_ext
, 0x0,
7554 { &hf_artnet_poll_reply
,
7555 { "ArtPollReply packet",
7556 "artnet.poll_reply",
7557 FT_NONE
, BASE_NONE
, NULL
, 0,
7558 "Art-Net ArtPollReply packet", HFILL
}},
7560 { &hf_artnet_poll_reply_ip_address
,
7562 "artnet.poll_reply.ip_address",
7563 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
7566 { &hf_artnet_poll_reply_port_nr
,
7568 "artnet.poll_reply.port_nr",
7569 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
7572 { &hf_artnet_poll_reply_versinfo
,
7574 "artnet.poll_reply.versinfo",
7575 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
7578 { &hf_artnet_poll_reply_netswitch
,
7580 "artnet.poll_reply.netswitch",
7581 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7582 "Bits 14-8 of port address", HFILL
}},
7584 { &hf_artnet_poll_reply_subswitch
,
7586 "artnet.poll_reply.subswitch",
7587 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7588 "Bits 7-4 of port address", HFILL
}},
7590 { &hf_artnet_poll_reply_oem
,
7592 "artnet.poll_reply.oem",
7593 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_oem_code_vals_ext
, 0x0,
7596 { &hf_artnet_poll_reply_ubea_version
,
7598 "artnet.poll_reply.ubea_version",
7599 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
7600 "UBEA version number", HFILL
}},
7602 { &hf_artnet_poll_reply_status
,
7604 "artnet.poll_reply.status",
7605 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7608 { &hf_artnet_poll_reply_status_ubea_present
,
7610 "artnet.poll_reply.ubea_present",
7611 FT_BOOLEAN
, 8, TFS(&tfs_present_absent
), 0x01,
7614 { &hf_artnet_poll_reply_status_rdm_supported
,
7616 "artnet.poll_reply.rdm_supported",
7617 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x02,
7620 { &hf_artnet_poll_reply_status_rom_booted
,
7622 "artnet.poll_reply.rom_booted",
7623 FT_BOOLEAN
, 8, TFS(&tfs_artnet_rom_booted
), 0x04,
7626 { &hf_artnet_poll_reply_status_port_prog
,
7627 { "Port Address Programming Authority",
7628 "artnet.poll_reply.port_prog",
7629 FT_UINT8
, BASE_HEX
, VALS(artnet_port_prog_auth_vals
), 0x30,
7632 { &hf_artnet_poll_reply_status_indicator
,
7633 { "Indicator State",
7634 "artnet.poll_reply.indicator",
7635 FT_UINT8
, BASE_HEX
, VALS(artnet_indicator_state_vals
), 0xC0,
7638 { &hf_artnet_poll_reply_esta_man
,
7640 "artnet.poll_reply.esta_man",
7641 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_esta_man_vals_ext
, 0x0,
7644 { &hf_artnet_poll_reply_short_name
,
7646 "artnet.poll_reply.short_name",
7647 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
7650 { &hf_artnet_poll_reply_long_name
,
7652 "artnet.poll_reply.long_name",
7653 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
7656 { &hf_artnet_poll_reply_node_report
,
7658 "artnet.poll_reply.node_report",
7659 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
7662 { &hf_artnet_poll_reply_port_info
,
7664 "artnet.poll_reply.port_info",
7665 FT_NONE
, BASE_NONE
, NULL
, 0,
7668 { &hf_artnet_poll_reply_num_ports
,
7669 { "Number of Ports",
7670 "artnet.poll_reply.num_ports",
7671 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
7674 { &hf_artnet_poll_reply_port_types
,
7676 "artnet.poll_reply.port_types",
7677 FT_NONE
, BASE_NONE
, NULL
, 0,
7680 { &hf_artnet_poll_reply_port_types_1
,
7682 "artnet.poll_reply.port_types_1",
7683 FT_UINT8
, BASE_HEX
, VALS(artnet_port_type_vals
), 0x0,
7686 { &hf_artnet_poll_reply_port_types_2
,
7688 "artnet.poll_reply.port_types_2",
7689 FT_UINT8
, BASE_HEX
, VALS(artnet_port_type_vals
), 0x0,
7692 { &hf_artnet_poll_reply_port_types_3
,
7694 "artnet.poll_reply.port_types_3",
7695 FT_UINT8
, BASE_HEX
, VALS(artnet_port_type_vals
), 0x0,
7698 { &hf_artnet_poll_reply_port_types_4
,
7700 "artnet.poll_reply.port_types_4",
7701 FT_UINT8
, BASE_HEX
, VALS(artnet_port_type_vals
), 0x0,
7704 { &hf_artnet_poll_reply_good_input
,
7706 "artnet.poll_reply.good_input",
7707 FT_NONE
, BASE_NONE
, NULL
, 0,
7710 { &hf_artnet_poll_reply_good_input_1
,
7711 { "Input status of Port 1",
7712 "artnet.poll_reply.good_input_1",
7713 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7716 { &hf_artnet_poll_reply_good_input_converts_to
,
7717 { "Input converts to",
7718 "artnet.poll_reply.good_input_converts_to",
7719 FT_BOOLEAN
, 8, TFS(&tfs_artnet_poll_reply_tx_and_conversion_proto
), 0x01,
7722 { &hf_artnet_poll_reply_good_input_recv_error
,
7723 { "Receive errors detected",
7724 "artnet.poll_reply.good_input_recv_error",
7725 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x04,
7728 { &hf_artnet_poll_reply_good_input_disabled
,
7729 { "Input is disabled",
7730 "artnet.poll_reply.good_input_disabled",
7731 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x08,
7734 { &hf_artnet_poll_reply_good_input_dmx_text
,
7735 { "DMX text packets supported",
7736 "artnet.poll_reply.good_input_dmx_text",
7737 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x10,
7740 { &hf_artnet_poll_reply_good_input_dmx_sip
,
7741 { "DMX SIPs supported",
7742 "artnet.poll_reply.good_input_dmx_sip",
7743 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x20,
7746 { &hf_artnet_poll_reply_good_input_dmx_test
,
7747 { "DMX test packets supported",
7748 "artnet.poll_reply.good_input_dmx_test",
7749 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x40,
7752 { &hf_artnet_poll_reply_good_input_data
,
7754 "artnet.poll_reply.good_input_data",
7755 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x80,
7758 { &hf_artnet_poll_reply_good_input_2
,
7759 { "Input status of Port 2",
7760 "artnet.poll_reply.good_input_2",
7761 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7764 { &hf_artnet_poll_reply_good_input_3
,
7765 { "Input status of Port 3",
7766 "artnet.poll_reply.good_input_3",
7767 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7770 { &hf_artnet_poll_reply_good_input_4
,
7771 { "Input status of Port 4",
7772 "artnet.poll_reply.good_input_4",
7773 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7776 { &hf_artnet_poll_reply_good_output
,
7778 "artnet.poll_reply.good_output",
7779 FT_NONE
, BASE_NONE
, NULL
, 0,
7780 "Port output status", HFILL
}},
7782 { &hf_artnet_poll_reply_good_output_b
,
7783 { "Output Status (B)",
7784 "artnet.poll_reply.good_output_b",
7785 FT_NONE
, BASE_NONE
, NULL
, 0,
7786 "Port output status (B)", HFILL
}},
7788 { &hf_artnet_poll_reply_good_output_1
,
7789 { "Output status of Port 1",
7790 "artnet.poll_reply.good_output_1",
7791 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7794 { &hf_artnet_poll_reply_good_output_2
,
7795 { "Output status of Port 2",
7796 "artnet.poll_reply.good_output_2",
7797 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7800 { &hf_artnet_poll_reply_good_output_3
,
7801 { "Output status of Port 3",
7802 "artnet.poll_reply.good_output_3",
7803 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7806 { &hf_artnet_poll_reply_good_output_4
,
7807 { "Output status of Port 4",
7808 "artnet.poll_reply.good_output_4",
7809 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7812 { &hf_artnet_poll_reply_good_output_b_1
,
7813 { "Output status (B) of Port 1",
7814 "artnet.poll_reply.good_output_b_1",
7815 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7818 { &hf_artnet_poll_reply_good_output_b_2
,
7819 { "Output status (B) of Port 2",
7820 "artnet.poll_reply.good_output_b_2",
7821 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7824 { &hf_artnet_poll_reply_good_output_b_3
,
7825 { "Output status (B) of Port 3",
7826 "artnet.poll_reply.good_output_b_3",
7827 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7830 { &hf_artnet_poll_reply_good_output_b_4
,
7831 { "Output status (B) of Port 4",
7832 "artnet.poll_reply.good_output_b_4",
7833 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7836 { &hf_artnet_poll_reply_good_output_tx_proto
,
7837 { "Transmit protocol",
7838 "artnet.poll_reply.good_output_tx_proto",
7839 FT_BOOLEAN
, 8, TFS(&tfs_artnet_poll_reply_tx_and_conversion_proto
), 0x01,
7842 { &hf_artnet_poll_reply_good_output_merge_ltp
,
7843 { "Merge mode is LTP",
7844 "artnet.poll_reply.good_output_merge_ltp",
7845 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x02,
7848 { &hf_artnet_poll_reply_good_output_short
,
7849 { "DMX output short circuit",
7850 "artnet.poll_reply.good_output_short",
7851 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x04,
7854 { &hf_artnet_poll_reply_good_output_merge_artnet
,
7855 { "Merging Art-Net data",
7856 "artnet.poll_reply.good_output_merge_artnet",
7857 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x08,
7860 { &hf_artnet_poll_reply_good_output_dmx_text
,
7861 { "DMX text packets supported",
7862 "artnet.poll_reply.good_output_dmx_text",
7863 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x10,
7866 { &hf_artnet_poll_reply_good_output_dmx_sip
,
7867 { "DMX SIPs supported",
7868 "artnet.poll_reply.good_output_dmx_sip",
7869 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x20,
7872 { &hf_artnet_poll_reply_good_output_dmx_test
,
7873 { "DMX test packets supported",
7874 "artnet.poll_reply.good_output_dmx_test",
7875 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x40,
7878 { &hf_artnet_poll_reply_good_output_data
,
7879 { "Data transmitted",
7880 "artnet.poll_reply.good_output_data",
7881 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x80,
7884 { &hf_artnet_poll_reply_good_output_bg_discovery
,
7885 { "Background Discovery",
7886 "artnet.poll_reply.good_output_bg_discovery",
7887 FT_BOOLEAN
, 8, TFS(&tfs_disabled_enabled
), 0x10,
7890 { &hf_artnet_poll_reply_good_output_discovery
,
7892 "artnet.poll_reply.good_output_discovery",
7893 FT_BOOLEAN
, 8, TFS(&tfs_artnet_poll_reply_output_discovery
), 0x20,
7896 { &hf_artnet_poll_reply_good_output_style
,
7898 "artnet.poll_reply.good_output_style",
7899 FT_BOOLEAN
, 8, TFS(&tfs_artnet_poll_reply_output_style
), 0x40,
7902 { &hf_artnet_poll_reply_good_output_rdm
,
7904 "artnet.poll_reply.good_output_rdm",
7905 FT_BOOLEAN
, 8, TFS(&tfs_enabled_disabled
), 0x80,
7908 { &hf_artnet_poll_reply_swin
,
7909 { "Input Subswitch",
7910 "artnet.poll_reply.swin",
7911 FT_NONE
, BASE_NONE
, NULL
, 0,
7914 { &hf_artnet_poll_reply_swin_1
,
7915 { "Input Subswitch of Port 1",
7916 "artnet.poll_reply.swin_1",
7917 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7920 { &hf_artnet_poll_reply_swin_2
,
7921 { "Input Subswitch of Port 2",
7922 "artnet.poll_reply.swin_2",
7923 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7926 { &hf_artnet_poll_reply_swin_3
,
7927 { "Input Subswitch of Port 3",
7928 "artnet.poll_reply.swin_3",
7929 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7932 { &hf_artnet_poll_reply_swin_4
,
7933 { "Input Subswitch of Port 4",
7934 "artnet.poll_reply.swin_4",
7935 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7938 { &hf_artnet_poll_reply_swin_1_universe
,
7939 { "Universe of input port 1",
7940 "artnet.poll_reply.swin_1_universe",
7941 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
7943 { &hf_artnet_poll_reply_swin_2_universe
,
7944 { "Universe of input port 2",
7945 "artnet.poll_reply.swin_2_universe",
7946 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
7948 { &hf_artnet_poll_reply_swin_3_universe
,
7949 { "Universe of input port 3",
7950 "artnet.poll_reply.swin_3_universe",
7951 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
7953 { &hf_artnet_poll_reply_swin_4_universe
,
7954 { "Universe of input port 4",
7955 "artnet.poll_reply.swin_4_universe",
7956 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
7959 { &hf_artnet_poll_reply_swout
,
7960 { "Output Subswitch",
7961 "artnet.poll_reply.swout",
7962 FT_NONE
, BASE_NONE
, NULL
, 0,
7965 { &hf_artnet_poll_reply_swout_1
,
7966 { "Output Subswitch of Port 1",
7967 "artnet.poll_reply.swout_1",
7968 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7971 { &hf_artnet_poll_reply_swout_2
,
7972 { "Output Subswitch of Port 2",
7973 "artnet.poll_reply.swout_2",
7974 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7977 { &hf_artnet_poll_reply_swout_3
,
7978 { "Output Subswitch of Port 3",
7979 "artnet.poll_reply.swout_3",
7980 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7983 { &hf_artnet_poll_reply_swout_4
,
7984 { "Output Subswitch of Port 4",
7985 "artnet.poll_reply.swout_4",
7986 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
7989 { &hf_artnet_poll_reply_swout_1_universe
,
7990 { "Universe of output port 1",
7991 "artnet.poll_reply.swout_1_universe",
7992 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
7994 { &hf_artnet_poll_reply_swout_2_universe
,
7995 { "Universe of output port 2",
7996 "artnet.poll_reply.swout_2_universe",
7997 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
7999 { &hf_artnet_poll_reply_swout_3_universe
,
8000 { "Universe of output port 3",
8001 "artnet.poll_reply.swout_3_universe",
8002 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
8004 { &hf_artnet_poll_reply_swout_4_universe
,
8005 { "Universe of output port 4",
8006 "artnet.poll_reply.swout_4_universe",
8007 FT_UINT16
, BASE_DEC
,NULL
, 0x0,
8010 { &hf_artnet_poll_reply_sacnprio
,
8012 "artnet.poll_reply.sacnprio",
8013 FT_UINT8
, BASE_DEC_HEX
, NULL
, 0x0,
8016 { &hf_artnet_poll_reply_swmacro
,
8018 "artnet.poll_reply.swmacro",
8019 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8020 "Macro key inputs", HFILL
}},
8022 { &hf_artnet_poll_reply_swmacro_1
,
8024 "artnet.poll_reply.swmacro_1",
8025 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x01,
8028 { &hf_artnet_poll_reply_swmacro_2
,
8030 "artnet.poll_reply.swmacro_2",
8031 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x02,
8034 { &hf_artnet_poll_reply_swmacro_3
,
8036 "artnet.poll_reply.swmacro_3",
8037 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x04,
8040 { &hf_artnet_poll_reply_swmacro_4
,
8042 "artnet.poll_reply.swmacro_4",
8043 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x08,
8046 { &hf_artnet_poll_reply_swmacro_5
,
8048 "artnet.poll_reply.swmacro_5",
8049 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x10,
8052 { &hf_artnet_poll_reply_swmacro_6
,
8054 "artnet.poll_reply.swmacro_6",
8055 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x20,
8058 { &hf_artnet_poll_reply_swmacro_7
,
8060 "artnet.poll_reply.swmacro_7",
8061 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x40,
8064 { &hf_artnet_poll_reply_swmacro_8
,
8066 "artnet.poll_reply.swmacro_8",
8067 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x80,
8070 { &hf_artnet_poll_reply_swremote
,
8072 "artnet.poll_reply.swremote",
8073 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8074 "Remote trigger", HFILL
}},
8076 { &hf_artnet_poll_reply_swremote_1
,
8078 "artnet.poll_reply.swremote_1",
8079 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x01,
8082 { &hf_artnet_poll_reply_swremote_2
,
8084 "artnet.poll_reply.swremote_2",
8085 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x02,
8088 { &hf_artnet_poll_reply_swremote_3
,
8090 "artnet.poll_reply.swremote_3",
8091 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x04,
8094 { &hf_artnet_poll_reply_swremote_4
,
8096 "artnet.poll_reply.swremote_4",
8097 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x08,
8100 { &hf_artnet_poll_reply_swremote_5
,
8102 "artnet.poll_reply.swremote_5",
8103 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x10,
8106 { &hf_artnet_poll_reply_swremote_6
,
8108 "artnet.poll_reply.swremote_6",
8109 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x20,
8112 { &hf_artnet_poll_reply_swremote_7
,
8114 "artnet.poll_reply.swremote_7",
8115 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x40,
8118 { &hf_artnet_poll_reply_swremote_8
,
8120 "artnet.poll_reply.swremote_8",
8121 FT_BOOLEAN
, 8, TFS(&tfs_active_inactive
), 0x80,
8124 { &hf_artnet_poll_reply_style
,
8126 "artnet.poll_reply.style",
8127 FT_UINT8
, BASE_HEX
, VALS(vals_artnet_poll_reply_style
), 0x0,
8128 "Equipment style", HFILL
}},
8130 { &hf_artnet_poll_reply_mac
,
8132 "artnet.poll_reply.mac",
8133 FT_ETHER
, BASE_NONE
, NULL
, 0x0,
8136 { &hf_artnet_poll_reply_bind_ip_address
,
8137 { "Bind IP Address",
8138 "artnet.poll_reply.bind_ip_address",
8139 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
8140 "IP address of root device", HFILL
}},
8142 { &hf_artnet_poll_reply_bind_index
,
8144 "artnet.poll_reply.bind_index",
8145 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8148 { &hf_artnet_poll_reply_status2
,
8150 "artnet.poll_reply.status2",
8151 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8154 { &hf_artnet_poll_reply_status2_web_supported
,
8155 { "Web configuration supported",
8156 "artnet.poll_reply.websupport",
8157 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x01,
8160 { &hf_artnet_poll_reply_status2_dhcp_used
,
8161 { "DHCP configuration used",
8162 "artnet.poll_reply.dhcpused",
8163 FT_BOOLEAN
, 8, TFS(&tfs_used_notused
), 0x02,
8166 { &hf_artnet_poll_reply_status2_dhcp_supported
,
8167 { "DHCP configuration supported",
8168 "artnet.poll_reply.dhcpsupport",
8169 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x04,
8172 { &hf_artnet_poll_reply_status2_bigaddr_supported
,
8173 { "Port-Address size",
8174 "artnet.poll_reply.addrsupport",
8175 FT_BOOLEAN
, 8, TFS(&tfs_artnet_poll_reply_status2_bigaddr_supported
), 0x08,
8178 { &hf_artnet_poll_reply_status2_sacn_supported
,
8180 "artnet.poll_reply.sacnsupport",
8181 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x10,
8182 "Switch between Art-Net and sACN (E1.31)", HFILL
}},
8184 { &hf_artnet_poll_reply_status2_squawking
,
8186 "artnet.poll_reply.squawking",
8187 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x20,
8190 { &hf_artnet_poll_reply_status2_output_switching_supported
,
8191 { "Switch output style",
8192 "artnet.poll_reply.switch_output_style",
8193 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x40,
8194 "Switch output style using ArtCommand", HFILL
}},
8196 { &hf_artnet_poll_reply_status2_control_rdm_supported
,
8198 "artnet.poll_reply.control_rdm",
8199 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x80,
8200 "Control RDM using ArtCommand", HFILL
}},
8202 { &hf_artnet_poll_reply_status3
,
8204 "artnet.poll_reply.status3",
8205 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8208 { &hf_artnet_poll_reply_status3_prog_bg_discovery_supported
,
8209 { "Programmable background discovery",
8210 "artnet.poll_reply.bgdiscovery",
8211 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x01,
8214 { &hf_artnet_poll_reply_status3_bg_queue_supported
,
8215 { "Background Queue",
8216 "artnet.poll_reply.bg_queue",
8217 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x02,
8220 { &hf_artnet_poll_reply_status3_rdmnet_supported
,
8222 "artnet.poll_reply.rdmnet",
8223 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x04,
8226 { &hf_artnet_poll_reply_status3_switching_port_supported
,
8227 { "Input/Output switching",
8228 "artnet.poll_reply.switch_ports",
8229 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x08,
8230 "Switch ports between input/output", HFILL
}},
8232 { &hf_artnet_poll_reply_status3_llrp_supported
,
8234 "artnet.poll_reply.llrp",
8235 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x10,
8238 { &hf_artnet_poll_reply_status3_failover_supported
,
8240 "artnet.poll_reply.failover",
8241 FT_BOOLEAN
, 8, TFS(&tfs_supported_not_supported
), 0x20,
8244 { &hf_artnet_poll_reply_status3_failsafe_state
,
8246 "artnet.poll_reply.failsafe_state",
8247 FT_UINT8
, BASE_HEX
, VALS(vals_artnet_poll_reply_status3_failsafe_state
), 0xC0,
8250 { &hf_artnet_poll_reply_default_responder_uid
,
8251 { "Default Responder UID",
8252 "artnet.poll_reply.default_responder_uid",
8253 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8254 "RDMnet & LLRP Default Responder UID", HFILL
}},
8256 { &hf_artnet_poll_reply_node_report_status_code
,
8257 { "Node Report Status Code",
8258 "artnet.poll_reply.node_report_status_code",
8259 FT_UINT16
, BASE_HEX
, VALS(vals_artnet_poll_reply_node_report_status_code
), 0x0,
8262 { &hf_artnet_poll_reply_node_report_response_counter
,
8263 { "Node Report Response Counter",
8264 "artnet.poll_reply.node_report_response_counter",
8265 FT_UINT32
, BASE_DEC
, NULL
, 0x0,
8268 { &hf_artnet_poll_reply_node_report_status_string
,
8269 { "Node Report Status String",
8270 "artnet.poll_reply.node_report_status_string",
8271 FT_STRING
, BASE_NONE
, NULL
, 0x0,
8274 { &hf_artnet_poll_reply_user
,
8275 { "User specific data",
8276 "artnet.poll_reply.user",
8277 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
8280 { &hf_artnet_poll_reply_refreshrate
,
8282 "artnet.poll_reply.refreshrate",
8283 FT_UINT16
, BASE_DEC
|BASE_UNIT_STRING
, UNS(&units_hz
), 0,
8286 { &hf_artnet_poll_reply_bg_queue_policy
,
8287 { "Background Queue Policy",
8288 "artnet.poll_reply.bg_queue_policy",
8289 FT_UINT8
, BASE_DEC
|BASE_RANGE_STRING
, RVALS(vals_artnet_poll_reply_bg_queue_policy
), 0x0,
8294 { &hf_artnet_output
,
8297 FT_NONE
, BASE_NONE
, NULL
, 0,
8298 "Art-Net ArtDMX packet", HFILL
}},
8300 { &hf_artnet_output_sequence
,
8302 "artnet.output.sequence",
8303 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8306 { &hf_artnet_output_physical
,
8308 "artnet.output.physical",
8309 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8312 { &hf_artnet_output_universe
,
8314 "artnet.output.universe",
8315 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
8318 { &hf_artnet_output_length
,
8320 "artnet.output.length",
8321 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
8330 FT_NONE
, BASE_NONE
, NULL
, 0,
8331 "Art-Net ArtSync packet", HFILL
}},
8333 { &hf_artnet_sync_aux
,
8336 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
8345 FT_NONE
, BASE_NONE
, NULL
, 0,
8346 "Art-Net ArtNZS packet", HFILL
}},
8348 { &hf_artnet_nzs_sequence
,
8350 "artnet.nzs.sequence",
8351 FT_UINT8
, BASE_DEC
, NULL
, 0,
8354 { &hf_artnet_nzs_start_code
,
8356 "artnet.nzs.start_code",
8357 FT_UINT8
, BASE_DEC_HEX
, NULL
, 0,
8360 { &hf_artnet_nzs_subuni
,
8362 "artnet.nzs.subuni",
8363 FT_UINT8
, BASE_DEC_HEX
, NULL
, 0,
8366 { &hf_artnet_nzs_net
,
8369 FT_UINT8
, BASE_DEC_HEX
, NULL
, 0,
8372 { &hf_artnet_nzs_length
,
8374 "artnet.nzs.length",
8375 FT_UINT16
, BASE_DEC
, NULL
, 0,
8378 { &hf_artnet_nzs_vlc_man_id
,
8380 "artnet.nzs.vlc_esta_man_id",
8381 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_esta_man_vals_ext
, 0,
8384 { &hf_artnet_nzs_vlc_sub_code
,
8386 "artnet.nzs.vlc_sub_code",
8387 FT_UINT8
, BASE_HEX
, NULL
, 0,
8390 { &hf_artnet_nzs_vlc_flags
,
8392 "artnet.nzs.vlc_flags",
8393 FT_UINT8
, BASE_HEX
, NULL
, 0,
8396 { &hf_artnet_nzs_vlc_flags_beacon
,
8398 "artnet.nzs.vlc_beacon",
8399 FT_BOOLEAN
, 8, TFS(&tfs_artnet_nzs_vlc_beacon
), 0x20,
8402 { &hf_artnet_nzs_vlc_flags_reply
,
8404 "artnet.nzs.vlc_reply",
8405 FT_BOOLEAN
, 8, TFS(&tfs_yes_no
), 0x40,
8408 { &hf_artnet_nzs_vlc_flags_ieee
,
8410 "artnet.nzs.vlc_ieee",
8411 FT_BOOLEAN
, 8, TFS(&tfs_artnet_nzs_vlc_ieee
), 0x80,
8414 { &hf_artnet_nzs_vlc_transaction
,
8415 { "VLC Transaction",
8416 "artnet.nzs.vlc_transaction",
8417 FT_UINT16
, BASE_HEX
, NULL
, 0,
8420 { &hf_artnet_nzs_vlc_slot_addr
,
8421 { "VLC Slot Address",
8422 "artnet.nzs.vlc_slot_addr",
8423 FT_UINT16
, BASE_HEX
, NULL
, 0,
8426 { &hf_artnet_nzs_vlc_payload_size
,
8427 { "VLC Payload Size",
8428 "artnet.nzs.vlc_payload_size",
8429 FT_UINT16
, BASE_HEX
, NULL
, 0,
8432 { &hf_artnet_nzs_vlc_payload_checksum
,
8433 { "VLC Payload Checksum",
8434 "artnet.nzs.vlc_payload_checksum",
8435 FT_UINT16
, BASE_HEX
, NULL
, 0,
8438 { &hf_artnet_nzs_vlc_mod_depth
,
8439 { "VLC Modulation Depth",
8440 "artnet.nzs.vlc_mod_depth",
8441 FT_UINT8
, BASE_DEC
|BASE_UNIT_STRING
, UNS(&units_percent
), 0,
8444 { &hf_artnet_nzs_vlc_mod_freq
,
8445 { "VLC Modulation Frequency",
8446 "artnet.nzs.vlc_mod_freq",
8447 FT_UINT16
, BASE_DEC
|BASE_UNIT_STRING
, UNS(&units_hz
), 0,
8450 { &hf_artnet_nzs_vlc_mod_type
,
8451 { "VLC Modulation Type",
8452 "artnet.nzs.vlc_mod_type",
8453 FT_UINT16
, BASE_HEX
, NULL
, 0,
8456 { &hf_artnet_nzs_vlc_lang_code
,
8457 { "VLC Payload Language Code",
8458 "artnet.nzs.vlc_lang_code",
8459 FT_UINT16
, BASE_HEX
, VALS(vals_artnet_nzs_vlc_lang_code
), 0,
8462 { &hf_artnet_nzs_vlc_beacon_repeat
,
8463 { "VLC Beacon Repeat Frequency",
8464 "artnet.nzs.vlc_beacon_freq",
8465 FT_UINT16
, BASE_DEC
|BASE_UNIT_STRING
, UNS(&units_hz
), 0,
8468 { &hf_artnet_nzs_vlc_payload
,
8470 "artnet.nzs.vlc_payload",
8471 FT_BYTES
, BASE_NONE
, NULL
, 0,
8474 { &hf_artnet_nzs_vlc_payload_beacon_url
,
8475 { "VLC Payload (Beacon URL)",
8476 "artnet.nzs.vlc_payload_beacon_url",
8477 FT_STRING
, BASE_NONE
, NULL
, 0,
8480 { &hf_artnet_nzs_vlc_payload_beacon_text
,
8481 { "VLC Payload (Beacon Text)",
8482 "artnet.nzs.vlc_payload_beacon_text",
8483 FT_STRING
, BASE_NONE
, NULL
, 0,
8486 { &hf_artnet_nzs_vlc_payload_beacon_location_id
,
8487 { "VLC Payload (Beacon Location ID)",
8488 "artnet.nzs.vlc_payload_beacon_location_id",
8489 FT_UINT16
, BASE_DEC_HEX
, NULL
, 0,
8494 { &hf_artnet_address
,
8495 { "ArtAddress packet",
8497 FT_NONE
, BASE_NONE
, NULL
, 0,
8498 "Art-Net ArtAddress packet", HFILL
}},
8500 { &hf_artnet_address_netswitch_special
,
8502 "artnet.address.netswitch_special",
8503 FT_UINT8
, BASE_HEX
, VALS(artnet_address_switch_vals
), 0,
8506 { &hf_artnet_address_netswitch_net
,
8508 "artnet.address.netswitch_net",
8509 FT_UINT8
, BASE_DEC
, NULL
, 0x7F,
8512 { &hf_artnet_address_netswitch_write
,
8514 "artnet.address.netswitch_write",
8515 FT_BOOLEAN
, 8, NULL
, 0x80,
8518 { &hf_artnet_address_bind_index
,
8520 "artnet.address.bind_index",
8521 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8524 { &hf_artnet_address_short_name
,
8526 "artnet.address.short_name",
8527 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
8530 { &hf_artnet_address_long_name
,
8532 "artnet.address.long_name",
8533 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
8536 { &hf_artnet_address_swin
,
8537 { "Input Subswitch",
8538 "artnet.address.swin",
8539 FT_NONE
, BASE_NONE
, NULL
, 0,
8542 { &hf_artnet_address_swin_1
,
8543 { "Input Subswitch of Port 1",
8544 "artnet.address.swin_1",
8545 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8548 { &hf_artnet_address_swin_2
,
8549 { "Input Subswitch of Port 2",
8550 "artnet.address.swin_2",
8551 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8554 { &hf_artnet_address_swin_3
,
8555 { "Input Subswitch of Port 3",
8556 "artnet.address.swin_3",
8557 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8560 { &hf_artnet_address_swin_4
,
8561 { "Input Subswitch of Port 4",
8562 "artnet.address.swin_4",
8563 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8566 { &hf_artnet_address_swout
,
8567 { "Output Subswitch",
8568 "artnet.address.swout",
8569 FT_NONE
, BASE_NONE
, NULL
, 0,
8572 { &hf_artnet_address_swout_1
,
8573 { "Output Subswitch of Port 1",
8574 "artnet.address.swout_1",
8575 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8578 { &hf_artnet_address_swout_2
,
8579 { "Output Subswitch of Port 2",
8580 "artnet.address.swout_2",
8581 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8584 { &hf_artnet_address_swout_3
,
8585 { "Output Subswitch of Port 3",
8586 "artnet.address.swout_3",
8587 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8590 { &hf_artnet_address_swout_4
,
8591 { "Output Subswitch of Port 4",
8592 "artnet.address.swout_4",
8593 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8596 { &hf_artnet_address_subswitch_special
,
8598 "artnet.address.subswitch_special",
8599 FT_UINT8
, BASE_HEX
, VALS(artnet_address_switch_vals
), 0,
8602 { &hf_artnet_address_subswitch_sub
,
8604 "artnet.address.subswitch_sub",
8605 FT_UINT8
, BASE_DEC
, NULL
, 0x0F,
8608 { &hf_artnet_address_subswitch_write
,
8610 "artnet.address.subswitch_write",
8611 FT_BOOLEAN
, 8, NULL
, 0x80,
8614 { &hf_artnet_address_sacnprio
,
8616 "artnet.address.sacnprio",
8617 FT_UINT8
, BASE_DEC_HEX
, NULL
, 0x0,
8620 { &hf_artnet_address_command
,
8622 "artnet.address.command",
8623 FT_UINT8
, BASE_HEX
, VALS(artnet_address_command_vals
), 0x0,
8629 { "ArtInput packet",
8631 FT_NONE
, BASE_NONE
, NULL
, 0,
8632 "Art-Net ArtInput packet", HFILL
}},
8634 { &hf_artnet_input_bind_index
,
8636 "artnet.input.bind_index",
8637 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8640 { &hf_artnet_input_num_ports
,
8641 { "Number of Ports",
8642 "artnet.input.num_ports",
8643 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
8646 { &hf_artnet_input_input
,
8648 "artnet.input.input",
8649 FT_NONE
, BASE_NONE
, NULL
, 0,
8652 { &hf_artnet_input_input_1
,
8653 { "Status of Port 1",
8654 "artnet.input.input_1",
8655 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8658 { &hf_artnet_input_input_2
,
8659 { "Status of Port 2",
8660 "artnet.input.input_2",
8661 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8664 { &hf_artnet_input_input_3
,
8665 { "Status of Port 3",
8666 "artnet.input.input_3",
8667 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8670 { &hf_artnet_input_input_4
,
8671 { "Status of Port 4",
8672 "artnet.input.input_4",
8673 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8676 { &hf_artnet_input_input_disabled
,
8678 "artnet.input.disabled",
8679 FT_BOOLEAN
, 8, NULL
, 0xff,
8682 /* ArtFirmwareMaster */
8684 { &hf_artnet_firmware_master
,
8685 { "ArtFirmwareMaster packet",
8686 "artnet.firmware_master",
8687 FT_NONE
, BASE_NONE
, NULL
, 0,
8688 "Art-Net ArtFirmwareMaster packet", HFILL
}},
8690 { &hf_artnet_firmware_master_type
,
8692 "artnet.firmware_master.type",
8693 FT_UINT8
, BASE_HEX
, VALS(artnet_firmware_master_type_vals
), 0x0,
8694 "Number of Ports", HFILL
}},
8696 { &hf_artnet_firmware_master_block_id
,
8698 "artnet.firmware_master.block_id",
8699 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8702 { &hf_artnet_firmware_master_length
,
8704 "artnet.firmware_master.length",
8705 FT_UINT32
, BASE_DEC
, NULL
, 0x0,
8708 { &hf_artnet_firmware_master_data
,
8710 "artnet.firmware_master.data",
8711 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8714 /* ArtFirmwareReply */
8716 { &hf_artnet_firmware_reply
,
8717 { "ArtFirmwareReply packet",
8718 "artnet.firmware_reply",
8719 FT_NONE
, BASE_NONE
, NULL
, 0,
8720 "Art-Net ArtFirmwareReply packet", HFILL
}},
8722 { &hf_artnet_firmware_reply_type
,
8724 "artnet.firmware_reply.type",
8725 FT_UINT8
, BASE_HEX
, VALS(artnet_firmware_reply_type_vals
), 0x0,
8726 "Number of Ports", HFILL
}},
8730 { &hf_artnet_video_setup_control
,
8732 "artnet.video_setup.control",
8733 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8736 { &hf_artnet_video_setup_font_height
,
8738 "artnet.video_setup.font_height",
8739 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8742 { &hf_artnet_video_setup_first_font
,
8744 "artnet.video_setup.first_font",
8745 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8748 { &hf_artnet_video_setup_last_font
,
8750 "artnet.video_setup.last_font",
8751 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8754 { &hf_artnet_video_setup_win_font_name
,
8755 { "Windows Font Name",
8756 "artnet.video_setup.win_font_name",
8757 FT_STRING
, BASE_NONE
, NULL
, 0x0,
8760 { &hf_artnet_video_setup_font_data
,
8762 "artnet.video_setup.font_data",
8763 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8764 "Font Date", HFILL
}},
8766 /* ArtVideoPalette */
8768 { &hf_artnet_video_palette_colour_red
,
8770 "artnet.video_palette.colour_red",
8771 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8774 { &hf_artnet_video_palette_colour_green
,
8776 "artnet.video_palette.colour_green",
8777 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8780 { &hf_artnet_video_palette_colour_blue
,
8782 "artnet.video_palette.colour_blue",
8783 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8788 { &hf_artnet_video_data_pos_x
,
8790 "artnet.video_data.pos_x",
8791 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8794 { &hf_artnet_video_data_pos_y
,
8796 "artnet.video_data.pos_y",
8797 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8800 { &hf_artnet_video_data_len_x
,
8802 "artnet.video_data.len_x",
8803 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8806 { &hf_artnet_video_data_len_y
,
8808 "artnet.video_data.len_y",
8809 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8812 { &hf_artnet_video_data_data
,
8814 "artnet.video_data.data",
8815 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8820 { &hf_artnet_tod_request
,
8821 { "ArtTodRequest packet",
8822 "artnet.tod_request",
8823 FT_NONE
, BASE_NONE
, NULL
, 0,
8824 "Art-Net ArtTodRequest packet", HFILL
}},
8826 { &hf_artnet_tod_request_net
,
8828 "artnet.tod_request.net",
8829 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8832 { &hf_artnet_tod_request_command
,
8834 "artnet.tod_request.command",
8835 FT_UINT8
, BASE_HEX
, VALS(artnet_tod_request_command_vals
), 0x0,
8838 { &hf_artnet_tod_request_ad_count
,
8840 "artnet.tod_request.ad_count",
8841 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8844 { &hf_artnet_tod_request_address
,
8846 "artnet.tod_request.address",
8847 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8852 { &hf_artnet_tod_data
,
8853 { "ArtTodData packet",
8855 FT_NONE
, BASE_NONE
, NULL
, 0,
8856 "Art-Net ArtTodData packet", HFILL
}},
8858 { &hf_artnet_tod_data_rdm_ver
,
8860 "artnet.tod_data.rdm_ver",
8861 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8864 { &hf_artnet_tod_data_port
,
8866 "artnet.tod_data.port",
8867 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8870 { &hf_artnet_tod_data_bind_index
,
8872 "artnet.tod_data.bind_index",
8873 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8876 { &hf_artnet_tod_data_net
,
8878 "artnet.tod_data.net",
8879 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8882 { &hf_artnet_tod_data_command_response
,
8883 { "Command Response",
8884 "artnet.tod_data.command_response",
8885 FT_UINT8
, BASE_HEX
, VALS(artnet_tod_data_command_vals
), 0x0,
8888 { &hf_artnet_tod_data_address
,
8890 "artnet.tod_data.address",
8891 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8894 { &hf_artnet_tod_data_uid_total
,
8896 "artnet.tod_data.uid_total",
8897 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
8900 { &hf_artnet_tod_data_block_count
,
8902 "artnet.tod_data.block_count",
8903 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8906 { &hf_artnet_tod_data_uid_count
,
8908 "artnet.tod_data.uid_count",
8909 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8912 { &hf_artnet_tod_data_tod
,
8914 "artnet.tod_data.tod",
8915 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
8920 { &hf_artnet_tod_control
,
8921 { "ArtTodControl packet",
8922 "artnet.tod_control",
8923 FT_NONE
, BASE_NONE
, NULL
, 0,
8924 "Art-Net ArtTodControl packet", HFILL
}},
8926 { &hf_artnet_tod_control_net
,
8928 "artnet.tod_control.net",
8929 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8930 "Top 7 bits of the port address", HFILL
}},
8932 { &hf_artnet_tod_control_command
,
8934 "artnet.tod_control.command",
8935 FT_UINT8
, BASE_HEX
, VALS(artnet_tod_control_command_vals
), 0x0,
8938 { &hf_artnet_tod_control_address
,
8940 "artnet.tod_control.address",
8941 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8942 "Lower byte of the port address", HFILL
}},
8944 { &hf_artnet_tod_control_universe
,
8946 "artnet.tod_control.universe",
8947 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
8955 FT_NONE
, BASE_NONE
, NULL
, 0,
8956 "Art-Net ArtRdm packet", HFILL
}},
8958 { &hf_artnet_rdm_command
,
8960 "artnet.rdm.command",
8961 FT_UINT8
, BASE_HEX
, VALS(artnet_rdm_command_vals
), 0x0,
8964 { &hf_artnet_rdm_address
,
8966 "artnet.rdm.address",
8967 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8970 { &hf_artnet_rdm_sc
,
8973 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8976 { &hf_artnet_rdm_rdmver
,
8978 "artnet.rdm.rdmver",
8979 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
8982 { &hf_artnet_rdm_fifo_avail
,
8983 { "Transmit Queue Available",
8984 "artnet.rdm.fifo_avail",
8985 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8988 { &hf_artnet_rdm_fifo_max
,
8989 { "Transmit Queue Maximum",
8990 "artnet.rdm.fifo_max",
8991 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
8994 { &hf_artnet_rdm_net
,
8997 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
9002 { &hf_artnet_rdm_sub
,
9003 { "ArtRdmSub packet",
9005 FT_NONE
, BASE_NONE
, NULL
, 0,
9006 "Art-Net ArtRdmSub packet", HFILL
}},
9008 { &hf_artnet_rdm_sub_uid
,
9010 "artnet.rdm_sub.uid",
9011 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9014 { &hf_artnet_rdm_sub_command_class
,
9016 "artnet.rdm_sub.command_class",
9017 FT_UINT8
, BASE_HEX
, VALS(artnet_cc_vals
), 0x0,
9020 { &hf_artnet_rdm_sub_pid
,
9022 "artnet.rdm_sub.param_id",
9023 FT_UINT16
, BASE_HEX
| BASE_EXT_STRING
, &rdm_param_id_vals_ext
, 0x0,
9026 { &hf_artnet_rdm_sub_sub_device
,
9028 "artnet.rdm_sub.sub_device",
9029 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
9032 { &hf_artnet_rdm_sub_sub_count
,
9034 "artnet.rdm_sub.sub_count",
9035 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
9038 { &hf_artnet_rdm_sub_data
,
9040 "artnet.rdm_sub.data",
9041 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9046 { &hf_artnet_ip_prog
,
9047 { "ArtIpProg packet",
9049 FT_NONE
, BASE_NONE
, NULL
, 0,
9050 "ArtNET ArtIpProg packet", HFILL
}},
9052 { &hf_artnet_ip_prog_command
,
9054 "artnet.ip_prog.command",
9055 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
9058 { &hf_artnet_ip_prog_command_prog_port
,
9060 "artnet.ip_prog.command_prog_port",
9061 FT_BOOLEAN
, 8, NULL
, 0x01,
9064 { &hf_artnet_ip_prog_command_prog_sm
,
9065 { "Program Subnet Mask",
9066 "artnet.ip_prog.command_prog_sm",
9067 FT_BOOLEAN
, 8, NULL
, 0x02,
9070 { &hf_artnet_ip_prog_command_prog_ip
,
9072 "artnet.ip_prog.command_prog_ip",
9073 FT_BOOLEAN
, 8, NULL
, 0x04,
9076 { &hf_artnet_ip_prog_command_reset
,
9077 { "Reset Parameters",
9078 "artnet.ip_prog.command_reset",
9079 FT_BOOLEAN
, 8, NULL
, 0x08,
9082 { &hf_artnet_ip_prog_command_gw
,
9083 { "Program Default Gateway",
9084 "artnet.ip_prog.command_prog_gw",
9085 FT_BOOLEAN
, 8, NULL
, 0x10,
9088 { &hf_artnet_ip_prog_command_unused
,
9090 "artnet.ip_prog.command_unused",
9091 FT_UINT8
, BASE_HEX
, NULL
, 0x20,
9094 { &hf_artnet_ip_prog_command_dhcp_enable
,
9096 "artnet.ip_prog.command_dhcp_enable",
9097 FT_BOOLEAN
, 8, NULL
, 0x40,
9100 { &hf_artnet_ip_prog_command_prog_enable
,
9101 { "Enable Programming",
9102 "artnet.ip_prog.command_prog_enable",
9103 FT_BOOLEAN
, 8, NULL
, 0x80,
9106 { &hf_artnet_ip_prog_ip
,
9108 "artnet.ip_prog.ip",
9109 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
9112 { &hf_artnet_ip_prog_sm
,
9114 "artnet.ip_prog.sm",
9115 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
9116 "IP Subnet mask", HFILL
}},
9118 { &hf_artnet_ip_prog_port
,
9120 "artnet.ip_prog.port",
9121 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
9124 { &hf_artnet_ip_prog_gw
,
9125 { "Default Gateway",
9126 "artnet.ip_prog.gw",
9127 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
9131 /* ArtIpProgReply */
9133 { &hf_artnet_ip_prog_reply
,
9134 { "ArtIpProgReply packet",
9135 "artnet.ip_prog_reply",
9136 FT_NONE
, BASE_NONE
, NULL
, 0,
9137 "Art-Net ArtIpProgReply packet", HFILL
}},
9139 { &hf_artnet_ip_prog_reply_ip
,
9141 "artnet.ip_prog_reply.ip",
9142 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
9145 { &hf_artnet_ip_prog_reply_sm
,
9147 "artnet.ip_prog_reply.sm",
9148 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
9149 "IP Subnet mask", HFILL
}},
9151 { &hf_artnet_ip_prog_reply_port
,
9153 "artnet.ip_prog_reply.port",
9154 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
9157 { &hf_artnet_ip_prog_reply_gw
,
9158 { "Default Gateway",
9159 "artnet.ip_prog_reply.gw",
9160 FT_IPv4
, BASE_NONE
, NULL
, 0x0,
9163 { &hf_artnet_ip_prog_reply_status
,
9165 "artnet.ip_prog_reply.status",
9166 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
9169 { &hf_artnet_ip_prog_reply_status_unused
,
9171 "artnet.ip_prog_reply.unused",
9172 FT_UINT8
, BASE_HEX
, NULL
, 0xbf,
9175 { &hf_artnet_ip_prog_reply_status_dhcp_enable
,
9177 "artnet.ip_prog_reply.status_dhcp_enable",
9178 FT_BOOLEAN
, 8, NULL
, 0x40,
9181 /* ArtPollServerReply */
9183 { &hf_artnet_poll_fp_reply
,
9184 { "ArtPollFpReply packet",
9185 "artnet.poll_fp_reply",
9186 FT_NONE
, BASE_NONE
, NULL
, 0,
9187 "Art-Net ArtPollFpReply packet", HFILL
}},
9191 { &hf_artnet_diag_data
,
9192 { "ArtDiagData packet",
9194 FT_NONE
, BASE_NONE
, NULL
, 0,
9195 "Art-Net ArtDiagData packet", HFILL
}},
9197 { &hf_artnet_diag_data_priority
,
9199 "artnet.diag_data.priority",
9200 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
9203 { &hf_artnet_diag_data_port
,
9205 "artnet.diag_data.port",
9206 FT_UINT8
, BASE_DEC_HEX
, NULL
, 0x0,
9209 { &hf_artnet_diag_data_length
,
9211 "artnet.diag_data.length",
9212 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
9215 { &hf_artnet_diag_data_data
,
9217 "artnet.diag_data.data",
9218 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
9223 { &hf_artnet_command
,
9224 { "ArtCommand packet",
9226 FT_NONE
, BASE_NONE
, NULL
, 0,
9227 "Art-Net ArtCommand packet", HFILL
}},
9229 { &hf_artnet_command_esta_man
,
9231 "artnet.command.esta_man",
9232 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_esta_man_vals_ext
, 0x0,
9235 { &hf_artnet_command_length
,
9237 "artnet.command.length",
9238 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
9241 { &hf_artnet_command_data
,
9243 "artnet.command_data.data",
9244 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
9247 /* ArtDataRequest */
9249 { &hf_artnet_data_request
,
9250 { "ArtDataRequest packet",
9251 "artnet.data_request",
9252 FT_NONE
, BASE_NONE
, NULL
, 0,
9253 "Art-Net ArtDataRequest packet", HFILL
}},
9255 { &hf_artnet_data_request_esta_man
,
9257 "artnet.data_request.esta_man",
9258 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_esta_man_vals_ext
, 0x0,
9261 { &hf_artnet_data_request_oem
,
9263 "artnet.data_request.oem",
9264 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_oem_code_vals_ext
, 0x0,
9267 { &hf_artnet_data_request_request
,
9269 "artnet.data_request.request",
9270 FT_UINT16
, BASE_HEX
|BASE_RANGE_STRING
, RVALS(artnet_data_request_vals
), 0x0,
9273 { &hf_artnet_data_request_spare
,
9275 "artnet.data_request.spare",
9276 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9281 { &hf_artnet_data_reply
,
9282 { "ArtDataReply packet",
9283 "artnet.data_reply",
9284 FT_NONE
, BASE_NONE
, NULL
, 0,
9285 "Art-Net ArtDataReply packet", HFILL
}},
9287 { &hf_artnet_data_reply_esta_man
,
9289 "artnet.data_reply.esta_man",
9290 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_esta_man_vals_ext
, 0x0,
9293 { &hf_artnet_data_reply_oem
,
9295 "artnet.data_reply.oem",
9296 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_oem_code_vals_ext
, 0x0,
9299 { &hf_artnet_data_reply_request
,
9301 "artnet.data_reply.request",
9302 FT_UINT16
, BASE_HEX
|BASE_RANGE_STRING
, RVALS(artnet_data_request_vals
), 0x0,
9305 { &hf_artnet_data_reply_payload_length
,
9307 "artnet.data_reply.payload_length",
9308 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
9311 { &hf_artnet_data_reply_payload
,
9313 "artnet.data_reply.payload",
9314 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
9319 { "ArtMedia packet",
9321 FT_NONE
, BASE_NONE
, NULL
, 0,
9322 "Art-Net ArtMedia packet", HFILL
}},
9325 { &hf_artnet_media_patch
,
9326 { "ArtMediaPatch packet",
9327 "artnet.media_patch",
9328 FT_NONE
, BASE_NONE
, NULL
, 0,
9329 "Art-Net ArtMediaPatch packet", HFILL
}},
9331 /* ArtMediaControl */
9332 { &hf_artnet_media_control
,
9333 { "ArtMediaControl packet",
9334 "artnet.media_control",
9335 FT_NONE
, BASE_NONE
, NULL
, 0,
9336 "Art-Net ArtMediaControl packet", HFILL
}},
9338 /* ArtMediaControlReply */
9339 { &hf_artnet_media_control_reply
,
9340 { "ArtMediaControlReply packet",
9341 "artnet.media_control_reply",
9342 FT_NONE
, BASE_NONE
, NULL
, 0,
9343 "Art-Net ArtMediaControlReply packet", HFILL
}},
9346 { &hf_artnet_time_code
,
9347 { "ArtTimeCode packet",
9349 FT_NONE
, BASE_NONE
, NULL
, 0,
9350 "Art-Net ArtTimeCode packet", HFILL
}},
9352 { &hf_artnet_time_code_stream_id
,
9354 "artnet.time_code.stream_id",
9355 FT_UINT8
, BASE_DEC_HEX
, NULL
, 0,
9358 { &hf_artnet_time_code_frames
,
9360 "artnet.time_code.frames",
9361 FT_UINT8
, BASE_DEC
, NULL
, 0,
9364 { &hf_artnet_time_code_seconds
,
9366 "artnet.time_code.seconds",
9367 FT_UINT8
, BASE_DEC
, NULL
, 0,
9370 { &hf_artnet_time_code_minutes
,
9372 "artnet.time_code.minutes",
9373 FT_UINT8
, BASE_DEC
, NULL
, 0,
9376 { &hf_artnet_time_code_hours
,
9378 "artnet.time_code.hours",
9379 FT_UINT8
, BASE_DEC
, NULL
, 0,
9382 { &hf_artnet_time_code_type
,
9384 "artnet.time_code.type",
9385 FT_UINT8
, BASE_DEC
, VALS(artnet_time_code_vals
), 0,
9389 { &hf_artnet_time_sync
,
9390 { "ArtTimeSync packet",
9392 FT_NONE
, BASE_NONE
, NULL
, 0,
9393 "Art-Net ArtTimeSync packet", HFILL
}},
9396 { &hf_artnet_trigger
,
9397 { "ArtTrigger packet",
9399 FT_NONE
, BASE_NONE
, NULL
, 0,
9400 "Art-Net ArtTrigger packet", HFILL
}},
9402 { &hf_artnet_trigger_oem
,
9404 "artnet.trigger.oem",
9405 FT_UINT16
, BASE_HEX
|BASE_EXT_STRING
, &artnet_oem_code_vals_ext
, 0x0,
9408 { &hf_artnet_trigger_key
,
9410 "artnet.trigger.key",
9411 FT_UINT8
, BASE_HEX_DEC
, 0, 0x0,
9414 { &hf_artnet_trigger_key_unspecific
,
9415 { "Key (unspecific)",
9416 "artnet.trigger.key_unspecific",
9417 FT_UINT8
, BASE_HEX
, VALS(artnet_trigger_key_vals
), 0x0,
9418 "Key (not specific to manufacturer)", HFILL
}},
9420 { &hf_artnet_trigger_subkey
,
9422 "artnet.trigger.subkey",
9423 FT_UINT8
, BASE_HEX_DEC
, 0, 0x0,
9426 { &hf_artnet_trigger_data
,
9428 "artnet.trigger.data",
9429 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9433 { &hf_artnet_directory
,
9434 { "ArtDirectory packet",
9436 FT_NONE
, BASE_NONE
, NULL
, 0,
9437 "Art-Net ArtDirectory packet", HFILL
}},
9439 { &hf_artnet_directory_filler
,
9441 "artnet.directory.filler",
9442 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9445 { &hf_artnet_directory_cmd
,
9447 "artnet.directory.cmd",
9448 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
9451 { &hf_artnet_directory_file
,
9453 "artnet.directory.file",
9454 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
9457 /* ArtDirectoryReply */
9458 { &hf_artnet_directory_reply
,
9459 { "ArtDirectoryReply packet",
9460 "artnet.directory_reply",
9461 FT_NONE
, BASE_NONE
, NULL
, 0,
9462 "Art-Net ArtDirectoryReply packet", HFILL
}},
9464 { &hf_artnet_directory_reply_filler
,
9466 "artnet.directory_reply.filler",
9467 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9470 { &hf_artnet_directory_reply_flags
,
9472 "artnet.directory_reply.flags",
9473 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
9476 { &hf_artnet_directory_reply_file
,
9478 "artnet.directory_reply.file",
9479 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
9482 { &hf_artnet_directory_reply_name
,
9484 "artnet.directory_reply.name",
9485 FT_STRING
, BASE_NONE
, NULL
, 0x0,
9488 { &hf_artnet_directory_reply_desc
,
9490 "artnet.directory_reply.desc",
9491 FT_STRING
, BASE_NONE
, NULL
, 0x0,
9494 { &hf_artnet_directory_reply_length
,
9496 "artnet.directory_reply.length",
9497 FT_UINT64
, BASE_DEC
, NULL
, 0x0,
9500 { &hf_artnet_directory_reply_data
,
9502 "artnet.directory_reply.data",
9503 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9507 { &hf_artnet_mac_master
,
9508 { "ArtMacMaster packet",
9509 "artnet.mac_master",
9510 FT_NONE
, BASE_NONE
, NULL
, 0,
9511 "Art-Net ArtMacMaster packet", HFILL
}},
9514 { &hf_artnet_mac_slave
,
9515 { "ArtMacSlave packet",
9517 FT_NONE
, BASE_NONE
, NULL
, 0,
9518 "Art-Net ArtMacSlave packet", HFILL
}},
9520 /* ArtFileTnMaster */
9521 { &hf_artnet_file_tn_master
,
9522 { "ArtFileTnMaster packet",
9523 "artnet.file_tn_master",
9524 FT_NONE
, BASE_NONE
, NULL
, 0,
9525 "Art-Net ArtFileTnMaster packet", HFILL
}},
9527 { &hf_artnet_file_tn_master_filler
,
9529 "artnet.file_tn_master.filler",
9530 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9533 { &hf_artnet_file_tn_master_type
,
9535 "artnet.file_tn_master.type",
9536 FT_UINT8
, BASE_HEX
, VALS(artnet_file_type_vals
), 0x0,
9539 { &hf_artnet_file_tn_master_block_id
,
9541 "artnet.file_tn_master.block_id",
9542 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
9545 { &hf_artnet_file_tn_master_length
,
9547 "artnet.file_tn_master.length",
9548 FT_UINT32
, BASE_DEC
, NULL
, 0x0,
9551 { &hf_artnet_file_tn_master_name
,
9553 "artnet.file_tn_master.name",
9554 FT_STRINGZ
, BASE_NONE
, NULL
, 0x0,
9557 { &hf_artnet_file_tn_master_checksum
,
9559 "artnet.file_tn_master.checksum",
9560 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
9563 { &hf_artnet_file_tn_master_spare
,
9565 "artnet.file_tn_master.spare",
9566 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9569 { &hf_artnet_file_tn_master_data
,
9571 "artnet.file_tn_master.data",
9572 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
9575 /* ArtFileFnMaster */
9576 { &hf_artnet_file_fn_master
,
9577 { "ArtFileFnMaster packet",
9578 "artnet.file_fn_master",
9579 FT_NONE
, BASE_NONE
, NULL
, 0,
9580 "Art-Net ArtFileFnMaster packet", HFILL
}},
9582 /* ArtFileFnReply */
9583 { &hf_artnet_file_fn_reply
,
9584 { "ArtFileFnReply packet",
9585 "artnet.file_fn_reply",
9586 FT_NONE
, BASE_NONE
, NULL
, 0,
9587 "Art-Net ArtFileFnReply packet", HFILL
}}
9591 static ei_register_info ei
[] = {
9592 { &ei_artnet_poll_reply_bind_ip_without_index
,
9593 { "artnet.poll_reply.bind_ip_without_index", PI_MALFORMED
, PI_WARN
,
9594 "Bind IP address set without bind index", EXPFILL
}
9596 { &ei_artnet_poll_reply_bind_index_without_ip
,
9597 { "artnet.poll_reply.bind_index_without_ip", PI_MALFORMED
, PI_WARN
,
9598 "Bind index set without bind IP address", EXPFILL
}
9600 { &ei_artnet_poll_reply_node_report_invalid_format
,
9601 { "artnet.poll_reply.node_report_format_invalid", PI_MALFORMED
, PI_WARN
,
9602 "Node report has invalid format.", EXPFILL
}
9606 static int *ett
[] = {
9608 &ett_artnet_poll_talktome
,
9609 &ett_artnet_poll_reply_status
,
9610 &ett_artnet_poll_reply_good_input_1
,
9611 &ett_artnet_poll_reply_good_input_2
,
9612 &ett_artnet_poll_reply_good_input_3
,
9613 &ett_artnet_poll_reply_good_input_4
,
9614 &ett_artnet_poll_reply_good_output_1
,
9615 &ett_artnet_poll_reply_good_output_2
,
9616 &ett_artnet_poll_reply_good_output_3
,
9617 &ett_artnet_poll_reply_good_output_4
,
9618 &ett_artnet_poll_reply_good_output_b_1
,
9619 &ett_artnet_poll_reply_good_output_b_2
,
9620 &ett_artnet_poll_reply_good_output_b_3
,
9621 &ett_artnet_poll_reply_good_output_b_4
,
9622 &ett_artnet_poll_reply_swmacro
,
9623 &ett_artnet_poll_reply_swremote
,
9624 &ett_artnet_poll_reply_status2
,
9625 &ett_artnet_poll_reply_status3
,
9626 &ett_artnet_ip_prog_command
,
9627 &ett_artnet_ip_prog_reply_status
,
9628 &ett_artnet_address_netswitch
,
9629 &ett_artnet_address_subswitch
,
9630 &ett_artnet_input_input_1
,
9631 &ett_artnet_input_input_2
,
9632 &ett_artnet_input_input_3
,
9633 &ett_artnet_input_input_4
,
9634 &ett_artnet_nzs_vlc_flags
9637 proto_artnet
= proto_register_protocol("Art-Net", "ARTNET", "artnet");
9638 proto_register_field_array(proto_artnet
, hf
, array_length(hf
));
9639 proto_register_subtree_array(ett
, array_length(ett
));
9641 expert_artnet
= expert_register_protocol(proto_artnet
);
9642 expert_register_field_array(expert_artnet
, ei
, array_length(ei
));
9644 artnet_handle
= register_dissector("artnet", dissect_artnet
, proto_artnet
);
9648 proto_reg_handoff_artnet(void) {
9649 dissector_add_for_decode_as_with_preference("udp.port", artnet_handle
);
9650 rdm_handle
= find_dissector_add_dependency("rdm", proto_artnet
);
9651 dmx_chan_handle
= find_dissector_add_dependency("dmx-chan", proto_artnet
);
9653 heur_dissector_add("udp", dissect_artnet_heur
, "ARTNET over UDP", "artnet_udp", proto_artnet
, HEURISTIC_ENABLE
);
9662 * indent-tabs-mode: nil
9665 * ex: set shiftwidth=2 tabstop=8 expandtab:
9666 * :indentSize=2:tabSize=8:noTabs=true: