/* packet-artnet.c * Routines for Art-Net packet disassembly * * Copyright (c) 2003, 2011 by Erwin Rol * Copyright (c) 2014 by Claudius Zingerli * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1999 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #include #include "packet-rdm.h" /* * See * * Protocol Spec: http://www.artisticlicence.com/WebSiteMaster/User%20Guides/art-net.pdf * OEM Codes: https://artisticlicence.com/WebSiteMaster/Software/Art-Net/Art-NetOemCodes.h * ESTA Codes: https://tsp.esta.org/tsp/working_groups/CP/mfctrIDs.php */ void proto_register_artnet(void); void proto_reg_handoff_artnet(void); /* Define udp_port for ArtNET */ #define UDP_PORT_ARTNET 0x1936 #define ARTNET_HEADER_LENGTH 10 #define ARTNET_POLL_LENGTH 4 #define ARTNET_POLL_REPLY_LENGTH 197 #define ARTNET_POLL_REPLY_PORT_INFO_LENGTH 22 #define ARTNET_POLL_REPLY_PORT_TYPES_LENGTH 4 #define ARTNET_POLL_REPLY_GOOD_INPUT_LENGTH 4 #define ARTNET_POLL_REPLY_GOOD_OUTPUT_LENGTH 4 #define ARTNET_POLL_REPLY_SWIN_LENGTH 4 #define ARTNET_POLL_REPLY_SWOUT_LENGTH 4 #define ARTNET_ADDRESS_LENGTH 95 #define ARTNET_ADDRESS_SWIN_LENGTH 4 #define ARTNET_ADDRESS_SWOUT_LENGTH 4 #define ARTNET_OUTPUT_LENGTH 1 #define ARTNET_INPUT_LENGTH 10 #define ARTNET_INPUT_INPUT_LENGTH 4 #define ARTNET_FIRMWARE_MASTER_LENGTH 1035 #define ARTNET_FIRMWARE_REPLY_LENGTH 27 #define ARTNET_VIDEO_SETUP_LENGTH 74 #define ARTNET_VIDEO_PALETTE_LENGTH 55 #define ARTNET_VIDEO_DATA_LENGTH 8 #define ARTNET_OP_POLL 0x2000 #define ARTNET_OP_POLL_REPLY 0x2100 #define ARTNET_OP_POLL_FP_REPLY 0x2200 #define ARTNET_OP_DIAG_DATA 0x2300 #define ARTNET_OP_COMMAND 0x2400 #define ARTNET_OP_OUTPUT 0x5000 #define ARTNET_OP_NZS 0x5100 #define ARTNET_OP_SYNC 0x5200 #define ARTNET_OP_ADDRESS 0x6000 #define ARTNET_OP_INPUT 0x7000 #define ARTNET_OP_TOD_REQUEST 0x8000 #define ARTNET_OP_TOD_DATA 0x8100 #define ARTNET_OP_TOD_CONTROL 0x8200 #define ARTNET_OP_RDM 0x8300 #define ARTNET_OP_RDM_SUB 0x8400 #define ARTNET_OP_MEDIA 0x9000 #define ARTNET_OP_MEDIA_PATCH 0x9100 #define ARTNET_OP_MEDIA_CONTROL 0x9200 #define ARTNET_OP_MEDIA_CONTRL_REPLY 0x9300 #define ARTNET_OP_TIME_CODE 0x9700 #define ARTNET_OP_TIME_SYNC 0x9800 #define ARTNET_OP_TRIGGER 0x9900 #define ARTNET_OP_DIRECTORY 0x9a00 #define ARTNET_OP_DIRECTORY_REPLY 0x9b00 #define ARTNET_OP_VIDEO_SETUP 0xa010 #define ARTNET_OP_VIDEO_PALETTE 0xa020 #define ARTNET_OP_VIDEO_DATA 0xa040 #define ARTNET_OP_MAC_MASTER 0xf000 #define ARTNET_OP_MAC_SLAVE 0xf100 #define ARTNET_OP_FIRMWARE_MASTER 0xf200 #define ARTNET_OP_FIRMWARE_REPLY 0xf300 #define ARTNET_OP_FILE_TN_MASTER 0xf400 #define ARTNET_OP_FILE_FN_MASTER 0xf500 #define ARTNET_OP_FILE_FN_REPLY 0xf600 #define ARTNET_OP_IP_PROG 0xf800 #define ARTNET_OP_IP_PROG_REPLY 0xf900 static const value_string artnet_opcode_vals[] = { { ARTNET_OP_POLL, "ArtPoll" }, { ARTNET_OP_POLL_REPLY, "ArtPollReply" }, { ARTNET_OP_POLL_FP_REPLY, "ArtPollFpReply" }, { ARTNET_OP_DIAG_DATA, "ArtDiagData" }, { ARTNET_OP_COMMAND, "ArtCommand" }, { ARTNET_OP_OUTPUT, "ArtDMX" }, { ARTNET_OP_NZS, "ArtNzs" }, { ARTNET_OP_SYNC, "ArtSync" }, { ARTNET_OP_ADDRESS, "ArtAddress" }, { ARTNET_OP_INPUT, "ArtInput" }, { ARTNET_OP_TOD_REQUEST, "ArtTodRequest" }, { ARTNET_OP_TOD_DATA, "ArtTodData" }, { ARTNET_OP_TOD_CONTROL, "ArtTodControl" }, { ARTNET_OP_RDM, "ArtRdm" }, { ARTNET_OP_RDM_SUB, "ArtRdmSub" }, { ARTNET_OP_MEDIA, "ArtMedia" }, { ARTNET_OP_MEDIA_PATCH, "ArtMediaPatch" }, { ARTNET_OP_MEDIA_CONTROL, "ArtMediaControl" }, { ARTNET_OP_MEDIA_CONTRL_REPLY, "ArtMediaContrlReply" }, { ARTNET_OP_TIME_CODE, "ArtTimeCode" }, { ARTNET_OP_TIME_SYNC, "ArtTimeSync" }, { ARTNET_OP_TRIGGER, "ArtTrigger" }, { ARTNET_OP_DIRECTORY, "ArtDirectory" }, { ARTNET_OP_DIRECTORY_REPLY, "ArtDirectoryReply" }, { ARTNET_OP_VIDEO_SETUP, "ArtVideoSetup" }, { ARTNET_OP_VIDEO_PALETTE, "ArtVideoPalette" }, { ARTNET_OP_VIDEO_DATA, "ArtVideoData" }, { ARTNET_OP_MAC_MASTER, "ArtMacMaster" }, { ARTNET_OP_MAC_SLAVE, "ArtMacSlave" }, { ARTNET_OP_FIRMWARE_MASTER, "ArtFirmwareMaster" }, { ARTNET_OP_FIRMWARE_REPLY, "ArtFirmwareReply" }, { ARTNET_OP_FILE_TN_MASTER, "ArtfileTnMaster" }, { ARTNET_OP_FILE_FN_MASTER, "ArtfileFnMaster" }, { ARTNET_OP_FILE_FN_REPLY, "ArtfileFnReply" }, { ARTNET_OP_IP_PROG, "ArtIpProg" }, { ARTNET_OP_IP_PROG_REPLY, "ArtIpProgReply" }, { 0, NULL } }; static value_string_ext artnet_opcode_vals_ext = VALUE_STRING_EXT_INIT(artnet_opcode_vals); static const value_string artnet_oem_code_vals[] = { { 0x0000, "Artistic Licence Engineering Ltd: Dmx-Hub" }, { 0x0001, "ADB: Netgate" }, { 0x0002, "Artistic Licence Engineering Ltd: MAHub" }, { 0x0003, "Artistic Licence Engineering Ltd: Ether-Lynx I" }, { 0x0004, "Lew Light: Lew Light" }, { 0x0005, "High End Systems: High End Systems" }, { 0x0006, "Avolites: Dimmer" }, { 0x0007, "Artistic Licence Engineering Ltd: Art-Net II Processor" }, { 0x0010, "Artistic Licence Engineering Ltd: Down-Link" }, { 0x0011, "Artistic Licence Engineering Ltd: Up-Link" }, { 0x0012, "Artistic Licence Engineering Ltd: Truss-Link OP" }, { 0x0013, "Artistic Licence Engineering Ltd: Truss-Link IP" }, { 0x0014, "Artistic Licence Engineering Ltd: Net-Link OP" }, { 0x0015, "Artistic Licence Engineering Ltd: Net-Link IP" }, { 0x0016, "Artistic Licence Engineering Ltd: Radio-Link OP" }, { 0x0017, "Artistic Licence Engineering Ltd: Radio-Link IP" }, { 0x0030, "Doug Fleenor Design Inc: DFD DL" }, { 0x0031, "Doug Fleenor Design Inc: DFD UL" }, { 0x0050, "Goddard Design Company: GDC DL" }, { 0x0051, "Goddard Design Company: GDC UL" }, { 0x0070, "ADB: ADB Down-Link" }, { 0x0071, "ADB: ADB Up-Link" }, { 0x0072, "ADB: ADB WiFi" }, { 0x0080, "Artistic Licence Engineering Ltd: AL 0 Down" }, { 0x0081, "Artistic Licence Engineering Ltd: AL 0 Up" }, { 0x0082, "Artistic Licence Engineering Ltd: AL 1 Down" }, { 0x0083, "Artistic Licence Engineering Ltd: AL 1 Up" }, { 0x0084, "Artistic Licence Engineering Ltd: AL 2 Down" }, { 0x0085, "Artistic Licence Engineering Ltd: AL 2 Up" }, { 0x0086, "Artistic Licence Engineering Ltd: AL 3 Down" }, { 0x0087, "Artistic Licence Engineering Ltd: AL 3 Up" }, { 0x0088, "Artistic Licence Engineering Ltd: AL 4 Down" }, { 0x0089, "Artistic Licence Engineering Ltd: AL 4 Up" }, { 0x008A, "Artistic Licence Engineering Ltd: AL 5 Down" }, { 0x008B, "Artistic Licence Engineering Ltd: AL 5 Up" }, { 0x008C, "Zero 88: Zero Out2" }, { 0x008D, "Zero 88: Zero In2" }, { 0x008E, "Flying Pig Systems: FP Out2" }, { 0x008F, "Flying Pig Systems: FP In2" }, { 0x0090, "ELC: Two Port Node" }, { 0x0091, "ELC: Four Port Node" }, { 0x00FF, "Artistic Licence Engineering Ltd: OemUnknown" }, { 0x0100, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 0" }, { 0x0101, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 1" }, { 0x0102, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 2" }, { 0x0103, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 3" }, { 0x0104, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 4" }, { 0x0105, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 5" }, { 0x0106, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 6" }, { 0x0107, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 7" }, { 0x0108, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 8" }, { 0x0109, "Artistic Licence Engineering Ltd: Ether-Lynx Exp 9" }, { 0x010A, "Artistic Licence Engineering Ltd: Ether-Lynx Exp a" }, { 0x010B, "Artistic Licence Engineering Ltd: Ether-Lynx Exp b" }, { 0x010C, "Artistic Licence Engineering Ltd: Ether-Lynx Exp c" }, { 0x010D, "Artistic Licence Engineering Ltd: Ether-Lynx Exp d" }, { 0x010E, "Artistic Licence Engineering Ltd: Ether-Lynx Exp e" }, { 0x010F, "Artistic Licence Engineering Ltd: Ether-Lynx Exp f" }, { 0x0110, "Artistic Licence Engineering Ltd: Cata-Lynx" }, { 0x0111, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 1" }, { 0x0112, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 2" }, { 0x0113, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 3" }, { 0x0114, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 4" }, { 0x0115, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 5" }, { 0x0116, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 6" }, { 0x0117, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 7" }, { 0x0118, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 8" }, { 0x0119, "Artistic Licence Engineering Ltd: Cata-Lynx Exp 9" }, { 0x011A, "Artistic Licence Engineering Ltd: Cata-Lynx Exp a" }, { 0x011B, "Artistic Licence Engineering Ltd: Cata-Lynx Exp b" }, { 0x011C, "Artistic Licence Engineering Ltd: Cata-Lynx Exp c" }, { 0x011D, "Artistic Licence Engineering Ltd: Cata-Lynx Exp d" }, { 0x011E, "Artistic Licence Engineering Ltd: Cata-Lynx Exp e" }, { 0x011F, "Artistic Licence Engineering Ltd: Cata-Lynx Exp f" }, { 0x0120, "Artistic Licence Engineering Ltd: Pixi-Power F1a" }, { 0x0180, "Martin: Maxxyz Node" }, { 0x0181, "Martin: P3 System Controller" }, { 0x0190, "Enttec: Enttec 0" }, { 0x0191, "Enttec: Enttec 1" }, { 0x0192, "Enttec: Enttec 2" }, { 0x0193, "Enttec: Enttec 3" }, { 0x0194, "Enttec: Enttec 4" }, { 0x0195, "Enttec: Enttec 5" }, { 0x0196, "Enttec: Enttec 6" }, { 0x0197, "Enttec: Enttec 7" }, { 0x0198, "Enttec: Enttec 8" }, { 0x0199, "Enttec: Enttec 9" }, { 0x019A, "Enttec: Enttec a" }, { 0x019B, "Enttec: Enttec b" }, { 0x019C, "Enttec: Enttec c" }, { 0x019D, "Enttec: Enttec d" }, { 0x019E, "Enttec: Enttec e" }, { 0x019F, "Enttec: Enttec f" }, { 0x01A0, "LES: PBX" }, { 0x01A1, "LES: Executive" }, { 0x01A2, "LES: Matrix" }, { 0x01A3, "LES: LES 3" }, { 0x01A4, "LES: LES 4" }, { 0x01A5, "LES: LES 5" }, { 0x01A6, "LES: LES 6" }, { 0x01A7, "LES: LES 7" }, { 0x01A8, "LES: LES 8" }, { 0x01A9, "LES: LES 9" }, { 0x01AA, "LES: LES a" }, { 0x01AB, "LES: LES b" }, { 0x01AC, "LES: LES c" }, { 0x01AD, "LES: LES d" }, { 0x01AE, "LES: LES e" }, { 0x01AF, "LES: LES f" }, { 0x01B0, "EDI: Edig" }, { 0x01C0, "Nondim Enterprises: Openlux" }, { 0x01D0, "Green Hippo: Hippotizer" }, { 0x01E0, "VNR: Merger-Booster" }, { 0x01F0, "Robe: ILE" }, { 0x01F1, "Robe: Robe 4-4" }, { 0x0210, "Artistic Licence Engineering Ltd: Down-Lynx 2" }, { 0x0211, "Artistic Licence Engineering Ltd: Up-Lynx 2" }, { 0x0212, "Artistic Licence Engineering Ltd: Truss-Lynx 2" }, { 0x0213, "Artistic Licence Engineering Ltd: Truss-Lynx 2" }, { 0x0214, "Artistic Licence Engineering Ltd: Net-Lynx OP 2" }, { 0x0215, "Artistic Licence Engineering Ltd: Net-Lynx IP 2" }, { 0x0216, "Artistic Licence Engineering Ltd: Radio-Lynx OP 2" }, { 0x0217, "Artistic Licence Engineering Ltd: Radio-Lynx IP 2" }, { 0x0230, "Doug Fleenor Design Inc: DFD Dlynx 2" }, { 0x0231, "Doug Fleenor Design Inc: DFD Ulynx 2" }, { 0x0250, "Goddard Design Company: GDC Dlynx 2" }, { 0x0251, "Goddard Design Company: GDC Ulynx 2" }, { 0x0270, "ADB: ADB Down-Lynx 2" }, { 0x0271, "ADB: ADB Up-Lynx 2" }, { 0x0280, "LSC: LSC Down-Lynx 2" }, { 0x0281, "LSC: LSC Up-Lynx 2" }, { 0x0282, "Artistic Licence Engineering Ltd: AL OEM D1" }, { 0x0283, "Artistic Licence Engineering Ltd: AL OEM U1" }, { 0x0284, "Artistic Licence Engineering Ltd: AL OEM D2" }, { 0x0285, "Artistic Licence Engineering Ltd: AL OEM U2" }, { 0x0286, "Artistic Licence Engineering Ltd: AL OEM D3" }, { 0x0287, "Artistic Licence Engineering Ltd: AL OEM U3" }, { 0x0288, "Artistic Licence Engineering Ltd: AL OEM D4" }, { 0x0289, "Artistic Licence Engineering Ltd: AL OEM U4" }, { 0x028A, "Artistic Licence Engineering Ltd: AL OEM D5" }, { 0x028B, "Artistic Licence Engineering Ltd: AL OEM U5" }, { 0x0300, "Gold Stage: DMX-net-O" }, { 0x0301, "Gold Stage: DMX-net-I" }, { 0x0302, "Gold Stage: OemGold2" }, { 0x0303, "Gold Stage: OemGold3" }, { 0x0304, "Gold Stage: GT-96" }, { 0x0305, "Gold Stage: Goldstage III Light Console" }, { 0x0306, "Gold Stage: OemGold6" }, { 0x0307, "Gold Stage: OemGold7" }, { 0x0308, "Gold Stage: KTG-55 Dimmer" }, { 0x0309, "Gold Stage: OemGold9" }, { 0x030A, "Gold Stage: OemGolda" }, { 0x030B, "Gold Stage: OemGoldb" }, { 0x030C, "Gold Stage: OemGoldc" }, { 0x030D, "Gold Stage: OemGoldd" }, { 0x030E, "Gold Stage: OemGolde" }, { 0x030F, "Gold Stage: OemGoldf" }, { 0x0310, "Sunset Dynamics: StarGateDMX" }, { 0x0320, "Luminex LCE: Ethernet-DMX8" }, { 0x0321, "Luminex LCE: Ethernet-DMX2" }, { 0x0322, "Luminex LCE: Ethernet-DMX4" }, { 0x0323, "Luminex LCE: LumiNet Monitor" }, { 0x0330, "Invisible Rival: Blue Hysteria" }, { 0x0340, "Avolites: Diamond 4 Vision" }, { 0x0341, "Avolites: Diamond 4 elite" }, { 0x0342, "Avolites: Peal offline " }, { 0x0343, "Avolites: Titan" }, { 0x0350, "Bigfoot: EtherMux Remote" }, { 0x0351, "Bigfoot: EtherMux Server" }, { 0x0352, "Bigfoot: EtherMux Desktop" }, { 0x0360, "Ecue: Ecue 512" }, { 0x0361, "Ecue: Ecue 1024" }, { 0x0362, "Ecue: Ecue 2048" }, { 0x0370, "Kiss-Box: DMX Box" }, { 0x0380, "Arkaos: V J DMX" }, { 0x0390, "Digital Enlightenment: ShowGate" }, { 0x03A0, "DES: NELI" }, { 0x03B0, "Nicolaudie: Easy" }, { 0x03B1, "Nicolaudie: Magic 3D" }, { 0x03C0, "Catalyst: Catalyst" }, { 0x03D0, "Bleasdale: PixelMad" }, { 0x03E0, "Lehigh Electric Products Co: DX2 Dimming Rack" }, { 0x03F0, "Horizon: Horizon Controller" }, { 0x0400, "Audio Scene: OemAudioSceneO" }, { 0x0401, "Audio Scene: OemAudioSceneI" }, { 0x0410, "Pathport: 2 out" }, { 0x0411, "Pathport: 2 in" }, { 0x0412, "Pathport: 1 out" }, { 0x0413, "Pathport: 1 in" }, { 0x0420, "Botex: OemBotex1" }, { 0x0430, "Simon Newton: LibArtNet" }, { 0x0431, "Simon Newton: LLA Live" }, { 0x0440, "XLNT: OemTeamXlntIp" }, { 0x0441, "XLNT: OemTeamXlntOp" }, { 0x0450, "Schnick-Schnack-Systems: Systemnetzteil 4E" }, { 0x0451, "Schnick-Schnack-Systems: SysOne" }, { 0x0452, "Schnick-Schnack-Systems: Pix Gate" }, { 0x0460, "Dom Dv: NetDmx" }, { 0x0470, "Sean Christopher: Projection Pal" }, { 0x0471, "Sean Christopher: The Lighting Remote" }, { 0x0472, "LSS Lighting: MasterGate Profibus interface" }, { 0x0473, "LSS Lighting: Rail Controller Profibus" }, { 0x0474, "LSS Lighting: Master Port Mini" }, { 0x0475, "LSS Lighting: Powerdim" }, { 0x0490, "Open Clear: OemOpenClear0" }, { 0x0491, "Open Clear: OemOpenClear1" }, { 0x0492, "Open Clear: OemOpenClear2" }, { 0x0493, "Open Clear: OemOpenClear3" }, { 0x0494, "Open Clear: OemOpenClear4" }, { 0x0495, "Open Clear: OemOpenClear5" }, { 0x0496, "Open Clear: OemOpenClear6" }, { 0x0497, "Open Clear: OemOpenClear7" }, { 0x0498, "Open Clear: OemOpenClear8" }, { 0x0499, "Open Clear: OemOpenClear9" }, { 0x049A, "Open Clear: OemOpenCleara" }, { 0x049B, "Open Clear: OemOpenClearb" }, { 0x049C, "Open Clear: OemOpenClearc" }, { 0x049D, "Open Clear: OemOpenCleard" }, { 0x049E, "Open Clear: OemOpenCleare" }, { 0x049F, "Open Clear: OemOpenClearf" }, { 0x04B0, "MA Lighting: 2 Port Node" }, { 0x04B1, "MA Lighting: Nsp" }, { 0x04B2, "MA Lighting: Ndp" }, { 0x04B3, "MA Lighting: Remote" }, { 0x04B4, "MA Lighting: GrandMA2 Consoles and OnPC" }, { 0x04B5, "MA Lighting: VPU" }, { 0x04B6, "MA Lighting: MA 2,4,8 Port Node, programmable io" }, { 0x04B7, "MA Lighting: Dot2 console and Dot2OnPC" }, { 0x04B8, "MA Lighting: Dot2 VPU" }, { 0x04B9, "MA Lighting: Dot2 X-Port nodes" }, { 0x04BA, "MA Lighting: OemMaa" }, { 0x04BB, "MA Lighting: OemMab" }, { 0x04BC, "MA Lighting: OemMac" }, { 0x04BD, "MA Lighting: OemMad" }, { 0x04BE, "MA Lighting: OemMae" }, { 0x04BF, "MA Lighting: OemMaf" }, { 0x04C0, "inoage: Madrix 2" }, { 0x04C1, "GLP: Ion.control.pc" }, { 0x04C2, "inoage: Snuffler" }, { 0x04C3, "inoage: PLEXUS" }, { 0x04C4, "inoage: MADRIX 3" }, { 0x04C5, "inoage: LUNA 8" }, { 0x04C6, "inoage: OemMadrix6" }, { 0x04C7, "inoage: LUNA 4" }, { 0x04C8, "inoage: LUNA 16" }, { 0x04C9, "inoage: Nebula" }, { 0x04CA, "inoage: Stella" }, { 0x04CB, "inoage: Orion" }, { 0x04CC, "inoage: Madrix5" }, { 0x04CD, "inoage: OemMadrixd" }, { 0x04CE, "inoage: OemMadrixe" }, { 0x04CF, "inoage: OemMadrixf" }, { 0x04D0, "Team Projects: Xilver Controller" }, { 0x04E0, "Wybron: PSU. 2 " }, { 0x04F0, "Pharos Architectural Controls: LPCX" }, { 0x04F1, "Pharos Architectural Controls: OemPharosLpc1" }, { 0x04F2, "Pharos Architectural Controls: OemPharosLpc2" }, { 0x04F3, "Pharos Architectural Controls: OemPharos3" }, { 0x04F4, "Pharos Architectural Controls: OemPharos4" }, { 0x04F5, "Pharos Architectural Controls: OemPharos5" }, { 0x04F6, "Pharos Architectural Controls: OemPharos6" }, { 0x04F7, "Pharos Architectural Controls: OemPharos7" }, { 0x04F8, "Pharos Architectural Controls: OemPharos8" }, { 0x04F9, "Pharos Architectural Controls: OemPharos9" }, { 0x04FA, "Pharos Architectural Controls: OemPharosa" }, { 0x04FB, "Pharos Architectural Controls: OemPharosb" }, { 0x04FC, "Pharos Architectural Controls: OemPharosc" }, { 0x04FD, "Pharos Architectural Controls: OemPharosd" }, { 0x04FE, "Pharos Architectural Controls: OemPharose" }, { 0x04FF, "Pharos Architectural Controls: OemPharosf" }, { 0x0500, "HES: DP8000-16" }, { 0x0501, "HES: DP8000-12" }, { 0x0502, "HES: DP2000" }, { 0x0600, "Spectrum Manufacturing: Chroma-Q PSU32" }, { 0x0610, "DmxDesign: EthDec2" }, { 0x0620, "WodieLite: ArtMedia" }, { 0x0800, "Element Labs: Vizomo" }, { 0x0810, "Dataton: Watchout" }, { 0x0820, "Barco: Barco DML-120" }, { 0x0821, "Barco: FLM" }, { 0x0822, "Barco: CLM" }, { 0x0830, "City Theatrical: SHoW DMX Transmitter" }, { 0x0831, "City Theatrical : SHoW DMX Neo Transceiver" }, { 0x0840, "Quantukm Logic : DMX Ethernet Node" }, { 0x0850, "LSS Lighting: MasterSwitch" }, { 0x0851, "LSS Lighting: MasterPort4" }, { 0x0852, "LSS Lighting: MasterPortPSU" }, { 0x0853, "LSS Lighting: DMX-View" }, { 0x0860, "Future Design ApS: FD ART-NET-Trio" }, { 0x0870, "Qmaxz Lighting: QME700P" }, { 0x0871, "Lux Lumen: Lux Node" }, { 0x0880, "Martin: Ether2DMX8 Node" }, { 0x0890, "PHOENIXstudios Remsfeld: DIMMER ShowGate" }, { 0x0891, "LaserAnimation Sollinger GmbH: Lasergraph DSP" }, { 0x0892, "LaserAnimation Sollinger GmbH : Lasergraph DSP" }, { 0x08A0, "COEMAR: Infinity Spot S" }, { 0x08A1, "COEMAR: Infinity Wash S" }, { 0x08A2, "COEMAR: Infinity ACL S" }, { 0x08A3, "COEMAR: Infinity Spot XL" }, { 0x08A4, "COEMAR: Infinity Wash XL" }, { 0x08A5, "COEMAR: DR1+" }, { 0x08A6, "COEMAR: Infinity Spot M" }, { 0x08A7, "COEMAR: Infinity Wash M" }, { 0x08A8, "COEMAR: Infinity ACL M" }, { 0x08B0, "DMXControl: DMXControl" }, { 0x08B1, "DMXControl: AvrArtNode" }, { 0x08C0, "ChamSys: MagicQ " }, { 0x08D0, "Fisher Technical Services Inc: Navigator Automation System" }, { 0x08E0, "Electric Spark: VPIX40" }, { 0x08F0, "JSC: ArtGate Pro 1P" }, { 0x08F1, "JSC: ArtGate Pro 2P" }, { 0x08F2, "JSC: ArtGate Pro 4P" }, { 0x0900, "EQUIPSON S.A.: WORK LM-3R" }, { 0x0901, "EQUIPSON S.A.: WORK LM-3E" }, { 0x0910, "TecArt Lighting: 1CH Node" }, { 0x0911, "TecArt Lighting: Ethernet Merger" }, { 0x0912, "TecArt Lighting: 2CH Node" }, { 0x0920, "Cooper Controls t/a Zero 88: ORB," }, { 0x0921, "Cooper Controls t/a Zero 88: ORBxf" }, { 0x0922, "Cooper Controls t/a Zero 88: Zero-Wire CRMX TX RDM" }, { 0x0923, "Cooper Controls t/a Zero 88: Solution" }, { 0x0924, "Cooper Controls t/a Zero 88: Solution XL" }, { 0x0925, "Cooper Controls t/a Zero 88: EtherN.2 RDM" }, { 0x0926, "Cooper Controls t/a Zero 88: EtherN.8 RDM" }, { 0x0930, "EQUIPSON S.A.: WORK LM-4" }, { 0x0940, "Laser Technology Ltd.: LasNet" }, { 0x0950, "LSS Lighting: Discovery" }, { 0x0960, "JPK Systems Limited: OemJpk1" }, { 0x0961, "JPK Systems Limited: OemJpk2" }, { 0x0962, "JPK Systems Limited: OemJpk3" }, { 0x0963, "JPK Systems Limited: OemJpk4" }, { 0x0964, "JPK Systems Limited: OemJpk5" }, { 0x0965, "JPK Systems Limited: OemJpk6" }, { 0x0966, "JPK Systems Limited: OemJpk7" }, { 0x0967, "JPK Systems Limited: OemJpk8" }, { 0x0968, "JPK Systems Limited: OemJpk9" }, { 0x0969, "JPK Systems Limited: OemJpk10" }, { 0x096A, "JPK Systems Limited: OemJpk11" }, { 0x096B, "JPK Systems Limited: OemJpk12" }, { 0x096C, "JPK Systems Limited: OemJpk13" }, { 0x096D, "JPK Systems Limited: OemJpk14" }, { 0x096E, "JPK Systems Limited: OemJpk15" }, { 0x096F, "JPK Systems Limited: OemJpk16" }, { 0x0970, "Fresnel / Strong: Power 12-3 TR-Net" }, { 0x0971, "Fresnel S.A. / Strong: Nocturne Stage Control" }, { 0x0972, "Fresnel S.A. / Strong: Ethernet-DMX" }, { 0x0980, "Prism Projection: RevEAL" }, { 0x0990, "Moving Art: M-NET" }, { 0x09A0, "HPL LIGHT COMPANY: DIMMER POWER LIGHT" }, { 0x09B0, "Engineering Solutions Inc.: Tripix controller" }, { 0x09B1, "Engineering Solutions Inc.: E16 RGB Node Driver" }, { 0x09B2, "Engineering Solutions Inc.: E8 RGB Node Driver" }, { 0x09B3, "Engineering Solutions Inc.: E4 RGB Node Driver" }, { 0x09C0, "SAND Network Systems: SandPort/SandBox" }, { 0x09D0, "Oarw: Screen Monkey" }, { 0x09E0, "Mueller Elektronik: NetLase" }, { 0x09F0, "LumenRadio AB: CRMX Nova TX2" }, { 0x09F1, "LumenRadio AB: CRMX Nova TX2 RDM" }, { 0x09F2, "LumenRadio AB: CRMX Nova FX" }, { 0x09F3, "LumenRadio AB: CRMX Nova FX2" }, { 0x09F4, "LumenRadio AB: CRMX Outdoor F1ex" }, { 0x09F5, "LumenRadio AB: SuperNova" }, { 0x0A00, "SRS Light Design: NDP12 - Network Dimmer Pack" }, { 0x0A10, "VYV Corporation: Photon" }, { 0x0A20, "CDS: LanBox-LCX" }, { 0x0A21, "CDS: LanBox-LCE" }, { 0x0A22, "CDS: LanBox-LCP" }, { 0x0A30, "Total Light: ArtMx Single" }, { 0x0A31, "Total Light: ArtMx Dual" }, { 0x0A40, "Shanghai SeaChip Electronics Co.,Ltd.: SC-DMX-2000" }, { 0x0A50, "Synthe FX: Luminair" }, { 0x0A51, "Synthe FX: Pixelnode" }, { 0x0A60, "Goddard Design Company: OemGodAL5001" }, { 0x0A61, "Goddard Design Company: OemGodDataLynxOp" }, { 0x0A62, "Goddard Design Company: OemGodRailLynxOp" }, { 0x0A63, "Goddard Design Company: OemGodDownLynx4" }, { 0x0A64, "Goddard Design Company: OemGodNetLynxOp4" }, { 0x0A65, "Goddard Design Company: OemGodAL5002" }, { 0x0A66, "Goddard Design Company: OemGodDataLynxIp" }, { 0x0A67, "Goddard Design Company: OemGodCataLynxNt" }, { 0x0A68, "Goddard Design Company: OemGodRailLynxIp" }, { 0x0A69, "Goddard Design Company: OemGodUpLynx4" }, { 0x0A6A, "Goddard Design Company: OemGodNetLynxIp4" }, { 0x0A6B, "Goddard Design Company: OemGodArtBoot" }, { 0x0A6C, "Goddard Design Company: OemGodArtLynxOp" }, { 0x0A6D, "Goddard Design Company: OemGodArtLynxIp" }, { 0x0A6E, "Goddard Design Company: OemGodEtherLynxII" }, { 0x0A80, "Clay Paky S.p.A. : Alpha Spot HPE 700" }, { 0x0A81, "Clay Paky S.p.A. : Alpha Beam 700" }, { 0x0A82, "Clay Paky S.p.A. : Alpha Wash 700" }, { 0x0A83, "Clay Paky S.p.A. : Alpha Profile 700" }, { 0x0A84, "Clay Paky S.p.A. : Alpha Beam 1500" }, { 0x0A85, "Clay Paky S.p.A. : Alpha Wash LT1500" }, { 0x0A86, "Clay Paky S.p.A. : Alpha Spot HPE 1500" }, { 0x0A87, "Clay Paky S.p.A. : Alpha Profile 1500" }, { 0x0A88, "Clay Paky S.p.A. : Alpha Wash 1500" }, { 0x0A89, "Clay Paky S.p.A. : Sharpy" }, { 0x0A8A, "Clay Paky S.p.A. : Shot Light Wash" }, { 0x0A8B, "Clay Paky S.p.A. : Alpha Spot QWO800" }, { 0x0A8C, "Clay Paky S.p.A. : Alpha Profile 1500Q" }, { 0x0A8D, "Clay Paky S.p.A. : Alpha Profile 800" }, { 0x0A8E, "Clay Paky S.p.A. : Aleda K5 " }, { 0x0A8F, "Clay Paky S.p.A. : Aleda K10 " }, { 0x0A90, "Clay Paky S.p.A. : Aleda K20 " }, { 0x0A91, "Clay Paky S.p.A. : Sharpy Wash " }, { 0x0A92, "Clay Paky S.p.A. : Aleda K10 B-Eye Easy " }, { 0x0A93, "Clay Paky S.p.A. : Aleda K20 B-Eye" }, { 0x0A94, "Clay Paky S.p.A. : Aleda K10 B-Eye" }, { 0x0A95, "Clay Paky S.p.A. : SuperSharpy" }, { 0x0A96, "Clay Paky S.p.A. : Mythos" }, { 0x0A97, "Clay Paky S.p.A. : Sharpy Wash PC" }, { 0x0A98, "Clay Paky S.p.A. : SCENIUS PROFILE" }, { 0x0A99, "Clay Paky S.p.A. : SCENIUS SPOT" }, { 0x0A9A, "Clay Paky S.p.A. : SPHERISCAN" }, { 0x0A9B, "Clay Paky S.p.A. : SPHERLIGHT" }, { 0x0A9C, "Clay Paky S.p.A. : HEPIKOS" }, { 0x0A9D, "Clay Paky S.p.A. : SHOWBATTEN" }, { 0x0A9E, "Clay Paky S.p.A. : SHAR-BAR" }, { 0x0A9F, "Clay Paky S.p.A. : MYTHOS2" }, { 0x0AA0, "Raven Systems Design, Inc.: AquaDuct Fountain" }, { 0x0AA1, "Raven Systems Design, Inc.: OemRaven1" }, { 0x0AA2, "Raven Systems Design, Inc.: OemRaven2" }, { 0x0AA3, "Raven Systems Design, Inc.: OemRaven3" }, { 0x0AA4, "Raven Systems Design, Inc.: OemRaven4" }, { 0x0AA5, "Raven Systems Design, Inc.: OemRaven5" }, { 0x0AA6, "Raven Systems Design, Inc.: OemRaven6" }, { 0x0AA7, "Raven Systems Design, Inc.: OemRaven7" }, { 0x0AA8, "Raven Systems Design, Inc.: OemRaven8" }, { 0x0AA9, "Raven Systems Design, Inc.: OemRaven9" }, { 0x0AAA, "Raven Systems Design, Inc.: OemRavena" }, { 0x0AAB, "Raven Systems Design, Inc.: OemRavenb" }, { 0x0AAC, "Raven Systems Design, Inc.: OemRavenc" }, { 0x0AAD, "Raven Systems Design, Inc.: OemRavend" }, { 0x0AAE, "Raven Systems Design, Inc.: OemRavene" }, { 0x0AAF, "Raven Systems Design, Inc.: OemRavenf" }, { 0x0AB0, "Theatrelight New Zealand: TLED2- Ethernet to isolated DMX converter" }, { 0x0AB1, "Theatrelight New Zealand: TLDE2- Isolated DMX to Ethernet converter" }, { 0x0AB2, "Theatrelight New Zealand: TLPID II 60- Plugin Dimmer Cabinet" }, { 0x0AB3, "Theatrelight New Zealand: TLPID II 96- Plugin Dimmer Cabinet " }, { 0x0AB4, "Theatrelight New Zealand: TLPID II 120- Plugin Dimmer Cabinet" }, { 0x0AB5, "Theatrelight New Zealand: TLPID II 192- Plugin Dimmer Cabinet" }, { 0x0AC0, "Cinetix Medien und Interface GmbH: Ethernet/DMX512 Control Box," }, { 0x0AC1, "Cinetix Medien und Interface GmbH: Ethernet/DMX512 Generator" }, { 0x0AC2, "Cinetix Medien und Interface GmbH: Ethernet/DMX512 GenIO" }, { 0x0AD0, "WERPAX bvba: MULTI-DMX" }, { 0x0AE0, "chainzone: RoundTable" }, { 0x0AF0, "City Theatrical, Inc: PDS-750TRX" }, { 0x0AF1, "City Theatrical, Inc: PDS-375TRX" }, { 0x0B00, "STC Mecatronica: DDR 2404 Digital Dimmer Rack" }, { 0x0B10, "LSC: OemLscOut1" }, { 0x0B11, "LSC: OemLscIn1" }, { 0x0B12, "LSC: OemLscOut4" }, { 0x0B13, "LSC: OemLscIn4" }, { 0x0B20, "EUROLITE: Node 8 Artnet/DMX" }, { 0x0B30, "Absolute FX Pte Ltd: Showtime" }, { 0x0B40, "Mediamation Inc: Virtual Fountain" }, { 0x0B50, "Vanilla Internet Ltd.: Chameleon" }, { 0x0B60, "LightWild LC: LightWild DataBridge" }, { 0x0B70, "Flexvisual: FlexNode" }, { 0x0B80, "Company NA: Digi Network" }, { 0x0B81, "Company NA: Mozart PSU 4" }, { 0x0B82, "Company NA: DigiNet 416" }, { 0x0B90, "DMX4ALL GmbH: ArtNet-DMX-UNIVERSE 4.1" }, { 0x0B91, "DMX4ALL GmbH: ArtNet-DMX STAGE-PROFI 1.1" }, { 0x0B92, "DMX4ALL GmbH: MagiarLED II flex PixxControl" }, { 0x0BA0, "Starlighting: Net-DMX Notes" }, { 0x0BB0, "medien technik cords: MGate4" }, { 0x0BC0, "Joshua 1 Systems Inc: ECG-M32MX" }, { 0x0BC1, "Joshua 1 Systems Inc: ECG-DR2" }, { 0x0BC2, "Joshua 1 Systems Inc: ECG-DR4" }, { 0x0BC3, "Joshua 1 Systems Inc: ECG-PIX8" }, { 0x0BC4, "Joshua 1 Systems Inc: ECGPro-D1" }, { 0x0BC5, "Joshua 1 Systems Inc: ECGPro-D4" }, { 0x0BC6, "Joshua 1 Systems Inc: ECGPro-D8" }, { 0x0BD0, "Astera: AC4" }, { 0x0BE0, "MARUMO ELECTRIC Co. Ltd: MBK-350E" }, { 0x0BE1, "MARUMO ELECTRIC Co. Ltd: MBK-360E" }, { 0x0BE2, "MARUMO ELECTRIC Co. Ltd: MBK-370E" }, { 0x0BF0, "Weigl Elektronik & Mediaprojekte: Pro IO" }, { 0x0C00, " GLP German Light Products GmbH: Impression Spot.one" }, { 0x0C01, " GLP German Light Products GmbH: Impression Wash.one" }, { 0x0C10, "s-jaekel : DmxScreen" }, { 0x0C11, "s-jaekel : TimecodeSender" }, { 0x0C12, "s-jaekel : TimecodeViewer" }, { 0x0C13, "s-jaekel : DmxSnuffler" }, { 0x0C14, "s-jaekel : DmxConsole" }, { 0x0C15, "s-jaekel : TimecodeSyncAudioPlayer" }, { 0x0D00, "Peter Maes Technology: EtherDmxLinkDuo" }, { 0x0D10, "SOUNDLIGHT: USBDMX-TWO" }, { 0x0D20, "IBH: loox" }, { 0x0D30, "Thorn Lighting Ltd: SensaPro eDMX" }, { 0x0D40, "Chromateq SARL: LED Player" }, { 0x0D41, "Chromateq SARL: Pro DMX" }, { 0x0D50, "KiboWorks: KiboNode 16 Port" }, { 0x0D60, "The White Rabbit Company, Inc.: MCM - Mini-Communications Module" }, { 0x0D70, "TMB: ProPlex IQ" }, { 0x0D71, "TMB: Mozart MZ 40" }, { 0x0D80, "Celestial Audio: EtherDMXArt8-Simple" }, { 0x0D81, "Celestial Audio: EtherDMXArt8-Pro" }, { 0x0D82, "Celestial Audio: DMX36" }, { 0x0D90, "Doug Fleenor Design Inc.: Node4" }, { 0x0DA0, "Lex: AL5003-Lex" }, { 0x0DB0, "Revolution Display, Inc: Navigator" }, { 0x0DC0, "Visual Productions: CueCore" }, { 0x0DC1, "Visual Productions: IoCore" }, { 0x0DD0, "LLT Lichttechnik GmbH&Co.KG: SMS-28A" }, { 0x0DE0, "Chromlech: Elidy S" }, { 0x0DE1, "Chromlech: Elidy S RDM" }, { 0x0DE2, "Chromlech: Elidy" }, { 0x0DE3, "Chromlech: Elidy RDM" }, { 0x0DF0, "Integrated System Technologies Ltd: iDrive Thor 36" }, { 0x0DF1, "Integrated System Technologies Ltd: iDrive White Knight 36" }, { 0x0DF2, "Integrated System Technologies Ltd: iDrive Force 12" }, { 0x0DF3, "Integrated System Technologies Ltd: iDrive Thor 16" }, { 0x0E00, "RayComposer - R. Adams: RayComposer Software" }, { 0x0E01, "RayComposer - R. Adams: RayComposer NET" }, { 0x0E10, "eldoLED: PowerBOX Addresser" }, { 0x0E20, "coolux GmbH: Pandoras Box Mediaserver" }, { 0x0E21, "coolux GmbH: Widget Designer" }, { 0x0E30, "ELETTROLAB Srl: Accendo Smart Light Power" }, { 0x0E40, "Philips Color Kinetics: ColorBlaze TRX" }, { 0x0E70, "XiamenGreenTao Opto Electronics Co.,Ltd. : GT-DMX-2000" }, { 0x0E71, "XiamenGreenTao Opto Electronics Co.,Ltd. : GT-DMX-4000" }, { 0x0E80, "Rnet: Rnet-8" }, { 0x0E81, "Rnet: Rnet-6" }, { 0x0E82, "Rnet: Rnet-4" }, { 0x0E83, "Rnet: Rnet-2" }, { 0x0E84, "Rnet: Rnet-1" }, { 0x0E90, "Dmx4All: Player AN" }, { 0x0E91, "Dmx4All: AN-Led-Dimmer AN" }, { 0x0EA0, "EQUIPSON S.A.: WORK LM 5" }, { 0x0EA1, "EQUIPSON S.A.: WORK LM 3R2" }, { 0x0EA2, "EQUIPSON S.A.: WORK LM 5W" }, { 0x0EA3, "EQUIPSON S.A.: WORK DMXNET 4" }, { 0x0EA4, "EQUIPSON S.A.: WORK DMXNET 8" }, { 0x0EB0, "SanDevices: E680 pixel controllers" }, { 0x0EB1, "SanDevices: E681 pixel controllers" }, { 0x0EB2, "SanDevices: E682 pixel controllers" }, { 0x0EB3, "SanDevices: E6804 pixel controllers" }, { 0x0EC0, "BRAINSALT MEDIA GMBH: BSM Conductor PRO" }, { 0x0ED0, "ELETTROLAB Srl: Avvio 04" }, { 0x0ED1, "ELETTROLAB Srl: Remoto" }, { 0x0EE0, "PRO-SOLUTIONS: DMX-PRO Net-02" }, { 0x0EE1, "PRO-SOLUTIONS: DMX-PRO Net-01" }, { 0x0EE2, "PRO-SOLUTIONS: DMX-PRO Net-10" }, { 0x0EE3, "PRO-SOLUTIONS: DMX-PRO Net-11" }, { 0x0EE4, "PRO-SOLUTIONS: DMX-PRO Net-04" }, { 0x0EE5, "PRO-SOLUTIONS: DMX-PRO Net-14" }, { 0x0EF0, "eIdea - Creative Technology: EtherShow 2" }, { 0x0F00, "Brink Electronics : net-node-01" }, { 0x0F01, "Brink Electronics : net-node-10" }, { 0x0F02, "Brink Electronics : net-node-11" }, { 0x0F10, "deskontrol electronics: Pixel controller II" }, { 0x0F11, "deskontrol electronics: Pixel controller III" }, { 0x0F12, "deskontrol electronics: DMX controller" }, { 0x0F20, "Kirron light components: IDycoLED Control" }, { 0x0F30, "Visual Productions: B-Station" }, { 0x0F31, "Visual Productions: F-Station" }, { 0x0F40, "LSS GmbH: MasterPort RM" }, { 0x0F50, "kuwatec Inc.: EtherMX" }, { 0x0F60, "Integrated System Technologies Ltd: iDrive PixelLED" }, { 0x0F61, "Integrated System Technologies Ltd: iDrive Gateway 12" }, { 0x0F70, "Philips Large Luminous Surfaces: Luminous Textile Panel" }, { 0x0F80, "VT-Control: WRDM V1.0" }, { 0x0F90, "Panasonic Corporation: EMIT-AX" }, { 0x0F91, "Panasonic Corporation: Projector" }, { 0x0FA0, "Diamante Lighting: DMNet Out" }, { 0x0FB0, "Glow Motion Technologies LLC: Ghostband Transmitter" }, { 0x0FC0, "Sigma Net: AM-8" }, { 0x0FD0, "DiGidot: DiGidot C-4" }, { 0x0FE0, "techKnow Design: techNodeTx1" }, { 0x0FE1, "techKnow Design: techNodeTx2" }, { 0x0FE2, "techKnow Design: techNodeRx1" }, { 0x0FE3, "techKnow Design: techNodeRx2" }, { 0x0FF0, "Total Light: Ether Quad" }, { 0x1000, "IP-DMX Control: ip-dmx dx 1,2" }, { 0x1010, "TNF Concept: RTS DMX 512" }, { 0x1020, "Nico Technology: Nico DMX interface 4504" }, { 0x1030, "Highendled Electronics Company Limited: EZK456" }, { 0x1031, "Highendled Electronics Company Limited: PIX101" }, { 0x1032, "Highendled Electronics Company Limited: FLA472" }, { 0x1033, "Highendled Electronics Company Limited: ULT538" }, { 0x1034, "Highendled Electronics Company Limited: PSU-10A" }, { 0x1040, "Visual Productions: Cuety" }, { 0x1041, "Visual Productions: QuadCore" }, { 0x1050, "Ackerman Computer Sciences: CFSound-IV – Compact Flash Sound Player IV" }, { 0x1051, "Ackerman Computer Sciences: Color LCD 320x240 Terminal" }, { 0x1060, "Innovation LED Limited: Ilumo Zoom Spot" }, { 0x1061, "Innovation LED Limited: Ilumo Cyc 1" }, { 0x1062, "Innovation LED Limited: Ilumo ARC Gateway" }, { 0x1063, "Innovation LED Limited: Ether DMX 1" }, { 0x1064, "Innovation LED Limited: Ether DMX 2" }, { 0x1065, "Innovation LED Limited: Ether DMX 4" }, { 0x1070, "LightAct d.o.o.: reActor" }, { 0x1080, "wupperTec: iMerge" }, { 0x1090, "Integrated System Technologies Ltd: iMune" }, { 0x10A0, "Advatek Lighting: PixLite 16" }, { 0x10A1, "Advatek Lighting: PixLite 4" }, { 0x10B0, "ACME: XP-1000 SZ" }, { 0x10C0, "AV Stumpfl GmbH: Wings AV Suite" }, { 0x10D0, "Lumax: LumaxNET ILDA Interface" }, { 0x10E0, "Zingerli Show Engineering: Katlait" }, { 0x10E1, "Zingerli Show Engineering: Kailua" }, { 0x10E2, "Zingerli Show Engineering: Kailua 2" }, { 0x10E3, "Zingerli Show Engineering: Pina" }, { 0x10E4, "Zingerli Show Engineering: Sina" }, { 0x10E5, "Zingerli Show Engineering: Tukra" }, { 0x10F0, "kuwatec Inc.: DIAheart" }, { 0x1100, "Sigma Net: E-NODE 8-1" }, { 0x1110, "Radig Hard - Software: EDC-01" }, { 0x1120, "Mogees Ltd: Mogees" }, { 0x1130, "GuangZhou MCSWE Technologies: MCSWE 1024" }, { 0x1131, "GuangZhou MCSWE Technologies: MCSWE 2048" }, { 0x1140, "Dynamic Projection Institute Herstellungs und Vertriebs GmbH: Mirror Head" }, { 0x1150, "Steinigke Showtechnic GmbH: PSU-8A" }, { 0x1151, "Steinigke Showtechnic GmbH: Node 1" }, { 0x1152, "Steinigke Showtechnic GmbH: Pixel Ball" }, { 0x1153, "Steinigke Showtechnic GmbH: Zeitgeist PMC-16" }, { 0x1154, "Steinigke Showtechnic GmbH: Stage Bar 5" }, { 0x1155, "Steinigke Showtechnic GmbH: Stage Bar 10" }, { 0x1160, "BEGLEC: BT-NODE28 " }, { 0x1161, "BEGLEC: POWERMATRIX5x5-RGB Mk2 " }, { 0x1162, "BEGLEC: BEAM MATRIX5x5-RGBW" }, { 0x1170, "Fineline Solutions Ltd: 16 Channel Stepper Controller " }, { 0x1171, "Fineline Solutions Ltd: Fineline product 1" }, { 0x1172, "Fineline Solutions Ltd: Fineline product 2" }, { 0x1173, "Fineline Solutions Ltd: Fineline product 3" }, { 0x1174, "Fineline Solutions Ltd: Fineline product 4" }, { 0x1175, "Fineline Solutions Ltd: Fineline product 5" }, { 0x1176, "Fineline Solutions Ltd: Fineline product 6" }, { 0x1177, "Fineline Solutions Ltd: Fineline product 7" }, { 0x1178, "Fineline Solutions Ltd: Fineline product 8" }, { 0x1179, "Fineline Solutions Ltd: Fineline product 9" }, { 0x117A, "Fineline Solutions Ltd: Fineline product 10" }, { 0x117B, "Fineline Solutions Ltd: Fineline product 11" }, { 0x117C, "Fineline Solutions Ltd: Fineline product 12" }, { 0x117D, "Fineline Solutions Ltd: Fineline product 13" }, { 0x117E, "Fineline Solutions Ltd: Fineline product 14" }, { 0x117F, "Fineline Solutions Ltd: Fineline product 15" }, { 0x1180, "Rocrail: Rocrail DMX Daylight" }, { 0x1190, "PXM: Px314" }, { 0x1191, "PXM: Px357" }, { 0x11A0, "OTTEC Technology GmbH: Fogmachine" }, { 0x11B0, "Claude Bigonoff: Interface LT Open-source" }, { 0x11C0, "Rena Electronica B.V.: Bits2Power Power Data Controller" }, { 0x11D0, "LIGHT SKY: OemSkyHub" }, { 0x11E0, "HDL: DMXNode4" }, { 0x11F0, "Pangolin Laser Systems Inc: FB4-SE" }, { 0x11F1, "Pangolin Laser Systems Inc: AVR Ethernet DMX" }, { 0x1200, "ShenZhen HuaCanXing Technology Co.,Ltd.: H801RT" }, { 0x1210, "Highendled Electronics Company Limited: FLA308" }, { 0x1211, "Highendled Electronics Company Limited: FLA320" }, { 0x1220, "Pacific Northwest National Laboratory: PNNL Connected Lighting System Testbed" }, { 0x1230, "Ed Keefe Design: Advanced Laser Router" }, { 0x1240, "Guangzhou Hongcai Stage Equipment co: Q-5 Turbo" }, { 0x1250, "Claude Heintz Design: LXConsole" }, { 0x1260, "Immersive Design Studios: Canvas" }, { 0x1270, "Visual Productions: LPU-1" }, { 0x1271, "Visual Productions: LPU-2" }, { 0x1272, "Visual Productions: QuadCore" }, { 0x1273, "Visual Productions: CueCore2" }, { 0x1280, "ARC Solid-State Lighting Corporation: DMX Converter" }, { 0x1290, "Peter Meyer Project Management Adviser GmbH : PMA DMX Driver" }, { 0x12A0, "Robert Juliat: Dalis Reference : 860" }, { 0x12A1, "Robert Juliat: Merlin" }, { 0x12B0, "Briteq: BEAMBAR5-RGBW" }, { 0x12B1, "Briteq: BEAMBAR10-RGBW" }, { 0x12B2, "Briteq: BEAM WIZARD5x5" }, { 0x12B3, "Briteq: BEAM MATRIX5x5-RGBW" }, { 0x12C0, "JMS Pro Light: WLAN2DMX" }, { 0x12D0, "Interactive Technologies Inc: CueServer 2" }, { 0x12E0, "Philips Strand Lighting: Single Gang Node, PN 65161" }, { 0x12E1, "Philips Strand Lighting: 3 Port Node, PN 65163" }, { 0x12E2, "Philips Strand Lighting: 3 Port DIN PCB, PN 97-0387" }, { 0x12E3, "Philips Strand Lighting: 3 Port Embedded PCB, PN 74261" }, { 0x12E4, "Philips Strand Lighting: 8 Port Node, PN 65168" }, { 0x12E5, "Philips Strand Lighting: 2 Port Node, PN 65162" }, { 0x12F0, "Chauvet Professional: Epix Drive 900" }, { 0x12F1, "Chauvet Professional: Epix Drive 642" }, { 0x12F2, "Chauvet Professional: Net-X" }, { 0x12F3, "Chauvet Professional: Nexus 4x4" }, { 0x12F4, "Chauvet Professional: Nexus 2x2" }, { 0x12F5, "Chauvet Professional: Nexus 4x1" }, { 0x12F6, "Chauvet Professional: Maverick Mk2" }, { 0x12F7, "Chauvet Professional: Maverick Mk1 Wash" }, { 0x12F8, "Chauvet Professional: Maverick Mkx1 Wash" }, { 0x12F9, "Chauvet Professional: Ovation B-565FC" }, { 0x12FA, "Chauvet Professional: Ovation B-2805FC" }, { 0x12FB, "Chauvet Professional: VIP Drive 43s" }, { 0x1300, "HPL Company: Delta 8 Node" }, { 0x1310, "Steinigke Showtechnic GmbH: PSU-4A" }, { 0x1320, "Lumenpulse Lighting Inc.: Lumencove XT Ethernet Enabled" }, { 0x1321, "Lumenpulse Lighting, Inc.: CBOX Ethernet" }, { 0x1330, "deskontrol electronics: deskontroller" }, { 0x1331, "deskontrol electronics: deskontroller pro" }, { 0x1340, "Seiko Epson Corporation: Projector" }, { 0x1350, "Image Engineering: Beam Composer" }, { 0x1360, "Arnold & Richter Cine Technik GmbH : ARRI" }, { 0x1370, "NISCON Inc.: RAYNOK Motion Control System" }, { 0x1380, "Immersive Design Studios inc: Canvas" }, { 0x1390, "ADJ Products: Flash Kling Panel" }, { 0x13A0, "Callegenix LLC: DMX Commander" }, { 0x13A1, "Callegenix LLC: Pixel Driver" }, { 0x13B0, "ARC Solid-State Lighting Corporation: Constant Voltage Driver" }, { 0x13B1, "ARC Solid-State Lighting Corporation: LF75 Flood Light" }, { 0x13B2, "ARC Solid-State Lighting Corporation: LF150 Flood Light" }, { 0x13C0, "Licht Team: LT1" }, { 0x13C1, "SGH: Martin" }, { 0x13C2, "ADJ Products: Airstream DMX Bridge" }, { 0x13C3, "DMG Technologies DMG Lumiere: Universal battery box" }, { 0x13C4, "SWGroup: Easydim" }, { 0x13C5, "GLP German Light Products GmbH: GT-1" }, { 0x13C6, "ADL Electronics Ltd: ADL DMX NetGate" }, { 0x13C7, "ADL Electronics Ltd: ADL DMX NetGate +" }, { 0x13C8, "ADL Electronics Ltd: ADL DMX NetGate RDM" }, { 0x13C9, "ADL Electronics Ltd: ADL DMX NetGate+ RDM" }, { 0x13CA, "ADL Electronics Ltd: ADL DMX NetGate DIN" }, { 0x13CB, "ADL Electronics Ltd: ADL DMX NetGate ALARM" }, { 0x13CC, "ADL Electronics Ltd: ADL DC PU-24" }, { 0x13CD, "ADL Electronics Ltd: ADL DC PU-24C" }, { 0x13CE, "ADL Electronics Ltd: ADL DC PU-6" }, { 0x13CF, "ADL Electronics Ltd: ADL DC WSO (operator workstation)" }, { 0x13D0, "ADL Electronics Ltd: ADL DC IKB" }, { 0x13D1, "ADL Electronics Ltd: ADL DimmerCabinet CPU" }, { 0x13D2, "ADL Electronics Ltd: ADL Dimmer 220-12d-x" }, { 0x13D3, "ADL Electronics Ltd: ADL MediaPlayer" }, { 0x13D4, "Opito Labs GmbH: Opito Converter Toolkit" }, { 0x13D5, "Opito Labs GmbH: Opito Video Controller" }, { 0x13D6, "Swisson AG: XND-4" }, { 0x13D7, "ROF Electronics: Multi4verse" }, { 0x13D8, "d3 Technologies Ltd: Pro Plus range" }, { 0x13D9, "Integrated System Technologies Ltd: Sensor Hub" }, { 0x13DA, "LKE Lasershow: H2O-Motion" }, { 0x13DB, "LKE Lasershow: eXtreme-Motion-Jet" }, { 0x13DC, "LeMaitre Ltd: G300-Smart" }, { 0x13DD, "Company NA: DigiNet Manager" }, { 0x13DE, "TMB: ProPlex IQ Manager" }, { 0x13DF, "Exalux: Connect-One" }, { 0x13E0, "MTH: MED-LDMX512" }, { 0x13E1, "MTH: MED-LDMX512HUB" }, { 0x13E2, "AC Lasers: SuperNova" }, { 0x13E3, "AC Lasers: W-Lux" }, { 0x13F0, "Batmink Ltd: OEMVISAGEVISIONMAPPER" }, { 0x13F1, "LEDTUNE.COM: ABOX-01" }, { 0x13F2, "Vertigo ApS: BlackLED" }, { 0x13F3, "Ingham Designs LLC: Hunt Node" }, { 0x13F4, "GuangZhou LiDang Technology Co.,Ltd: LD-NET-1024" }, { 0x13F5, "GuangZhou LiDang Technology Co.,Ltd: LD-NET-2028" }, { 0x13F6, "RGBlink: Venus X7" }, { 0x13F7, "RGBlink: G 3 Net" }, { 0x13F8, "Imimot Kft: Mitti" }, { 0x13F9, "MCSWE Technologies.INC: MCSWE LUNA 8" }, { 0x13FA, "MCSWE Technologies.INC: MCSWE LUNA 16" }, { 0x13FB, "Digital Sputnik Lighting: DSL1" }, { 0x13FC, "SRS Light Design: ANGS4" }, { 0x13FD, "Chauvet DJ: DMX-AN" }, { 0x13FE, "Rosstech Signals: DMXBridge" }, { 0x13FF, "LSC Lighting Systems (Aust) Pty. Ltd.: Mantra Lite" }, { 0x1400, "DMT: Pixelstrip controller MKII" }, { 0x1401, "Elation Lighting: TVL Panel DW" }, { 0x1402, "RGBlink: Venus X2" }, { 0x1403, "Elation Lighting: TVL Panel DW" }, { 0x1404, "Elation Lighting: eNode4" }, { 0x1405, "Elation Lighting: eNode8 Pro" }, { 0x1406, "Exalux: Connect-Plus" }, { 0x1407, "Foshan YiFeng Electric Industrial Co ltd: CA-EN28S" }, { 0x1408, "Foshan YiFeng Electric Industrial Co ltd: CA-AN28" }, { 0x1409, "Foshan YiFeng Electric Industrial Co ltd: CA-EN28" }, { 0x140A, "Foshan YiFeng Electric Industrial Co ltd: CA-AN08" }, { 0x140B, "Foshan YiFeng Electric Industrial Co ltd: CA-AN04" }, { 0x140C, "Soundlight: Soundlight 4port node" }, { 0x2000, "Artistic Licence Engineering Ltd: AL5001" }, { 0x2001, "Artistic Licence Engineering Ltd: artLynx duo" }, { 0x2010, "Artistic Licence Engineering Ltd: Data-Lynx OP" }, { 0x2020, "Artistic Licence Engineering Ltd: Rail-Lynx OP" }, { 0x2030, "Artistic Licence Engineering Ltd: Down-Lynx (G4)" }, { 0x2040, "Artistic Licence Engineering Ltd: Net-Lynx OP (G4)" }, { 0x2050, "Artistic Licence Engineering Ltd: AL5002" }, { 0x2060, "Artistic Licence Engineering Ltd: Data-Lynx IP" }, { 0x2070, "Artistic Licence Engineering Ltd: Cata-Lynx IP (G4)" }, { 0x2075, "Artistic Licence Engineering Ltd: Cata-Lynx OP (G4)" }, { 0x2080, "Artistic Licence Engineering Ltd: Rail-Lynx IP" }, { 0x2090, "Artistic Licence Engineering Ltd: Up-Lynx (G4)" }, { 0x20A0, "Artistic Licence Engineering Ltd: Net-Lynx IP (G4)" }, { 0x20B0, "Artistic Licence Engineering Ltd: Art-Play" }, { 0x20D0, "Artistic Licence Engineering Ltd: Art-Demux" }, { 0x20E0, "Artistic Licence Engineering Ltd: Art-Relay" }, { 0x20F0, "Artistic Licence Engineering Ltd: Art-Pipe" }, { 0x2100, "Artistic Licence Engineering Ltd: Art-Media" }, { 0x2110, "Artistic Licence Engineering Ltd: Art-Boot" }, { 0x2120, "Artistic Licence Engineering Ltd: Art-Lynx OP" }, { 0x2130, "Artistic Licence Engineering Ltd: Art-Lynx IP" }, { 0x2140, "Artistic Licence Engineering Ltd: Ether-Lynx II" }, { 0x2150, "Artistic Licence Engineering Ltd: Multichrome E2" }, { 0x2160, "Artistic Licence Engineering Ltd: Art-Monitor Base" }, { 0x2170, "Artistic Licence Engineering Ltd: Multichrome E1" }, { 0x2200, "Artistic Licence Engineering Ltd: Micro-Scope 5" }, { 0x2210, "Artistic Licence Engineering Ltd: Two-Play" }, { 0x2211, "Artistic Licence Engineering Ltd: Two-Play XT" }, { 0x2212, "Artistic Licence Engineering Ltd: Multi-Play" }, { 0x2220, "Artistic Licence Engineering Ltd: Diamond" }, { 0x2221, "Artistic Licence Engineering Ltd: Quartz" }, { 0x2222, "Artistic Licence Engineering Ltd: Zircon" }, { 0x2223, "Artistic Licence Engineering Ltd: Graphite" }, { 0x2224, "Artistic Licence Engineering Ltd: Opal" }, { 0x2225, "Artistic Licence Engineering Ltd: Mica" }, { 0x2230, "Artistic Licence Engineering Ltd: eSense" }, { 0x2231, "Artistic Licence Engineering Ltd: eSense XT" }, { 0x2240, "Artistic Licence Engineering Ltd: dVnet" }, { 0x2241, "Artistic Licence Engineering Ltd: versaSplit EthB" }, { 0x2242, "Artistic Licence Engineering Ltd: versaSplit EthA" }, { 0x2250, "Artistic Licence Engineering Ltd: AL5003" }, { 0x2258, "Artistic Licence Engineering Ltd: daliGate uno" }, { 0x2259, "Artistic Licence Engineering Ltd: daliGate duo" }, { 0x225A, "Artistic Licence Engineering Ltd: daliGate quad" }, { 0x2260, "Artistic Licence Engineering Ltd: lightJuice CV4" }, { 0x2261, "Artistic Licence Engineering Ltd: lightJuice DC24" }, { 0x2262, "Artistic Licence Engineering Ltd: lightJuice CC2" }, { 0x2263, "Artistic Licence Engineering Ltd: lightJuice OL1" }, { 0x2264, "Artistic Licence Engineering Ltd: lightJuice PX1" }, { 0x2265, "Artistic Licence Engineering Ltd: lightJuice DALI" }, { 0x2266, "Artistic Licence Engineering Ltd: lightJuice Dmx" }, { 0x2267, "Artistic Licence Engineering Ltd: artLynx quad" }, { 0x2268, "Artistic Licence Engineering Ltd: dataLynx II" }, { 0x2269, "Artistic Licence Engineering Ltd: DMX-Workshop (Input)" }, { 0x226A, "Artistic Licence Engineering Ltd: visualEyes" }, { 0x226B, "Artistic Licence Engineering Ltd: Colour-Tramp (Input)" }, { 0x226C, "Artistic Licence Engineering Ltd: DmxToolBox (Input)" }, { 0x226D, "Artistic Licence Engineering Ltd: pixiLynx 4x4" }, { 0x226E, "Artistic Licence Engineering Ltd: artLynx rj45" }, { 0x226F, "Artistic Licence Engineering Ltd: netLynx quad" }, { 0x2270, "Artistic Licence Engineering Ltd: downLynx quad" }, { 0x2271, "Artistic Licence Engineering Ltd: rackLynxOcto" }, { 0x2272, "Artistic Licence Engineering Ltd: oemGate quad" }, { 0x2801, "Gearbox Solutions: LC1" }, { 0x2802, "Licht en Geluid Team: DMXDisplay" }, { 0x2803, "Lycht: Lycht Hub" }, { 0x2804, "Elation Lighting: TVL Softlight DW" }, { 0x2805, "ELETTROLAB Srl: Avvio Mini WiFi" }, { 0x2806, "Clay Paky S.p.A. : SUPERSHARPY²" }, { 0x2807, "JMS Pro Light: AIR2DMX" }, { 0x2808, "Steinigke Showtechnic GmbH: Node 8 MK2" }, { 0x2809, "W.A.Benjamin Electric Co.: Integrity RDM Conformance Test" }, { 0x280A, "DMX4ALL GmbH: Wireless DMX4ALL Device" }, { 0x280B, "DMX4ALL GmbH: DMX4ALL PixxDevice" }, { 0x280C, "DMX4ALL GmbH: DMX4ALL PlayerDevice" }, { 0x280D, "DMX4ALL GmbH: DMX4ALL MuxDevice" }, { 0x280E, "DMX4ALL GmbH: DMX4ALL WirelessDevice" }, { 0x280F, "DMX4ALL GmbH: DMX4ALL WirelessPixxDevice" }, { 0x2810, "Steinigke Showtechnic GmbH: LED TMH-X25 XL" }, { 0x2811, "Elation Lighting: eNode 2POE" }, { 0x2812, "Elation Lighting: TVL Panel DW" }, { 0x2813, "BLS: c21550820" }, { 0x2814, "Elation Lighting: TVL Softlight DW" }, { 0x2815, "ImageCue LLC: ImageCue-NEV" }, { 0x2816, "NightStarry Electronics Co.,LTD.: Net-Dmx" }, { 0x2817, "NightStarry Electronics Co.,LTD.: Net-Node:32" }, { 0x2818, "NightStarry Electronics Co.,LTD.: Net-Node:16" }, { 0x2819, "NightStarry Electronics Co.,LTD.: Net-Node:8" }, { 0x281A, "NightStarry Electronics Co.,LTD.: Net-Node:4" }, { 0x281B, "Showtec: Pixel Bubble 80 MKII" }, { 0x281C, "Colordreamer Technology Co.,Limited: Titan A16" }, { 0x281D, "Showtec: White-PIX" }, { 0x281E, "Showtec: Node-1" }, { 0x281F, "DMT: Pixel Tile P25 MKII" }, { 0x2820, "DMT: PixelBatten P25 MKII" }, { 0x2821, "Showtec: Phantom 300 LED Matrix" }, { 0x2822, "Infinity: iW-1915 Pixel" }, { 0x2823, "Infinity: iS-400" }, { 0x2824, "Infinity: iPW-150 LED Sunpanel" }, { 0x2825, "Infinity: Chimp 300" }, { 0x2826, "Infinity: Chimp 100" }, { 0x2827, "Infinity: iM-2515" }, { 0x2828, "Resolume: Arena" }, { 0x2829, "LED concept: LED Pixel Director 4" }, { 0x282A, "LED concept: LED Pixel Director 8" }, { 0x282B, "DMX4ALL GmbH: DMX4ALL DMXDevice" }, { 0x282C, "kuwatec, Inc.: Ex8" }, { 0x282D, "DMX4ALL GmbH: DMX4ALL SoftwareDevice" }, { 0x282E, "XING YE DIAN ZI: NS-NET-ONE" }, { 0x282F, "XING YE DIAN ZI: NS-NET03" }, { 0x2830, "XING YE DIAN ZI: NS-NET02" }, { 0x2831, "XING YE DIAN ZI: NS-NET01" }, { 0x2832, "ExMachina: Winch Dynamic" }, { 0x2833, "Schnick-Schnack-Systems GmbH: DMX Pixel-Router" }, { 0x2834, "Schnick-Schnack-Systems GmbH: DPB Pixel-Router" }, { 0x2835, "Stage-Eyes: Tri-Engine" }, { 0x2836, "Colordreamer Technology Co.,Limited: Titan AS4" }, { 0x2837, "Colordreamer Technology Co.,Limited: Titan A2" }, { 0x2838, "Colordreamer Technology Co.,Limited: Titan A4" }, { 0x2839, "Colordreamer Technology Co.,Limited: Titan A8" }, { 0x283A, "eIdea - Creative Technology: AuNode" }, { 0x283B, "LIGHTSKY: IP3000" }, { 0x283C, "colordreamer: Colordreamer Update Boot" }, { 0x283D, "Digital Sputnik Lighting OÃœ: DS Control DMX" }, { 0x283E, "Colordreamer Technology Co.,Limited: Titan A8 Pro" }, { 0x283F, "LED concept: LED PIXEL DIRECTOR 24" }, { 0x2840, "LED concept: LED PIXEL DIRECTOR 16" }, { 0x2841, "LED concept: LED PIXEL DIRECTOR 12" }, { 0x2842, "HMB TEC GmbH: CC512-Pix" }, { 0x2843, "ROF Electronics: Big Foot IV" }, { 0x2844, "ROF Electronics: Big Foot II" }, { 0x2845, "ROF Electronics: TNT" }, { 0x2846, "ROF Electronics: Multi8verse" }, { 0x2847, "ROF Electronics: Multi6verse" }, { 0x2848, "ROF Electronics: Multi2verse" }, { 0x2849, "AC3 Studio: Kinetic Stepper Interface" }, { 0x284A, "AYRTON: AyrtonFixtureNode" }, { 0x284B, "DMLITE: SOLEIL" }, { 0x284C, "M-Light: Mini Display 16" }, { 0x284D, "LEDsistem Technology LTD: Cloud-Drive" }, { 0x284E, "ROBERT JULIAT: SpotME" }, { 0x284F, "ROBERT JULIAT: ALICE 1469" }, { 0x2850, "ROBERT JULIAT: OZ 1169" }, { 0x2851, "ROBERT JULIAT: DALIS 862" }, { 0x2852, "ROBERT JULIAT: DALIS 861" }, { 0x2853, "Chauvet Professional: Epix Drive 2000 IP" }, { 0x2854, "LIGHTSKY: IP2000" }, { 0x2855, "SmoothLUX B.V.: SmoothDMX 128" }, { 0x2856, "SmoothLUX B.V.: SmoothDMX 512" }, { 0x2857, "Big Dipper Laser Science and Technology Co., Ltd.: BP-440BSW" }, { 0x2858, "Eurolumen(shanghai)Lighting Co.,LTD: s100" }, { 0x2859, "Total Light: Etherstrip 8" }, { 0x285A, "Total Light: Ether Dual A" }, { 0x285B, "Total Light: Ether Dual B" }, { 0x285C, "Infinity: iW-1240" }, { 0x285D, "Infinity: iW-740" }, { 0x285E, "Infinity: iW-340" }, { 0x285F, "Digital Sputnik Lighting OAœ: DSL3" }, { 0x2860, "Digital Sputnik Lighting OAœ: DSL2" }, { 0x2861, "Visual Productions: IoCore2" }, { 0x2862, "Visual Productions: TimeCore" }, { 0x2863, "Bright Sound: Bright Mapper" }, { 0x2864, "atit.no: NorseDMX Wi-Fi Node II" }, { 0x2865, "Tian Hai BeiFang: AMX" }, { 0x2866, "Starlight: XNET-8" }, { 0x2867, "Starlight: XNET-4" }, { 0x2868, "Starlight: XNET-2" }, { 0x2869, "Xian NovaStar Tech Co.,Ltd: NOVA-DMX11" }, { 0x286A, "LED concept: SWITCHMAN 2-1" }, { 0x286B, "LED concept: SWITCHMAN 4-1" }, { 0x286C, "LED concept: SWITCHMAN 0-4" }, { 0x286D, "LED concept: SWITCHMAN 3-1" }, { 0x286E, "LED concept: SWITCHMAN 1-1" }, { 0x286F, "LED concept: SWITCHMAN 8" }, { 0x2870, "LED concept: SWITCHMAN 2" }, { 0x2871, "LED concept: SWITCHMAN 2a" }, { 0x2872, "LED concept: SWITCHMAN 1" }, { 0x2873, "LED concept: SWITCHMAN 4" }, { 0x2874, "PXM: Px724" }, { 0x2875, "Showtec: Pixel Tube Set 96" }, { 0x2876, "Showtec: NET-8-3" }, { 0x2877, "Showtec: NET-8-5" }, { 0x2878, "Showtec: NET-8-3a" }, { 0x2879, "Showtec: RT-200" }, { 0x287A, "OpenLX SP Ltd: EasyDMX" }, { 0x287B, "Signblazer Ltd.: SopraText" }, { 0x287C, "Sam light: Forte 150" }, { 0x287D, "Yarilo Pro: LANdmx4" }, { 0x287E, "Key Delfin: WI-Net 1" }, { 0x287F, "Key Delfin: RJ-Net 1" }, { 0x2880, "Illum Technology, LLC: Xstream" }, { 0x2881, "Jjj: Bou" }, { 0x2882, "GIP Innovation Tools: LIGEO Gateway" }, { 0x2883, "EastSun Technology CO., Ltd: NET4D01" }, { 0x2884, "EastSun Technology CO., Ltd: NET1D01" }, { 0x2885, "Amptown System Company: ControLite VIGOR DINRail-Switch" }, { 0x2886, "Elation Professional: 4 Cast DMX Bridge" }, { 0x2887, "WLPS: Remote FollowSpot" }, { 0x2888, "ADDiCTiON bOx: FrEEdOsE WLaN" }, { 0x2889, "ADDiCTiON bOx: FuLLdOsE 8-Port" }, { 0x288A, "ADDiCTiON bOx: TrUssdOsE 4-Port" }, { 0x288B, "ADDiCTiON bOx: HaLFdOsE 4-Port" }, { 0x288C, "ADDiCTiON bOx: HaLFdOsE 8-Port" }, { 0x288D, "Kontrolcla Show Control S. L.: Rdm assistant" }, { 0x288E, "Integrated System Technologies Limited: Thor 8" }, { 0x288F, "Integrated System Technologies Limited: Thor8" }, { 0x2890, "Yarilo Pro: LANdmx2" }, { 0x2891, "HMB TEC GmbH: RR512" }, { 0x2892, "HMB TEC GmbH: CC512" }, { 0x2893, "ElectroTAS: TH-8U" }, { 0x2894, "ElectroTAS: TH-6U" }, { 0x2895, "electroTAS: TH-4U" }, { 0x2896, "ElectroTAS: TH-2U" }, { 0x2897, "ElectroTAS: TH-1U" }, { 0x2898, "showjockey: SJ-DMX-E16" }, { 0x2899, "Qdot Lighting Limited: QNET 16W" }, { 0x289A, "Qdot Lighting Limited: QNET 8W" }, { 0x289B, "Qdot Lighting Limited: QNET 2048" }, { 0x289C, "Qdot Lighting Limited: QNET 1024" }, { 0x289D, "Chauvet Professional: NET-X 2.0" }, { 0x289E, "Elation Lighting: eNode 2 POE" }, { 0x289F, "LEON: LEONGRECO" }, { 0x28A0, "ElectroTAS: TH-AIO" }, { 0x28A1, "AK-LIGHT: DMX-4" }, { 0x28A2, "LIGHTSKY: DMX-BOX" }, { 0x28A3, "CLAY PAKY: SCENIUS UNICO" }, { 0x28A4, "AB-DMX: A512 node" }, { 0x28A5, "NuDelta Digital: LogiCue" }, { 0x28A6, "iColor Led Shenzhen Co., Ltd: SC1712" }, { 0x28A7, "iColor Led Shenzhen Co., Ltd: SC1711" }, { 0x28A8, "Elation Professional: Show Designer" }, { 0x28A9, "UNT: SLNS" }, { 0x28AA, "X-Laser: Mercury" }, { 0x28AB, "LuxCena Iumina: LuxCena WiFi DMX" }, { 0x28AC, "BRITEQ: BT-NODE24" }, { 0x28AD, "TLS INTERNATIONAL: TLS DIGITAL PIXEL CONTROLLER" }, { 0x28AE, "Apollo Security: ENI-110" }, { 0x28AF, "Showtacle Ltd.: SPI Matrix" }, { 0x28B0, "Showtacle Ltd.: LEC3" }, { 0x28B1, "Argent Data Systems, Inc.: Hyperion Hoop" }, { 0x28B2, "EQUIPSON S.A.: LS-Core" }, { 0x28B3, "CLAY PAKY: AXCOR SPOT HPE 300" }, { 0x28B4, "EQUIPSON S.A.: WORK LS-1" }, { 0x28B5, "CLAY PAKY: AXCOR WASH 300" }, { 0x28B6, "CLAY PAKY: AXCOR BEAM 300" }, { 0x28B7, "CLAY PAKY: ALEDA K-EYE K20 HCR" }, { 0x28B8, "CLAY PAKY: ALEDA K-EYE K10 HCR" }, { 0x28B9, "CLAY PAKY: AXCOR PROFILE 900-3K" }, { 0x28BA, "CLAY PAKY: AXCOR PROFILE 900-6K" }, { 0x28BB, "CLAY PAKY: AXCOR PROFILE 900-8K" }, { 0x28BC, "LIGHTSKY: LED0760" }, { 0x28BD, "LIGHTSKY: LED0960" }, { 0x28BE, "Elation Lighting: Pixel Driver 4000" }, { 0x28BF, "Voidcorp: VirtualPanel" }, { 0x28C0, "AUTOLUX Handels- und ProduktionsgmbH: ALX-MEDIAWALL" }, { 0x28C1, "Swisson AG: XND-8" }, { 0x28C2, "LumenRadio: ARRI Skylink Base Station" }, { 0x28C3, "Cameo: EVOS W7" }, { 0x28C4, "Cameo: EVOS S3" }, { 0x28C5, "Infinity: TF-300 Fresnel" }, { 0x28C6, "Infinity: TS-200C7 Profile" }, { 0x28C7, "Infinity: TS-300 Profile" }, { 0x28C8, "Infinity: TS-150 Profile" }, { 0x28C9, "Illum Technology LLC: XStream" }, { 0x28CA, "Biamino and Figli S.p.A.: BIALEDA01" }, { 0x28CB, "Shenzhen Yuming Vision Technology Co.,Ltd.: YM-RX803" }, { 0x28CC, "ADJ Products: Par Z100 5K" }, { 0x28CD, "ADJ Products: Par Z100 3K" }, { 0x28CE, "ADJ Products: VIZI CMY 300" }, { 0x28CF, "Stage Team: MagicNode" }, { 0x28D0, "GLP German Light Products GmbH: Impression S350" }, { 0x28D1, "CLAYPAKY: K-EYE S10 HCR" }, { 0x28D2, "CLAYPAKY: K-EYE S20 HCR" }, { 0x28D3, "Steinigke Showtechnic GmbH: Sunbar 10" }, { 0x28D4, "ERAL s.r.l.: Paseo Pixel Box Controller" }, { 0x28D5, "Savant Systems LLC: SmartDMX" }, { 0x28D6, "BOOQlight BV: WiFi DMX/RDM Module" }, { 0x28D7, "Dynamic Projection Institute Herstellungs und Vertriebs GmbH: JCD" }, { 0x28D8, "Conceptinectics Technologies and Consultancy Limited: CTC-NEXT" }, { 0x28D9, "Conceptinetics Technologies and Consultancy Limited: CTC-MUFIC" }, { 0x28DA, "Elation Lighting: Eclipse" }, { 0x28DB, "Jumptronic GmbH: ProtocolController" }, { 0x28DC, "Acme: Acme-LED" }, { 0x28DD, "Acme: Acme-LS" }, { 0x28DE, "Acme: Acme-MP" }, { 0x28DF, "Acme: Acme-CM" }, { 0x28E0, "Acme: Acme-TS" }, { 0x28E1, "Acme: Acme-XA" }, { 0x28E2, "Acme: Acme-XP" }, { 0x28E3, "Acme: CM-S6" }, { 0x28E4, "Acme: XP-1000FS" }, { 0x28E5, "Acme: XP-1000SZF" }, { 0x28E6, "Acme: XP-5000NF" }, { 0x28E7, "Acme: XP-5000WZ" }, { 0x28E8, "Acme: TS-150M WW/CW" }, { 0x28E9, "Acme: TS-150 WW/CW" }, { 0x28EA, "Acme: TS-300 WW/CW" }, { 0x28EB, "Acme: TS-300 WW/C" }, { 0x28EC, "Acme: TS-300M WW/CW" }, { 0x28ED, "Acme: LED-MTX36-HEX" }, { 0x28EE, "Acme: LED-MTX36" }, { 0x28EF, "Acme: LP-F2000" }, { 0x28F0, "Acme: LP-F1000" }, { 0x28F1, "Acme: XP-1000WZ" }, { 0x28F2, "Music&Lights S.R.L.: DIAMOND37" }, { 0x28F3, "Music&Lights S.R.L.: STARK1000" }, { 0x28F4, "Steinigke Showtechnic GmbH: EYE-37" }, { 0x28F5, "Acme: TB-1230QW" }, { 0x28F6, "ABLELITE INTERNATIONAL: EVA3715Z" }, { 0x28F7, "ADJ PRODUCTS: VIZI WASH PRO" }, { 0x28F8, "Vsevolod Kozlov: Show Box" }, { 0x28F9, "Tom Bland: Q SYS Plugin" }, { 0x28FA, "Kinescope: Bridge" }, { 0x28FB, "SLS: atmani" }, { 0x28FC, "Daniel Large: STATIS" }, { 0x28FD, "Douglas Heriot: DMX Assistant" }, { 0x28FE, "Douglas Heriot: Diode Control" }, { 0x28FF, "ADJ PRODUCTS: ENCORE BURST 200b" }, { 0x2900, "Integrated System Technologies Ltd: Quattro CVL" }, { 0x2901, "Integrated System Technologies Ltd: iDrive Thor 4" }, { 0x2902, "Jata Tech Ltd: FX Engine" }, { 0x2903, "Integrated System Technologies Ltd: iDrive White knight 24" }, { 0x2904, "Integrated System Technologies Ltd: iDrive White knight 48" }, { 0x2905, "X Laser: Skywriter HPX M 20" }, { 0x2906, "X Laser: Skywriter HPX M 10" }, { 0x2907, "X Laser: Skywriter HPX M 5" }, { 0x2908, "margau: dmxnet" }, { 0x2909, "feno GmbH: fe stile 1312 LED Matrix" }, { 0x290A, "Steinigke Showtechnic GmbH: Stage Pixel Bar 10 WW" }, { 0x290B, "ADJ Products: Encore Burst 200" }, { 0x290C, "Key Lab: BlackTrax Extender" }, { 0x290D, "DJSI SCHINSTAD: Northern Star Polaris v1 5" }, { 0x290E, "ADB STAGELIGHT: LEXPERT FRESNEL M WW" }, { 0x290F, "ADB STAGELIGHT: LEXPERT FRESNEL M CW" }, { 0x2910, "ADB STAGELIGHT: LEXPERT PROFILE L WW" }, { 0x2911, "ADB STAGELIGHT: LEXPERT PROFILE L CW" }, { 0x2912, "ADB STAGELIGHT: LEXPERT PROFILE L" }, { 0x2913, "ChengDuChenyuDianZiKeji: DMX2048CH PRO1" }, { 0x2914, "ChengDuChenyuDianZiKeji: DMX2048CH PRO2" }, { 0x2915, "MLBA Team: Stagehand Live" }, { 0x2916, "Acme: XA 1000F" }, { 0x2917, "xuri: xur" }, { 0x2918, "Infinity: FURION S601 PROFILE" }, { 0x2919, "Infinity: FURION S401 SPOT" }, { 0x291A, "Infinity: FURION S201 SPOT" }, { 0x291B, "Steinigke Showtechnic GmbH: DMX AIO" }, { 0x291C, "HYCL: DMX_SYNC" }, { 0x291D, "HYCL: DMX_Player_32" }, { 0x291E, "HYCL: DMX_Player_16" }, { 0x291F, "HYCL: DMX_Player_8" }, { 0x2920, "HYCL: DMX_Player_1" }, { 0x2921, "HYCL: DMX_Player_4" }, { 0x2922, "ainetauto: LJ" }, { 0x2923, "ADJ Products: Par Z100 RGBW" }, { 0x2924, "LEDBLADE: Creon HD" }, { 0x2925, "Guangzhou Chaoran Computer Co Ltd: EtherNode8" }, { 0x2926, "German Light Products GmbH: impression E350" }, { 0x2927, "Arrigo Lighting: AL A4RGB" }, { 0x2928, "Rosstech Signals: Smart16" }, { 0x2929, "Arrigo Lighting: Arrigo Lighting Liberty 22" }, { 0x292A, "Matthias Bauch Software: LiveLight" }, { 0x292B, "JB Lighting Lichtanlagentechnik GmbH: JB LightingFixtureNode" }, { 0x292C, "Bandhaus Straubing eV: Wireless2DMX Bridge" }, { 0x292D, "ETC Audiovisuel: OnlyView" }, { 0x292E, "RGBlink: TTWO" }, { 0x292F, "RGBlink: TONE" }, { 0x2930, "RGBlink: FLEX 256" }, { 0x2931, "RGBlink: FLEX 128" }, { 0x2932, "RGBlink: FLEX 64" }, { 0x2933, "RGBlink: FLEX 32" }, { 0x2934, "RGBlink: FLEX 16" }, { 0x2935, "RGBlink: FLEX 8" }, { 0x2936, "RGBlink: FLEX RS1" }, { 0x2937, "RGBlink: FLEX 4" }, { 0x2938, "ADJ Products: Flash Kling Strip" }, { 0x2939, "ADJ Products: Flash Kling Batten" }, { 0x293A, "Elation Lighting: EZ Kling" }, { 0x293B, "Qdot Lighting Limited: QNET APP" }, { 0x293C, "X Laser: Mobile Beat Mercury" }, { 0x293D, "X Laser: Skywriter HPX M_2" }, { 0x293E, "dbnetsoft: VirtualDmxLib" }, { 0x293F, "JCSKJ: JC_Controller_X" }, { 0x2940, "ADB STAGELIGHT: KLEMANTIS AS500" }, { 0x2941, "ADB STAGELIGHT: KLEMANTIS AS1000" }, { 0x2942, "CLAYPAKY: AXCOR SPOT 400 HC" }, { 0x2943, "CLAYPAKY: AXCOR SPOT 400" }, { 0x2944, "CLAYPAKY: AXCOR PROFILE 400 HC" }, { 0x2945, "CLAYPAKY: AXCOR PROFILE 400" }, { 0x2946, "CLAYPAKY: AXCOR PROFILE 600 HC" }, { 0x2947, "CLAYPAKY: AXCOR PROFILE 600" }, { 0x2948, "Luminxa: Luminxa1" }, { 0x2949, "Luminxa: Luminxa2" }, { 0x294A, "audioligh: HD217 1" }, { 0x294B, "audioligh: HD217 2" }, { 0x294C, "KWMATIK: PROMYK v1 0" }, { 0x294D, "Rnet Lighting technology limited: R NET DMX Rack" }, { 0x294E, "Astera LED Technology GmbH: 10way Titan Powersupply" }, { 0x294F, "Buehler electronic GmbH LSdigital: DMX Light Interface" }, { 0x2950, "atomica peru: arri skypanel" }, { 0x2951, "GIP Innovation Tools GmbH: LIGEO SL WiFi" }, { 0x2952, "Rethink DMX: node1" }, { 0x2953, "ELATION LIGHTING: CUEPIX PANEL" }, { 0x2954, "ELATION LIGHTING: SIXBAR 1000" }, { 0x2955, "ELATION LIGHTING: SEVEN BATTEN 72" }, { 0x2956, "Hera Led: Hera Ether Node4" }, { 0x2957, "Chauvet Professional: Rogue R1 FXB" }, { 0x2958, "Chauvet Professional: Maverick MK 1 Hybrid" }, { 0x2959, "Chauvet Professional: Maverick MK Pyxis" }, { 0x295A, "Chauvet Professional: Maverick MK2 Profile" }, { 0x295B, "Chauvet Professional: Maverick MK3 Wash" }, { 0x295C, "Chauvet Professional: Maverick MK2 Wash" }, { 0x295D, "Chauvet Professional: Maverick MK1 Spot" }, { 0x295E, "SSG Technology Ltd: SD980 AN" }, { 0x295F, "LKE Lasershow: Frequency Unit" }, { 0x2960, "JUAN FRANCISCO CAMPOS SAA: BM LIGHTS 1 UNIVERSE" }, { 0x2961, "Zboxes Intelligent Technology Shanghai Co Ltd: Zboxes 8" }, { 0x2962, "Guangzhou Ming Jing Stage Light: King Kong Controller" }, { 0x2963, "Fiberli: Node8X" }, { 0x2964, "GLP German Light Products GmbH: KNV Arc" }, { 0x2965, "GLP German Light Products GmbH: KNV Cube" }, { 0x2966, "SmartShow UK: NetTWIN" }, { 0x2967, "SmartShow UK: AirDMXout" }, { 0x2968, "SmartShow UK: AirPixel Quad" }, { 0x2969, "SmartShow UK: AirPixel Mini" }, { 0x296A, "SmartShow UK: AirPixel Micro" }, { 0x296B, "SmartShow UK: NetPixel Quad" }, { 0x296C, "SmartShow UK: NetWS 2040" }, { 0x296D, "SmartShow UK: NetWS 340" }, { 0x296E, "SmartShow UK: NetBuddy" }, { 0x296F, "SmartShow UK: NetDMX" }, { 0x2970, "Pulsar: Node1" }, { 0x2971, "PXM: Px760" }, { 0x2972, "PXM: Px314" }, { 0x2973, "Ambion Gmbh Ambrain: Flex Led Gate" }, { 0x2974, "Guangzhou ChaiYi Light CO Ltd: DMXGate" }, { 0x2975, "Digital Projection: Titan Laser Projector" }, { 0x2976, "CLAY PAKY: ALEDA BEAM 200" }, { 0x2977, "CLAY PAKY: SHARPY PLUS" }, { 0x2978, "Chauvet Professional: Epix Flex Drive" }, { 0x2979, "Arrigo Lighting: AL WS2812B" }, { 0x297A, "Roleds: RTG180" }, { 0x297B, "Audiowerk: LC1" }, { 0x297C, "NOVA: LED" }, { 0x297D, "Martin: MAC Allure Profile" }, { 0x297E, "Lifetime Music Academy: Light SPECTRUM" }, { 0x297F, "City Theatrical: Multiverse Gateway" }, { 0x2980, "City Theatrical: Multiverse Transmitter" }, { 0x2981, "Rosstech Signals: MatrixView" }, { 0x2982, "CLAY PAKY: AXCOR PROFILE 900 6K LN" }, { 0x2983, "CLAY PAKY: AXCOR PROFILE 900 8K LN" }, { 0x2984, "CLAY PAKY: HY_B EYE K25" }, { 0x2985, "CLAY PAKY: HY_B EYE K15" }, { 0x2986, "D5 systems: Lighting Network Toolset" }, { 0x2987, "ADB STAGELIGHT: OKSALIS FL20" }, { 0x2988, "ADB STAGELIGHT: OKSALIS FL10" }, { 0x2989, "CLAY PAKY: AXCOR WASH 600 HC" }, { 0x298A, "CLAY PAKY: AXCOR WASH 600" }, { 0x298B, "CLAY PAKY: AXCOR PROFILE 600 HC ST" }, { 0x298C, "CLAY PAKY: AXCOR PROFILE 600 ST" }, { 0x298D, "atmosphere media gmbH: atmosphere media player" }, { 0x298E, "DTS Illuminazione srl: DRIVENET 1664" }, { 0x298F, "DTS Illuminazione srl: DRIVENET 416 POWER" }, { 0x2990, "DTS Illuminazione srl: DRIVENET 416" }, { 0x2991, "DTS Illuminazione srl: DRIVENET 832 POWER" }, { 0x2992, "DTS Illuminazione srl: DRIVENET 832" }, { 0x2993, "DTS Illuminazione srl: SYNERGY 5 SPOT" }, { 0x2994, "DTS Illuminazione srl: SYNERGY 5 PROFILE" }, { 0x2995, "Guangzhou JinZhiHui Electronic Technology Co: TOP 1440 LED RGB STROBE" }, { 0x2996, "Creative Lighting: eDIDIO 8 pole" }, { 0x2997, "Creative Lighting: eDIDIO 4 pole" }, { 0x2998, "ADB STAGELIGHT: ORKIS FOCUS SPOT" }, { 0x2999, "Waves System: Event Video Player" }, { 0x299A, "SQD lighting Co Limited: LED lighting fixtures series" }, { 0x299B, "BSL BV: Epikon" }, { 0x299C, "Shenzhen Lei Fei Lighting Technology Co Ltd: LiteMeta Controller 2" }, { 0x299D, "Shenzhen Lei Fei Lighting Technology Co Ltd: LiteMeta Controller 16" }, { 0x299E, "Shenzhen Lei Fei Lighting Technology Co Ltd: LiteMeta Controller 8" }, { 0x299F, "Pulsar: Luxinode" }, { 0x29A0, "Integrated System Technology Ltd: White Knight 24 Emergency" }, { 0x29A1, "Integrated System Technology Ltd: White Knight 36_1600" }, { 0x29A2, "EMP Designs Ltd: EMP1" }, { 0x29A3, "MCINTIRE ENTERPRISES INC: 24 CH Dimmer" }, { 0x29A4, "AMOLVIN: DMX NODE" }, { 0x29A5, "Guangzhou HuaYong Intelligent Technology Co Ltd: HuaYong Controller" }, { 0x29A6, "Philips Controller 32: Signify China Investment Co Ltd" }, { 0x29A7, "Signify Investment Co Ltd: Philips Controller 24" }, { 0x29A8, "Signify Investment Co Ltd: Philips Controller 16" }, { 0x29A9, "Signify Investment Co Ltd: Philips Controller 8" }, { 0x29AA, "Signify Investment Co Ltd: Philips Controller 2" }, { 0x29AB, "ER Productions: ER Display V1" }, { 0x29AC, "Shenzhen Leifei Lighting Technology Co Ltd: LiteMeta Controller 32" }, { 0x29AD, "Impolux GmbH: ULTIM8 ST16 O" }, { 0x29AE, "Martin Professional: MAC Allure Wash PC" }, { 0x29AF, "Shenzhen Leifei Lighting Technology Co Ltd: LiteMeta Controller 24" }, { 0x29B0, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node" }, { 0x29B1, "Alex Sagias: PixLed" }, { 0x29B2, "GLP German Light Products GmbH: Highlander" }, { 0x29B3, "Edelmann Electronics: Enigma2Kxx" }, { 0x29B4, "PR LIGHTING LTD: PR Lighting 1" }, { 0x29B5, "Wiktor Kaluzny: DMX BOX" }, { 0x29B6, "GLP German Light Products GmbH: Impression W350" }, { 0x29B7, "nox multimedia GmbH: NAN 8" }, { 0x29B8, "ON LX Limited: Ctrl" }, { 0x29B9, "HYCL: DMX Player Super 4" }, { 0x29BA, "HYCL: DMX Player Super 8" }, { 0x29BB, "HYCL: DMX Player Super 16" }, { 0x29BC, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node 4P OD" }, { 0x29BD, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node 8P" }, { 0x29BE, "Guangzhou ChaiYi Light CO Ltd: TEKMAND Node 4P" }, { 0x29BF, "HYCL: dmx player 512" }, { 0x29C0, "HYCL: dmx player 256" }, { 0x29C1, "HYCL: dmx player 64" }, { 0x29C2, "HYCL: dmx player 2" }, { 0x29C3, "PR LIGHTING LTD: PR Lighting 2" }, { 0x29C4, "Spacelights: spacenet1i" }, { 0x29C5, "Spacelights: spacenet2o" }, { 0x29C6, "Event Imagineering Group: ShowKontrol" }, { 0x29C7, "Brink Ventures LLC: Blackout Lighting Console" }, { 0x29C8, "Integrated System Technology Ltd: White Knight 48 DC" }, { 0x29C9, "Integrated System Technology Ltd: White Knight 24 DC" }, { 0x29CA, "Integrated System Technology Ltd: Thor16 Silent 500W" }, { 0x29CB, "Integrated System Technology Ltd: White Knight 24 Silent 500W" }, { 0x29CC, "THELIGHT Luminary for Cine and TV SL: EVO 2x2 STUDIO" }, { 0x29CD, "THELIGHT Luminary for Cine and TV SL: EVO 2x2 WEATHERPROOF" }, { 0x29CE, "THELIGHT Luminary for Cine and TV SL: EVO 2 STUDIO" }, { 0x29CF, "THELIGHT Luminary for Cine and TV SL: EVO 2 WEATHERPROOF" }, { 0x29D0, "THELIGHT Luminary for Cine and TV SL: EVO 1 STUDIO" }, { 0x29D1, "THELIGHT Luminary for Cine and TV SL: EVO 1 WEATHERPROOF" }, { 0x29D2, "Exacta: CCL PC" }, { 0x29D3, "Light Converse Ltd: LIGHTCONVERSE TOOLS" }, { 0x29D4, "Lumos Design: Lumos Node 4" }, { 0x29D5, "CLAY PAKY: XTYLOS" }, { 0x29D6, "SZe Schneider Zirr engineering GmbH: CF Player A FullHD2 0" }, { 0x29D7, "VL software: Arthur Maxi" }, { 0x29D8, "eX Systems: RGB Floodlight" }, { 0x29D9, "DCLX Ltd: Pixel Sabre" }, { 0x29DA, "HDL: DMXNode8" }, { 0x29DB, "Luminex Lighting Control Equipment: LumiNode 12" }, { 0x29DC, "Luminex Lighting Control Equipment: LumiNode 4" }, { 0x29DD, "Luminex Lighting Control Equipment: LumiNode 2" }, { 0x29DE, "Luminex lighting Control Equipment: LumiNode 1" }, { 0x29DF, "MaNiMa Technologies BV: MaNiMa LED interface" }, { 0x29E0, "xinqidian: ganelight" }, { 0x29E1, "LIGHTLINE Lasertechnik GmbH: Laserlink" }, { 0x29E2, "HYCL: BootLoader" }, { 0x29E3, "Disguise: Disguise Production Toolkit" }, { 0x29E4, "Equivalent: LSEthernetToDMX" }, { 0x29E5, "Equivalent: EtherConDMX8" }, { 0x29E6, "Equivalent: LSDW_2435E" }, { 0x29E7, "Equivalent: LSDR 123E" }, { 0x29E8, "Equivalent: LSDR 65E" }, { 0x29E9, "Chauvet Lighting: Ovation B 1965FC" }, { 0x29EA, "Chauvet Lighting: Ovation B 1965FC" }, { 0x29EB, "WangMing: WangMing" }, { 0x29EC, "ADJ PRODUCTS: ALLEGRO Z6" }, { 0x29ED, "EQUIPSON S A: LSNODE4" }, { 0x29EE, "EQUIPSON S A: LSNODE2" }, { 0x29EF, "EQUIPSON S A: LSNODE1" }, { 0x29F0, "Chauvet Professional: Maverick MK3 Profile CX" }, { 0x29F1, "Chauvet Professional: Maverick MK3 Spot" }, { 0x29F2, "Chauvet Professional: Maverick MK3 Profile" }, { 0x29F3, "Chauvet Professional: Colorado Solo Batten 4" }, { 0x29F4, "Chauvet Professional: Colorado Solo Batten" }, { 0x29F5, "Light Converse Ltd: LIGTHCONVERSE TOOLS" }, { 0x29F6, "DP Lumi: DP Lumi Pro" }, { 0x29F7, "Martin Professional: VDO Atomic Dot WRM" }, { 0x29F8, "Martin Professional: VDO Atomic Dot CLD" }, { 0x29F9, "GLP German Light Products GmbH: KNV PSU" }, { 0x29FA, "GLP German Light Products GmbH: Impression FR10 Bar" }, { 0x29FB, "Guangzhou ChaiYi Light CO Ltd: Replay Server" }, { 0x29FC, "DTS Illuminazione srl: Alchemy5" }, { 0x29FD, "Vibesta BV: RTX1" }, { 0x29FE, "Echoic Tech LLC: Mach1 LED Controller" }, { 0x29FF, "GuangZhou Ming jing stage lighting equipment co LTD: KingKongBaton" }, { 0x2A00, "Blue Ridge Concepts Inc: EladniDesktop" }, { 0x2A01, "DTS Illuminazione srl: Alchemy3" }, { 0x2A02, "Crew Light: VController" }, { 0x2A03, "KappaStyle Productions: KappaNode2" }, { 0x2A04, "Blinkinlabs: SuperSweet" }, { 0x2A05, "Coretronic Corporation: Projector" }, { 0x2A06, "Guangzhou ChaiYi Light CO Ltd: General Purpose Device" }, { 0x2A07, "NEC Display Solutions LTD: Projector" }, { 0x2A08, "NEC Display Solutions LTD: Flat Panel Display" }, { 0x2A09, "WA Benjamin: PMP Power Metering Panel" }, { 0x2A0A, "HYCL: IOT Update" }, { 0x2A0B, "HYCL: RDM Player 1" }, { 0x2A0C, "HYCL: RDM Player 2" }, { 0x2A0D, "HYCL: RDM Player 4" }, { 0x2A0E, "HYCL: RDM Player 8" }, { 0x2A0F, "Elation Lighting: Pixel Driver 1000IP" }, { 0x2A10, "Integrated System Technology Ltd: White Knight 12" }, { 0x2A11, "Sigma Net: BlueDMX" }, { 0x2A12, "BonKon: DMX Link Pro1" }, { 0x2A13, "VANRAY: DMX LINK PRO" }, { 0x2A14, "Chauvet Professional: Maverick Silens 2 Profile" }, { 0x2A15, "Fiberli: Node4X" }, { 0x2A16, "Ocular BVBA: Ocularium" }, { 0x2A17, "Showtacle Ltd: THE UPGRADE" }, { 0x2A18, "Showtacle Ltd: Moncha2" }, { 0x2A19, "zhsj: Video control" }, { 0x2A1A, "Archon: Archon Dev" }, { 0x2A1B, "Tristan Leonid Zoltan Thiltges: Lightsculptures" }, { 0x2A1C, "Elation Lighting: RDM 6XL" }, { 0x2A1D, "Elation Lighting: RDM 645" }, { 0x2A1E, "Elation Lighting: RMD 10" }, { 0x2A1F, "Elation Lighting: EP4" }, { 0x2A20, "Elation Lighting: EN4" }, { 0x2A21, "Elation Lighting: EN12" }, { 0x2A22, "Kyle Hensel: Node js API" }, { 0x2A23, "Showart: DMXrecorder" }, { 0x2A24, "ON LX Limited: CommsKit" }, { 0x2A25, "Guangzhou ChaiYi Light CO Ltd: Air Gate" }, { 0x2A26, "SmartShow UK: NetPixel ONE" }, { 0x2A27, "SmartShow UK: AirPixel ONE" }, { 0x2A28, "Pixout SIA: Pixout Controller" }, { 0x2A29, "Steinigke Showtechnic: EYE 740" }, { 0x2A2A, "ADJ Group: Pixie Driver 2K" }, { 0x2A2B, "Belayingpin com: BPC Video Server" }, { 0x2A2C, "Lucenti: Blackwave PixlDrive" }, { 0x2A2D, "Integrated System Technologies: iDrive Workshop" }, { 0x2A2E, "R S Schwarze Elektrotechnik Moderne Industrieelektronik GmbH: SG 4" }, { 0x2A2F, "Sigma Net: Light Magic" }, { 0x2A30, "Paulo Macedo: WIFIpixel" }, { 0x2A31, "DATALED: DATALED-NET" }, { 0x2A32, "ADB STAGELIGHT: ORKIS PROFILE M" }, { 0x2A33, "CLAY PAKY: REFLECTXION" }, { 0x2A34, "Offstage Controls: Unlicensed OCPE" }, { 0x2A35, "PXM: Px786" }, { 0x2A36, "PXM: Px785" }, { 0x2A37, "Suga koubou Co Ltd: DMX Recorder" }, { 0x2A38, "CLAY PAKY: ALQIMYA" }, { 0x2A39, "Offstage Controls: Kilo Gate I" }, { 0x2A3A, "Offstage Controls: Kilo Gate O" }, { 0x2A3B, "Offstage Controls: Kilo Gate IO" }, { 0x8000, "Artistic Licence Engineering Ltd: Netgate XT" }, { 0x8001, "Artistic Licence Engineering Ltd: Net-Patch" }, { 0x8002, "Artistic Licence Engineering Ltd: DMX-Hub XT" }, { 0x8003, "Artistic Licence Engineering Ltd: Four-Play" }, { 0xFFFF, "Artistic Licence Engineering Ltd: OemGlobal" }, { 0, NULL } }; static value_string_ext artnet_oem_code_vals_ext = VALUE_STRING_EXT_INIT(artnet_oem_code_vals); static const value_string artnet_esta_man_vals[] = { { 0x0000, "ESTA/PLASA" }, { 0x0001, "GEE" }, { 0x0002, "Abstract AVR Ltd." }, { 0x005A, "TPD Lighting" }, { 0x006A, "AIMTECH Electronik Tasarim Ltd. Sti." }, { 0x006B, "SALZBRENNER media GmbH" }, { 0x006C, "Flash-Butrym Sp.J." }, { 0x006D, "AA Tasarim Ltd." }, { 0x006E, "WHITEvoid GmbH" }, { 0x006F, "AC Power Distribution/ACT Lighting Inc." }, { 0x0070, "Instalighting GmbH" }, { 0x0071, "Guangzhou Huaxinyuan Electronics Co., Ltd." }, { 0x0072, "Guangzhou Zenith Aurora Lighting Co., Ltd." }, { 0x0073, "Meijay Technologies Co., Ltd." }, { 0x0074, "Thomann GmbH" }, { 0x0075, "ODELI" }, { 0x0076, "R. S. Schwarze Elektrotechnik Moderne Industrieelektronik GmbH" }, { 0x0077, "CHAMP Licht" }, { 0x0078, "Andy Lighting Technology Group Ltd." }, { 0x0079, "Leyard Opto Electronics Co., Ltd." }, { 0x007A, "Equivalent" }, { 0x007B, "alurays lighting technology GmbH" }, { 0x007C, "Huizhou Desay Intelligent Technology Co., Ltd." }, { 0x0080, "Shenzhen AOTO Electronics Co., Ltd." }, { 0x0081, "Pino Solutions" }, { 0x0082, "LKE Lasershowtechnik GmbH" }, { 0x0083, "Guangzhou Bright Moon Technology Co., Ltd." }, { 0x0084, "LEDIXIS (Exalux brand)" }, { 0x0085, "Guangzhou Nanshi Light Equipment Co., Ltd." }, { 0x0086, "Intella System Co., Ltd." }, { 0x0087, "LMBD" }, { 0x0088, "Guangzhou YaFeng Optoelectronic Equipment Co., Ltd." }, { 0x0089, "Vulcan Lighting" }, { 0x008A, "Guangzhou Lees Electronics Co., Ltd." }, { 0x008B, "Opto Tech Corporation" }, { 0x008C, "LRX Lighting (Dwight Crane Ltd.)" }, { 0x008D, "Guangzhou Minghao Electronic Technology Co., Ltd." }, { 0x008E, "Guangzhou Ao Mei Di Stage Lighting Equipment Co.,Ltd." }, { 0x008F, "Jiangmen Coolfish Technology Co., Ltd." }, { 0x0090, "Cyclops Lighting" }, { 0x0091, "Guangzhou Shuozhi Optoelectronic Technology Co., Ltd. (Konelite)" }, { 0x0092, "digiLED (UK) Ltd." }, { 0x0093, "Luminous Show Technology Ltd." }, { 0x0094, "Joinmax Display Technology Co., Ltd." }, { 0x0095, "Ningbo Jeg Lighting Tech Co., Ltd." }, { 0x009A, "Guangzhou Haoyang Electronic Co., Ltd." }, { 0x009B, "Guangzhou Jiawei Electronic Technology Co., Ltd." }, { 0x009C, "LuxBalance Lighting" }, { 0x009E, "Guangzhou Flying Butterfly Stage Lighting Equipment Co., Ltd." }, { 0x009F, "Efore SpA" }, { 0x00A0, "Shenzhen Dicolor Optoelectronics Co., Ltd." }, { 0x00A1, "Creative Lighting And Sound Systems Pty Ltd." }, { 0x00A2, "EMP Designs Ltd." }, { 0x00A3, "GuangZhou Huanshi Lighting Equipment Co., Limited" }, { 0x00A4, "SAKMA Electronica Industrial S.A.U." }, { 0x00A6, "Sensation Lighting Technology Co., Ltd." }, { 0x00A7, "Syncronorm GmbH" }, { 0x00A8, "Iwasaki Electric Co., Ltd." }, { 0x00A9, "Richter Lighting Technologies GmbH" }, { 0x00AA, "Hangzhou Easun Technology Co., Ltd." }, { 0x00AB, "MFX Asia Co., Ltd" }, { 0x00AC, "ZhouChuang Industrial Co. Limited" }, { 0x00AD, "ColorDeve Co. Limited" }, { 0x00AE, "Vitrulux Ltd" }, { 0x00AF, "NanoPLC LLC" }, { 0x00B0, "ARENA LUCI s.r.l." }, { 0x00B1, "Guangzhou Omarte Lighting Co., Ltd." }, { 0x00B2, "unonovesette srl" }, { 0x00B3, "LANTERN" }, { 0x00B4, "Lumos Design" }, { 0x00B5, "Suga koubou Co., Ltd." }, { 0x00B6, "DiGidot Technologies BV" }, { 0x00B7, "Bron Elektronik AG" }, { 0x00B8, "Shenzhen Singba Light Technology Co., Ltd." }, { 0x00B9, "Guangzhou Baiyun District Sanjie Electronic Stage Lighting Audio Equipment Factory" }, { 0x00BA, "LiteGear Inc." }, { 0x00BB, "Digital Lighting Engineering & Design, LLC" }, { 0x00BC, "Ambion GmbH (Ambrain)" }, { 0x00BD, "numeo GmbH" }, { 0x00BE, "The Light Luminary for Cine and TV S.L. (VELVET LIGHT)" }, { 0x00BF, "GTR Industries" }, { 0x00C0, "Foshan Yinhe Lanjing Lighting & Electrical Co., Ltd." }, { 0x00C1, "Jingchuang Water Technology" }, { 0x00C2, "Ledogen" }, { 0x00C3, "Xicato" }, { 0x00C4, "Guangzhou Dahe Electronic Technology Co. Ltd." }, { 0x00C5, "DAGE Stage Lighting Master Co., Ltd." }, { 0x00C6, "Guangzhou Lantian Electronic Technology Co., Ltd." }, { 0x00C7, "THOR" }, { 0x0101, "St. Anne Engineering GmbH" }, { 0x0102, "Bortis Elektronik" }, { 0x0103, "Fontana Technologies" }, { 0x0104, "Blizzard Lighting, LLC" }, { 0x0105, "LIGHTHOW (SHANGHAI) Ltd." }, { 0x0106, "A.L.A. Equipment Company Ltd." }, { 0x0107, "Inventronics (Hangzhou), Inc." }, { 0x0108, "Haya Lighting Equipment Limited" }, { 0x0109, "V-Productions" }, { 0x010A, "Elektralite" }, { 0x010B, "DesignLED Technology (HK) Co., Ltd." }, { 0x010C, "SES (Entertainment Services) Ltd." }, { 0x010D, "Lumos / DMLite" }, { 0x010E, "Guangzhou ATON Lighting Technology Co.,Ltd" }, { 0x010F, "Saco Technologies Inc." }, { 0x0110, "APF S.r.l." }, { 0x0111, "Radig Hard & Software" }, { 0x0112, "RGB Lighting Equipment Co., Ltd." }, { 0x0113, "Airstar SAS" }, { 0x0114, "BSL Lighting" }, { 0x0115, "Kontrolcla Show Control S.L." }, { 0x0116, "SmoothLUX B.V." }, { 0x0117, "AD Toyo Lighting (Guangzhou) Co.,Ltd" }, { 0x0118, "Vello Light Co., Ltd." }, { 0x0119, "Peter Schneyder Design Management GmbH" }, { 0x011A, "Guangzhou Hotion Technology Co., Ltd." }, { 0x011B, "Jumptronic GmbH" }, { 0x011C, "Letong Electronic (Guangzhou) Co., Ltd." }, { 0x011D, "Yangzhou Zhituo Lighting Vision Technology Co., Ltd." }, { 0x011E, "Master LED" }, { 0x016C, "LGR" }, { 0x016D, "Hive Lighting" }, { 0x016E, "Artled Technology Corp." }, { 0x016F, "SQD Lighting Co. Ltd" }, { 0x018F, "Guangzhou YiCheng Light Industry Ltd." }, { 0x0190, "Wizlogics Co., Ltd." }, { 0x0191, "Sycra Technologies" }, { 0x0199, "Ocean LED Marine Ltd." }, { 0x019A, "TwoGain Electronics" }, { 0x019B, "ElectroTAS Soluciones Profesionales" }, { 0x019F, "DaisaLed Ltd." }, { 0x01A0, "Light With LED" }, { 0x01A1, "Yuesheng Stage Light Limited" }, { 0x01A2, "Art Lighting Production, s.r.o." }, { 0x01A3, "Dongguan Yongya Technology Co., Ltd" }, { 0x01A4, "Custom Effects LED Solutions Inc." }, { 0x01A5, "MJ Lighting Co., Ltd." }, { 0x01A6, "Hengmei Lighting Technology Co., Ltd." }, { 0x01A8, "ZongDa Photoelectricity Science and Technology Co., Ltd." }, { 0x01A9, "Shenzhen Uniview LED Ltd. Co." }, { 0x01AA, "Vitec Videocom Inc." }, { 0x01AB, "Shanghai Euchips Industrial Co., Ltd." }, { 0x01AC, "DongGuan Phcistar Optoelectronics Technology Co., Ltd." }, { 0x01AF, "Hunan Minghe Opto Tech Co., Ltd." }, { 0x01B1, "Lightcare A/S" }, { 0x01B2, "DJSI Schinstad ANS (Northern Light)" }, { 0x01B3, "Ricardo Dias" }, { 0x01B4, "Inventeq B.V." }, { 0x01B5, "Beijing Soft Rock Technology Development Co., Ltd." }, { 0x01BE, "BEN-RI Electronica S.A." }, { 0x01C7, "SCHIEDERWERK GmbH" }, { 0x01C8, "Guangzhou JINLIN Stage Lighting Equipment Co., Ltd." }, { 0x01C9, "ALPHA LITE Inc." }, { 0x01CA, "CASCADE s.a.s." }, { 0x01CB, "ILT Italy SRL" }, { 0x01CC, "Portman Custom Lights" }, { 0x01CD, "Compulite Systems (2000) LTD" }, { 0x01CE, "Railiks Enterprises" }, { 0x01CF, "SRM Technik GmbH" }, { 0x01D0, "Shanghai Semping Electronics Co., Ltd." }, { 0x01D1, "Yarilo Pro" }, { 0x01D2, "GIP Innovation Tools GmbH" }, { 0x01D3, "JSC Aksera" }, { 0x01D4, "x-labs" }, { 0x01D5, "Shenzhen Liantronics Co., Ltd" }, { 0x01D6, "Argent Data Systems, Inc." }, { 0x01D7, "LIMEDIA" }, { 0x01D8, "Daniel Large Lighting" }, { 0x01D9, "Lightronics Inc." }, { 0x01DA, "Guangzhou Daisy Electronic Technology Co., Ltd." }, { 0x01DB, "Logen Ltd." }, { 0x01DC, "LED Linear GmbH" }, { 0x01DD, "Photonia srl" }, { 0x01DE, "Guangzhou Baiyun Xinxiang Lighting Equipment Factory (XPRO LIGHT)" }, { 0x01DF, "GuangZhou Dream Lighting Equipment Co., Ltd." }, { 0x01E0, "IBN Labs Ltd." }, { 0x0200, "Lighting Infusion LLC" }, { 0x0201, "Blinkinlabs, LLC" }, { 0x0202, "Paul Heuts" }, { 0x0203, "Artemide S.p.A" }, { 0x0204, "LIGHTLINE Lasertechnik GmbH" }, { 0x0205, "SmartShow UK" }, { 0x0206, "Studio Due Light S.r.l." }, { 0x0207, "SILL LIGHTS GmbH" }, { 0x0208, "Shenzhen Yuming Vision Technology Co., Ltd." }, { 0x0209, "ER Productions" }, { 0x020A, "Seebacher GmbH" }, { 0x0235, "Company 235, LLC" }, { 0x0242, "ABLELITE INTERNATIONAL" }, { 0x025B, "Imlight-Showtechnic" }, { 0x026F, "Acuity Brands Lighting Inc." }, { 0x0280, "Arrigo Lighting" }, { 0x028F, "GRE Alpha Electronics Ltd." }, { 0x02A0, "LLC Likhoslavl Plant of Lighting Engineering (Svetotehnika)" }, { 0x02A1, "LLC Moscow Experimental Lighting Plant (TeleMechanic)" }, { 0x02A2, "OJSC Kadoshkinsky electrotechnical" }, { 0x02A3, "Big Bang Lightning" }, { 0x02A4, "McNicoll Entertainment Systems" }, { 0x02AA, "Jinnax Opto Technology Co., Ltd." }, { 0x02AB, "Rift Labs" }, { 0x02AC, "PSL Electronik Sanayi ve Ticaret A.S." }, { 0x02B0, "DMXControl-Projects e.V." }, { 0x02BD, "RE-Engineering" }, { 0x02C8, "Growflux LLC" }, { 0x02C9, "Theatrixx Technologies" }, { 0x02CA, "Acclaim Lighting" }, { 0x02CB, "GVA Lighting, Inc." }, { 0x02CC, "Brightix" }, { 0x02D0, "Winona Lighting" }, { 0x02D1, "Hoffmeister Leuchten GmbH" }, { 0x02E1, "Tait Towers Manufacturing Inc." }, { 0x02E2, "CLF Lighting BV." }, { 0x02EA, "d3 Technologies Ltd." }, { 0x02EB, "Amolvin Research & Development Lab." }, { 0x02EC, "Lutron Electronics" }, { 0x02ED, "OpenLX SP Ltd." }, { 0x02EE, "Firma GUTKOWSKI - Gutkowski Jan" }, { 0x02EF, "ABLETECH Co., Ltd." }, { 0x02F0, "iColor LED Shenzhen Co., Ltd." }, { 0x02FF, "Guangzhou Eway Stage Equipment Technology Co., Ltd." }, { 0x0302, "Swefog Technology Group AB" }, { 0x0303, "Shanghai Moons' Automation Control Co., Ltd" }, { 0x0305, "DiCon Fiberoptics, Inc." }, { 0x0306, "feno GmbH" }, { 0x0307, "Ledium Kft." }, { 0x0308, "ImageCue LLC" }, { 0x030A, "Shenzhen Colordreamer Technology Co., Ltd." }, { 0x030F, "Guangzhou Litewise Lighting Equipments Co., Ltd. dba/EK Lights" }, { 0x0311, "Guangzhou PUGUANG Electronic Technology Co., Ltd." }, { 0x0312, "Guangzhou Xingkong Studio Lighting Co., Ltd." }, { 0x032C, "Carallon Ltd." }, { 0x033A, "Lux Lumen" }, { 0x034B, "Rosstech Signals Inc." }, { 0x038F, "Strich Labs" }, { 0x0391, "Alcorn McBride Inc." }, { 0x0393, "i2Systems" }, { 0x0394, "Prism Projection" }, { 0x039B, "Lightforce Lasertechnik" }, { 0x03A1, "INAREX INC." }, { 0x03A2, "licht.team" }, { 0x03AA, "AIGA Electronic (GuangZhou) Co., Ltd." }, { 0x03D5, "eX Systems" }, { 0x03D6, "i-Lumen" }, { 0x0404, "Luminxa" }, { 0x0424, "FLUX ECLAIRAGE" }, { 0x0440, "Guangzhou VAS Lighting Co., Ltd." }, { 0x044E, "Ben Peoples Industries, LLC" }, { 0x044F, "B2 Co., Ltd." }, { 0x0455, "Lamp & Pencil" }, { 0x048E, "Krisledz Pte. Ltd." }, { 0x048F, "Grand Canyon LED Lighting System (Suzhou) Co., Ltd." }, { 0x04A6, "MEB Veranstaltungstechnik GmbH" }, { 0x04A9, "Edward J. Keefe Jr." }, { 0x04B5, "Major" }, { 0x04B6, "IntiLED" }, { 0x04B8, "Guangzhou Hongcai Stage Equipment Co., Ltd." }, { 0x04C4, "Ephesus Lighting, Inc." }, { 0x04D7, "Targetti Sankey Spa" }, { 0x04D8, "Guangzhou Hong Yuan Electronic Technology Co., LTD." }, { 0x04DD, "Topstriving Photoelectricity Technology Co., Ltd." }, { 0x04FC, "Syncrolite LLC" }, { 0x050A, "ChamSys Ltd." }, { 0x051C, "Ambitsel, Inc." }, { 0x0529, "OSRAM" }, { 0x0537, "TERMINAL-COM" }, { 0x0540, "EverBrighten Co., Ltd." }, { 0x0555, "Maresch Electronics" }, { 0x0556, "RAYSYS" }, { 0x055F, "PRO-SOLUTIONS" }, { 0x056B, "COSMOLIGHT SRL" }, { 0x056C, "Lumascape Lighting Industries" }, { 0x0573, "JIAXING XINHUALI LIGHTING & SOUNDING CO., LTD." }, { 0x0580, "Innovation LED Limited" }, { 0x0586, "K 5600, Inc." }, { 0x0588, "GuangZhou XiangMing Light Limited" }, { 0x05A0, "Stage Smarts AB" }, { 0x05AB, "Shenzhen Lesan Lighting Co., Ltd." }, { 0x05B5, "Turkowski GmbH" }, { 0x05CF, "Brighten Technology Development Co., Ltd." }, { 0x05D3, "D-LED Illumination Technologies Ltd." }, { 0x05E2, "KORRO PLUS" }, { 0x05EB, "GUANGZHOU BO WEI TE LIGHTING CO.LTD" }, { 0x05EF, "Guangzhou Chai Yi Light Co., Ltd." }, { 0x05F7, "Immersive Design Studios Inc." }, { 0x0606, "Guangzhou YiGuang Stage Lighting Co., Ltd." }, { 0x0609, "Diginet Control Systems Pty Ltd" }, { 0x060A, "Kindwin Opto Electronic (ShenZhen) Co. Ltd" }, { 0x060B, "Lighting Science Group (formerly LED Effects, Inc.)" }, { 0x060D, "HANIL TNC CO.,LTD" }, { 0x0623, "JAS LIGHTING & SOUND CO., LTD." }, { 0x062B, "CKC Lighting Co., Ltd." }, { 0x063A, "AVM Belgium BVBA" }, { 0x063C, "LaserNet" }, { 0x0644, "COLEDER DISPLAY CO., LTD." }, { 0x0645, "MATSUMURA ELECTRIC MFG. CO. , LTD." }, { 0x0650, "RDC, Inc. d.b.a. LynTec" }, { 0x0653, "USAI, LLC" }, { 0x0654, "HUNAN XIANG CAIXU FILM AND TELEVISION CULTURE CO.LTD" }, { 0x0658, "AZCOLOR LITE CO., LIMITED" }, { 0x065E, "OFilms" }, { 0x066F, "GUANGZHOU CY LIGHTING EQUIPMENT CO.,LTD" }, { 0x067C, "LOTRONIC SA" }, { 0x0682, "Beijing Ming Rui Lighting Technology Co., Ltd." }, { 0x0684, "LEDART LLC" }, { 0x0685, "IBL/ESD-Datentechnik GmbH" }, { 0x068E, "GUANGZHOU TEANMA STAGE LIGHTING FACTORY" }, { 0x0696, "SHENZHEN HOION LIGHTING CO.,LTD" }, { 0x06A0, "Light.Audio.Design" }, { 0x06A1, "ProTec GmbH" }, { 0x06A3, "RODLIGHT ALBRECHT SILBERBERGER" }, { 0x06AC, "GOLVER PROJECTS S.L." }, { 0x06AE, "CANARA LIGHTING INDUSTRIES PVT LTD" }, { 0x06B3, "NANOLUMENS, INC." }, { 0x06B9, "GUANGZHOU DASEN LIGHTING CORPORATION LIMITED" }, { 0x06C4, "RHENAC Systems GmbH" }, { 0x06C7, "L&L Luce&Light" }, { 0x06CE, "American-Pro International" }, { 0x06E1, "Burck IT GmbH & Co. KG" }, { 0x06E6, "Equipson S.A." }, { 0x06EC, "SISTEMA Jsc" }, { 0x06F0, "CTG sp. z o.o." }, { 0x0702, "Drinelec" }, { 0x0707, "Conceptinetics Technologies and Consultancy Ltd." }, { 0x0708, "AK-LIGHT" }, { 0x070C, "Pixout SIA" }, { 0x070F, "Theatrelight New Zealand" }, { 0x0710, "D.T.S. Illuminazione srl" }, { 0x0712, "Laser Imagineering GmbH" }, { 0x071F, "Moss LED Inc" }, { 0x0724, "PHC Lighting & BMS Sp. z o.o." }, { 0x072B, "NEWSUBSTANCE Ltd." }, { 0x072C, "SGM A/S" }, { 0x072F, "RayComposer - R. Adams" }, { 0x0732, "Galaxia Electronics" }, { 0x0734, "CPOINT" }, { 0x073B, "Corsair Technology Ltd." }, { 0x0745, "Guangzhou Wingo Stage Light Co., Ltd" }, { 0x074F, "Panasonic Corporation" }, { 0x0753, "F&V Europe B.V." }, { 0x0758, "IMPOLUX GmbH" }, { 0x075F, "LEDEngin Inc." }, { 0x076A, "BeamZ (Tronios B.V.)" }, { 0x0776, "lumenetix" }, { 0x078A, "FATEC sarl" }, { 0x0792, "MY-Semi Inc." }, { 0x07A3, "Guangzhou GBR PROLIGHT GROUP CO.,LTD (GBR PROLIGHT)" }, { 0x07AD, "CLS LED BV" }, { 0x07AE, "A-LITE B.V." }, { 0x07B0, "ADDiCTiON BoX GbR" }, { 0x07B1, "TBF-PyroTec GmbH" }, { 0x07B5, "ARM Automation, Inc" }, { 0x07C0, "Code Mercenaries GmbH" }, { 0x07C2, "BOOQlight BV" }, { 0x07CC, "Griven S.r.l." }, { 0x07CF, "MH-Sound" }, { 0x07D1, "Made By Mouse LTD" }, { 0x07D5, "PHIDA Stage Equipment Co., Ltd" }, { 0x07DA, "Flytech s.r.l." }, { 0x07E8, "ROCKETSIGN Technology HK Ltd" }, { 0x07EA, "Le Maitre Ltd" }, { 0x07F3, "Sam Light" }, { 0x07FD, "THELIGHT Luminary for Cine and TV S.L." }, { 0x07FF, "Guangzhou HOMEI LIGHT Manufacturer" }, { 0x0800, "Hongyeah Light" }, { 0x0802, "AstralPool" }, { 0x0807, "Event Lighting Pty, Ltd." }, { 0x0808, "Eaton - Zero 88" }, { 0x0809, "mumoco GmbH" }, { 0x080A, "Shenzhen FantaLED Electronics Co., Ltd" }, { 0x080D, "HBJ Elektronik" }, { 0x080F, "NavoLabs" }, { 0x0823, "Opito Labs GmbH" }, { 0x083A, "Bright Ideas Custom Electronics Inc." }, { 0x083F, "Shenzhen LeiFei Lighting Technologies Co.,Ltd." }, { 0x0845, "Cush Light LLC" }, { 0x0846, "LDR - Luci della Ribalta Srl" }, { 0x084B, "Neon Circus Ltd" }, { 0x084C, "Guangzhou Ba Lin Electronic Technology Co., Ltd." }, { 0x084D, "Guangzhou NECO Stage Lighting Factory" }, { 0x0851, "Junction Inc. Ltd" }, { 0x0854, "NEC Display Solutions, Ltd." }, { 0x0858, "Juno Lighting Group" }, { 0x085A, "Guangzhou Ming Jing Stage Light Equipment Co., Ltd." }, { 0x085E, "MMS Distribution Ltd" }, { 0x085F, "Media Visions, Inc." }, { 0x0863, "XTEC Industries Pte Ltd" }, { 0x0865, "Contrade GmbH" }, { 0x0869, "Club Cannon LLC" }, { 0x086E, "Guangzhou Hi-LTTE Electronics Technology Co.,Ltd" }, { 0x0870, "Hunan YESTECH Optoelectronic Co., Ltd" }, { 0x0873, "Guangzhou BKLite Stage Lighting Equipment Co.,LTD" }, { 0x0874, "Snow Professional Lighting" }, { 0x0875, "ARC Solid-State Lighting Corp." }, { 0x0876, "Power Gems LTD" }, { 0x0878, "OTTEC Technology GmbH" }, { 0x0880, "GuangZhou LiDang Technology Inc." }, { 0x0884, "Bright Group" }, { 0x0885, "SIRS-E" }, { 0x0886, "KLIK Systems" }, { 0x088A, "Highendled Electronics Company Limited" }, { 0x088B, "Shenzhen Doit Vision Co., Ltd" }, { 0x088D, "Guangzhou Ling Yang lighting Science and Technology Co.,Ltd" }, { 0x088E, "Stage One International Co., Ltd." }, { 0x088F, "First Design System Inc." }, { 0x0890, "Taurus Light Co.,Limited" }, { 0x0891, "Feiner Lichttechnik GMBH" }, { 0x0893, "Brighten LED Lighting Limited" }, { 0x089A, "ADL Electronics Ltd." }, { 0x089D, "gobo.ws" }, { 0x08A1, "Shenzhen Gloshine Technology Co., Ltd" }, { 0x08A2, "Guangzhou Gesida Light Equipment Co., Ltd." }, { 0x08A4, "Adam Hall GmbH" }, { 0x08A7, "GuangZhou Deliya Opto-electronic Tech Co., Ltd" }, { 0x08AA, "PiXL Factory" }, { 0x08AB, "Qdot Lighting Limited" }, { 0x08AC, "Bushveld Labs" }, { 0x08AD, "Optical Productions LLC" }, { 0x08AE, "Technical Audio Group Pty Ltd" }, { 0x08AF, "AAdyn Technology" }, { 0x08B0, "KIM Lighting" }, { 0x08B2, "MCI Group" }, { 0x08B3, "Stealth Light srl" }, { 0x08B6, "Graf Lichttechnik UG" }, { 0x08B9, "Guangzhou Hua Rong Electronic Technology Co., Ltd." }, { 0x08BA, "Meteor Lighting" }, { 0x08BB, "Guangzhou CHEN Electronic Technology Co., Ltd." }, { 0x08BC, "Michael Parkin" }, { 0x08BD, "Lug Light Factory Sp. z o. o." }, { 0x08BF, "Times Square Stage Lighting Inc." }, { 0x08C1, "Project SSSHH Incorporated" }, { 0x08C3, "Guangzhou Spark Stage Equipment Co. Ltd" }, { 0x08C5, "EHRGEIZ Lichttechnik GmbH" }, { 0x08CA, "Foshan City Xuandao Optoelectronics Equipment Co., Ltd" }, { 0x08CC, "Guangzhou Santu Stage Lighting Equipment Co.Ltd" }, { 0x08D3, "SVI Public Company Limited" }, { 0x08D4, "Sensa-Lite Ltd." }, { 0x08D6, "Guangzhou Precision Vision Intelligent Equipment Co, Ltd" }, { 0x08D7, "PatternAgents, LLC" }, { 0x08D8, "W.A. Benjamin Electric Co." }, { 0x08D9, "STILED" }, { 0x08DA, "PLC Intelligent Technology (Shanghai) Co., Ltd." }, { 0x08DD, "Matthew Tong" }, { 0x08E0, "Red Arrow Controls" }, { 0x08E1, "Shenzhen CLT Electronics Co.,LTD" }, { 0x08E3, "Guangzhou JinZhiHui Electronic Technology Co.,Ltd." }, { 0x08E7, "3A Guangzhou Electronics Co., Ltd" }, { 0x08EC, "Marvin Nadrowski" }, { 0x08ED, "ShowLED" }, { 0x08EE, "Spacelights" }, { 0x08EF, "Guangzhou RuiYang lighting technology co. LTD." }, { 0x08F0, "Guang Dong LMJ Lighting Co., Ltd" }, { 0x08F1, "SanDevices, LLC" }, { 0x08F3, "Outdoor Lasers Ltd." }, { 0x08F6, "Eulum Design, LLC" }, { 0x08F9, "ACS - Ackerman Computer Sciences" }, { 0x08FA, "Phaton Lighting Co., Ltd." }, { 0x08FE, "Zhuhai Shengchang Electronics Co., Ltd." }, { 0x0900, "nox multimedia GmbH" }, { 0x0901, "GermTec GmbH & Co. KG" }, { 0x0902, "DongGuan Betterway Lighting Co.,Ltd" }, { 0x0903, "Shenzhen INFiLED Electronics, Ltd." }, { 0x0904, "Bigbear Co., Ltd." }, { 0x0905, "Locimation Pty Ltd" }, { 0x090B, "StarLighting" }, { 0x090C, "GRE Alpha" }, { 0x090E, "Sichuan esRadio Technology Co., Ltd" }, { 0x0910, "Shenzhen Tecnon EXCO-Vision Technology Co., Ltd." }, { 0x0911, "Guangzhou Aceda Professional Lighting Co., Ltd." }, { 0x0912, "ags - Wissenschaftliche Arbeitsgemeinschaft fur Studio- und Senderfragen" }, { 0x0913, "Guangzhou ECK Light Equipment Company Limited" }, { 0x0914, "Xenio" }, { 0x0915, "Guangzhou Chuangfeng Photoelectric Equipment Co., Ltd." }, { 0x0916, "ACTOR-MATE CO., LTD." }, { 0x0918, "David O Smith Design" }, { 0x0919, "Foshan Leiyuan Photoelectric Co., LTD" }, { 0x091A, "Celex LED Technology Ltd." }, { 0x091B, "Krislite Pte. Ltd." }, { 0x091D, "TouchPlate Technologies Inc." }, { 0x0920, "Vexica Technology Limited" }, { 0x0921, "Guangzhou mengyi stage lighting equipment co., LTD." }, { 0x0923, "Hangzhou Roleds Lighting System Co., Ltd." }, { 0x0925, "Guangzhou Aiweidy Lighting Acoustics Equipment Co.,Ltd." }, { 0x0926, "Elumeros Lighting Limited" }, { 0x0927, "Guangzhou Mingying Electronic Technology Co., Ltd." }, { 0x0929, "UPlight stage equipment(GZ) CO., Ltd." }, { 0x092B, "Guangzhou Lightful Stage Lighting&Sound Equipment Co,.Ltd." }, { 0x092C, "Guangzhou Chaoran Computer Co., Ltd." }, { 0x092F, "Guangzhou Shinelight Stage Equipment Factory" }, { 0x0930, "jiaozuo shengguang film &equipment Co. Ltd" }, { 0x0931, "Cristal Controles" }, { 0x0935, "Guangzhou Huadu District Richa Lighting Equipment Factory" }, { 0x0936, "AquaTronic" }, { 0x0937, "Huizhou Zhonghan Electronic Technology Co., Ltd" }, { 0x0938, "Guangzhou Vanray Lighting Equipment CO.,Ltd." }, { 0x0939, "Edelmann Electronics" }, { 0x093A, "HDT impex s.r.o." }, { 0x093B, "Guangzhou Hongmingwei Stage Lighting Co., Ltd." }, { 0x093D, "Sichuan Hushan Electric Co. Ltd" }, { 0x093F, "Guangzhou Julong Platform Lighting Equipment Factory" }, { 0x0940, "Shenzhen CreateLED Electronics Co., Ltd" }, { 0x0941, "Shenzen Zhuoyang Intelligent Technology Co., Ltd." }, { 0x0945, "Guangzhou Lin Xiang Stage Lighting Equipment CO.,LTD" }, { 0x0946, "TBE Srl" }, { 0x094B, "Invisua Lighting BV" }, { 0x0951, "Guangzhou GTD Lighting Technology Co., Ltd" }, { 0x0952, "Guangzhou Sunway Entertainment Equipment Co., Ltd." }, { 0x0958, "Illum Technology LLC (previously Verde Designs, Inc.)" }, { 0x0959, "Urbs Lighting, LLC" }, { 0x095A, "kLabs Research UK" }, { 0x095F, "Elaborated Networks GmbH" }, { 0x0960, "Fineline Solutions Ltd." }, { 0x0965, "Fontana Fountains" }, { 0x0968, "Guangzhou Beyond Lighting Co., Limited." }, { 0x096D, "Guangzhou Xin Yilong Stage Lighting Equipment Co., Limited" }, { 0x0973, "Guangzhou Eagle Wei Photoelectric Technology Co., Ltd." }, { 0x0974, "Marumo Electric Co., Ltd." }, { 0x0975, "KB Design" }, { 0x0977, "Guangzhou HuaYong Intelligent Technology Co., Ltd." }, { 0x097A, "Teamboyce Limited" }, { 0x097D, "Brink Electronics" }, { 0x097F, "RaumZeitLabor e.V." }, { 0x0980, "Moog Animatics" }, { 0x0981, "Luxam, Ltd." }, { 0x0982, "AC Entertainment Products Ltd." }, { 0x0986, "ROE Visual Co. Ltd." }, { 0x0987, "mathertel.de" }, { 0x0989, "YeGrin Liteworks" }, { 0x098B, "Glow Motion Technologies, LLC." }, { 0x098C, "Shenzhen Longrich Energy Sources Technology Co., Ltd." }, { 0x098D, "Batmink Ltd." }, { 0x098E, "Ecosense Lighting Company Limited" }, { 0x098F, "Digital Sputnik Lighting" }, { 0x0996, "CCI Power Supplies, LLC" }, { 0x099A, "Aixz International (S)" }, { 0x099E, "LLC Lighting Technologies production" }, { 0x09A0, "Rnet Lighting Technology Limited" }, { 0x09A2, "Fountain People" }, { 0x09A5, "Prolight Concepts Ltd." }, { 0x09AE, "Robert Juliat" }, { 0x09AF, "Autotech Co." }, { 0x09B3, "Aquatique Show Int." }, { 0x09B4, "Brompton Technology Ltd." }, { 0x09B7, "inCon-trol water systems" }, { 0x09B8, "Prolites S.A.L." }, { 0x09C1, "Argetron Elektrik Elektronik Organizasyon Gida San. ve Dis Tic. Ltd. Sti." }, { 0x09C3, "Velleman nv" }, { 0x09C4, "Guangzhou XinHuang Industrial Co., Ltd." }, { 0x09C8, "Crystal Fountains Inc." }, { 0x09CC, "Motomuto Aps" }, { 0x09D3, "WLPS Wodielite Production Services" }, { 0x09D4, "Guangzhou Yilaiming Photoelectric Technology Co., Ltd" }, { 0x09D6, "Mittomakers" }, { 0x09D7, "Unilumin Group" }, { 0x09DE, "Matthias Bauch Software" }, { 0x09E9, "Starway" }, { 0x09EE, "Suzhou Pinzong Electronic Technology, CO.,Ltd" }, { 0x09FC, "deskontrol electronics" }, { 0x0A01, "Star-Reach Corporation" }, { 0x1112, "Zhuhai Bincolor Electronic Technology Co., Ltd." }, { 0x1113, "SiliconCore Technology, Inc." }, { 0x1200, "Seekway Technology Limited" }, { 0x1212, "HPL Light Company" }, { 0x1221, "SAGITTER - Proel" }, { 0x1222, "SM International" }, { 0x1234, "ESTA" }, { 0x12DA, "Newlab S.r.l." }, { 0x12E0, "Luxlight Skandinavien AB" }, { 0x12EA, "Kolberg Percussion GmbH" }, { 0x12F4, "Stage Services Ltd." }, { 0x12FA, "Hollywood Rentals LLC" }, { 0x12FE, "City Design S.p.A." }, { 0x131E, "Blossom Communications Corp." }, { 0x1337, "Raven Systems Design, Inc." }, { 0x134D, "VT-Control" }, { 0x1370, "Ingenieurbuero Stahlkopf" }, { 0x13AE, "Smartpark Creative Solutions" }, { 0x1460, "SEIKO Epson Corporation" }, { 0x1464, "HUMAL Elektroonika OU" }, { 0x1490, "Grid Show Systems Inc." }, { 0x14A0, "Intense Lighting, LLC" }, { 0x14AC, "Zaklad Elektroniczny AGAT s.c." }, { 0x1506, "v2 Lighting Group, Inc." }, { 0x150C, "ACASS SYSTEMS LLC" }, { 0x152A, "SHOWTACLE Ltd." }, { 0x154E, "Fire & Magic" }, { 0x15A0, "GuangZhou MCSWE Technologies, INC" }, { 0x15A2, "FEIMEX" }, { 0x15D0, "Music & Lights S.r.l." }, { 0x161A, "techKnow Design Ltd." }, { 0x1626, "LEDsistem Teknolojileri Tic. Ltd. Sti." }, { 0x162A, "Nerd's Meter" }, { 0x1690, "awaptec GmbH" }, { 0x16AE, "Electrone Americas Ltd. Co." }, { 0x16DC, "Traxon Technologies Ltd." }, { 0x16E4, "Aboutshow Color Light Co., LTD" }, { 0x16FA, "Lite Puter Enterprise Co., Ltd." }, { 0x170E, "Serva Transport Systems GmbH" }, { 0x174E, "Nordgas SNe-lightingsystem" }, { 0x1750, "Yuesheng International Limited" }, { 0x1808, "Guangzhou Jinye Electronic Technology Co., Ltd." }, { 0x1809, "Rotolight" }, { 0x1888, "GUANZHOU KAVON STAGE EQUIPMENT CO., LTD." }, { 0x18A6, "Steadfast Technology" }, { 0x1938, "Solid State Luminaires" }, { 0x1998, "PLS Electronics Ltd." }, { 0x19B9, "Duralamp S.p.A." }, { 0x19BA, "Guangzhou Xinzhijie Photoelectric Co., Ltd." }, { 0x19BB, "Panalux Ltd." }, { 0x19F8, "CEZOS Spolka z ograniczona odpowiedzialnoscia, sp.k." }, { 0x1A0D, "Cineo Lighting" }, { 0x1A16, "WADAK GmbH" }, { 0x1A3D, "Red Lighting s.r.l." }, { 0x1AFA, "TMB" }, { 0x1BB1, "PH Lightning AB" }, { 0x1BC0, "ALS Stanislaw Binkiewicz" }, { 0x1BC6, "Studio S Music City" }, { 0x1C80, "Vehtec Tecnologia Ltda" }, { 0x1E8D, "Moda Light" }, { 0x1ECF, "Masiero s.r.l." }, { 0x1ED8, "Antari Lighting And Effects Ltd." }, { 0x2009, "Zboxes Intelligent Technology (Shanghai) Co., Ltd." }, { 0x2011, "Gantom Lighting & Controls" }, { 0x207F, "Padura Elektronik GmbH" }, { 0x20A6, "ALADIN Architekturlicht GmbH" }, { 0x20AD, "AZ e-lite Pte Ltd" }, { 0x20B6, "Alkalite LED Technology Corp" }, { 0x20B9, "ARRI -- Arnold & Richter Cine Technik GmbH & Co. Betriebs KG" }, { 0x20BA, "AusChristmasLighting" }, { 0x2121, "Brother,Brother & Sons Aps" }, { 0x2122, "BEGLEC NV" }, { 0x2130, "Bart van Stiphout Electronics & Software" }, { 0x21A1, "Culture Crew bvba" }, { 0x21A4, "CHAUVET Lighting" }, { 0x21A9, "CaptSystemes" }, { 0x21B3, "Coolon Pty Ltd" }, { 0x21B4, "CHROMLECH" }, { 0x21B5, "ChromaCove LLC" }, { 0x2208, "C.I.M.E.S. (Conception Installation Maintenance En Eclairage & Sonorisation)" }, { 0x2216, "D-Light Designs, LLC" }, { 0x2222, "D.E.F. Srl" }, { 0x2224, "DAS Integrator Pte Ltd" }, { 0x2239, "Dream Solutions Ltd." }, { 0x22A0, "EAS SYSTEMS" }, { 0x22A6, "Elation Lighting" }, { 0x22A9, "Engineering Solutions Inc." }, { 0x22AA, "EUTRAC - Intelligent Lighting GmbH" }, { 0x22AB, "EVC" }, { 0x22B9, "Etherlight" }, { 0x2337, "Focon Showtechnic" }, { 0x23B2, "Gekko Technology Ltd." }, { 0x2421, "HB-Laserkomponenten GmbH" }, { 0x242A, "Hungaroflash" }, { 0x2432, "Helvar Ltd" }, { 0x2470, "Hale Microsystems LLC" }, { 0x24A3, "Lighting Innovation Group AG" }, { 0x24AA, "IT Ihme" }, { 0x2621, "LEADER LIGHT s.r.o." }, { 0x2622, "LDDE Vertriebs Gmbh" }, { 0x2623, "Leonh Hardware Enterprise Inc." }, { 0x2624, "Lisys Fenyrendszer Zrt." }, { 0x2626, "LLT Lichttechnik GmbH&CO.KG" }, { 0x2630, "Laservision Pty Ltd" }, { 0x2632, "Lehigh Electric Products" }, { 0x2635, "LjusDesign AB" }, { 0x2636, "Lumonic Limited" }, { 0x2637, "Loxone Electronics GmbH" }, { 0x263A, "Lumenec Pty. Ltd." }, { 0x263C, "I-Pix Digital Light Ltd." }, { 0x26A2, "MEGATECHNICS Ltd." }, { 0x26B4, "Milford Instruments Ltd." }, { 0x2724, "Nila Inc." }, { 0x2734, "Nixer Ltd." }, { 0x27A8, "Callegenix LLC" }, { 0x2821, "Pioneer Corporation" }, { 0x2826, "Peter Maes Technology" }, { 0x2827, "Peternet Electronics BVBA" }, { 0x2829, "PR-Electronic" }, { 0x2836, "Planungsbuero" }, { 0x28E1, "MTC maintronic GmbH" }, { 0x2927, "ROAL Electronics SpA" }, { 0x2984, "Getlux Ltd." }, { 0x2999, "ALL-DO INTERNATIONAL CO., LTD." }, { 0x29A1, "Sturdy Corporation" }, { 0x29A9, "SRS Light Design" }, { 0x29AA, "Steinigke Showtechnic GmbH" }, { 0x29B2, "Selectron Bvba" }, { 0x29B4, "Showtec (Highlite International B.V.)" }, { 0x29B7, "Sundrax, LLC" }, { 0x29B8, "Spotlight s.r.l." }, { 0x29BA, "State Automation Pty Ltd." }, { 0x29E8, "Stroytsirk LLC" }, { 0x2A25, "Thorn Lighting Limited" }, { 0x2A26, "Toni Maroni Gmb" }, { 0x2AAB, "Urban Visuals & Effects Ltd." }, { 0x2B28, "Visual Productions" }, { 0x2B29, "MaNima Technologies BV" }, { 0x2BA2, "WERPAX bvba" }, { 0x2BA9, "The White Rabbit Company, Inc." }, { 0x2BB4, "Williams Electronic Design Ltd." }, { 0x2C1A, "DMX4ALL GmbH" }, { 0x2C2A, "XTBA" }, { 0x2CE0, "Lighting Services Inc." }, { 0x2DC8, "Stellascapes" }, { 0x3235, "de koster Special Effects" }, { 0x3331, "DMG Lumiere" }, { 0x3332, "Teclumen s.r.l." }, { 0x3333, "NightStarry Electronics Co., LTD." }, { 0x3388, "Macostar International Ltd." }, { 0x3434, "Global Design Solutions, Ltd." }, { 0x3534, "Five4, LLC" }, { 0x3536, "Cindy Professional Lighting Co., Ltd." }, { 0x3537, "Novacorp Inc." }, { 0x361D, "Lumishore Ltd. UK" }, { 0x3638, "Lumenpulse Lighting Inc." }, { 0x37D7, "Lichttechnik & Sonderbau" }, { 0x3805, "Yifeng Lighting Co., Ltd." }, { 0x3806, "ACME EFFECTS LTD." }, { 0x3868, "LanBolight Technology Co., LTD." }, { 0x3888, "Fly Dragon Lighting Equipment Co.,ltd" }, { 0x388A, "Guangzhou Yajiang (Yagang - Silver Star) Photoelectric Equipment Ltd." }, { 0x3A37, "TheOlymp - Networking & InterNet Services" }, { 0x3AFC, "Black Tank Engineering" }, { 0x3B10, "NXP Semiconductors B.V." }, { 0x3B88, "Shenzhen Eastar Electronic Co., Ltd." }, { 0x3D30, "zactrack Lighting Technologies Gmbh" }, { 0x400D, "Quasar Science LLC" }, { 0x4051, "SAN JACK ANALOG HOUSE CO., LTD." }, { 0x4131, "Altman Stage Lighting" }, { 0x4141, "AVAB America, Inc." }, { 0x4142, "Filmgear, Inc." }, { 0x4143, "AC Lasers" }, { 0x4144, "ADB - TTV Technologies nv" }, { 0x4145, "ADE ELETTRONICA srl" }, { 0x4146, "AUS FX" }, { 0x4149, "Anidea Engineering, Inc." }, { 0x414C, "Artistic Licence Engineering Ltd." }, { 0x414D, "Amptown Lichttechnik GmbH" }, { 0x414E, "Anytronics Ltd." }, { 0x4150, "Apogee Lighting" }, { 0x4151, "Aquarii, Inc." }, { 0x4153, "Audio Scene" }, { 0x4154, "Arnold Tang Productions" }, { 0x4156, "Audio Visual Devices P/L" }, { 0x4164, "Adelto Limited" }, { 0x416C, "Alenco BV" }, { 0x4172, "ARNOLD LICHTTECHNIK" }, { 0x4173, "Astera LED Technology GmbH" }, { 0x4179, "AYRTON" }, { 0x4241, "BECKHOFF Automation GmbH" }, { 0x4243, "Bill Coghill Company : Bill Coghill Design" }, { 0x4245, "Bytecraft Entertainment Pty Ltd" }, { 0x424F, "BOTEX" }, { 0x4253, "Barco" }, { 0x42A2, "Birket Engineering, Inc." }, { 0x4321, "Design Partners of Canada" }, { 0x4344, "CDCA Ltd." }, { 0x4347, "CAST Software" }, { 0x4349, "C.I.Tronics Lighting Designers Ltda" }, { 0x434B, "Color Kinetics Inc." }, { 0x434D, "Coemar Spa" }, { 0x4350, "CLAY PAKY S.p.A" }, { 0x4353, "Capricorn Software" }, { 0x4354, "City Theatrical, Inc." }, { 0x4358, "Connex GmbH" }, { 0x4369, "Cinetix Medien u. Interface GmbH" }, { 0x436F, "CODEM MUSIC S.r.l." }, { 0x4441, "DIGITAL ART SYSTEM" }, { 0x4442, "ELETTROLAB S.r.l." }, { 0x4443, "Claudio Dal Cero Engineering" }, { 0x4444, "D.O.M. Datenverarbeitung GmbH" }, { 0x4445, "Dezelectric Kft." }, { 0x4446, "Doug Fleenor Design, Inc." }, { 0x4449, "Durand Interstellar, Inc." }, { 0x444C, "Dove Lighting Systems, Inc." }, { 0x444D, "Digimedia Multimedia Lighting Solutions" }, { 0x444E, "DALCNET SRL" }, { 0x4450, "DMXPROFI.EU GmbH i.G." }, { 0x4453, "Guangzhou Desheng Lighting Industrial Co., Ltd." }, { 0x4456, "Devantech Ltd." }, { 0x4466, "DF elettronica s.r.l." }, { 0x4469, "Diamante Lighting Srl" }, { 0x453A, "E:cue Control GmbH" }, { 0x4541, "Engineering Arts" }, { 0x4543, "EC Elettronica Srl" }, { 0x4544, "Electronics Diversified LLC" }, { 0x4545, "EastSun Technology Co. Ltd." }, { 0x454C, "Ingenieurbuero fuer Nachrichtentechnik in der Studio und Veranstaltungstechnik" }, { 0x454D, "ELM Video Technology, Inc." }, { 0x454E, "ENTTEC Pty Ltd" }, { 0x4552, "EREA" }, { 0x4553, "ERAL srl" }, { 0x4554, "Entertainment Technology" }, { 0x4563, "Les Eclairages Lou Inc." }, { 0x456C, "Element Labs Inc." }, { 0x4631, "OKEROAB AB" }, { 0x464C, "Flashlight/Ampco Holding" }, { 0x4656, "Flexvisual" }, { 0x4658, "MAGIC FX B.V." }, { 0x4678, "Global Special Effects" }, { 0x4744, "Goddard Design Co." }, { 0x4745, "GPE srl" }, { 0x4747, "G&G LED Lighting" }, { 0x474C, "G-LEC Europe GmbH" }, { 0x4750, "DES" }, { 0x4753, "Golden Sea Disco Light Manufacturer" }, { 0x476C, "General Luminaire (Shanghai) Ltd." }, { 0x4800, "VOD VISUAL.CO. (UK) Ltd." }, { 0x4801, "Capture Visualisation AB" }, { 0x4843, "Horizon Control Inc." }, { 0x4844, "HxDx" }, { 0x4845, "Howard Eaton Lighting Ltd." }, { 0x484C, "HBE Lighting Systems" }, { 0x484F, "Hollywood Controls Inc." }, { 0x4856, "Enfis Ltd" }, { 0x4881, "Rena Electronica B.V." }, { 0x4941, "inoage GmbH" }, { 0x4942, "IBEX UK Limited" }, { 0x4944, "Ingham Designs" }, { 0x4945, "Insta Elektro GmbH" }, { 0x4947, "IGuzzini illuminazione spa" }, { 0x4948, "Ice House Productions" }, { 0x494C, "I-Lum" }, { 0x494E, "Interactive Technologies, Inc." }, { 0x4950, "Interesting Products, Inc." }, { 0x4951, "IQAir AG" }, { 0x4952, "Invisible Rival Incorporated" }, { 0x4953, "Integrated System Technologies Ltd." }, { 0x4954, "Integrated Theatre, Inc." }, { 0x4973, "Innovation Solutions Ltd." }, { 0x4A31, "Joshua 1 Systems Inc." }, { 0x4A41, "JANUS srl" }, { 0x4A42, "JB-lighting GmbH" }, { 0x4A48, "James Harris" }, { 0x4A4C, "Johnsson Lighting Technologies AB" }, { 0x4A53, "JSC 'MFG'" }, { 0x4A54, "James Thomas Engineering" }, { 0x4A61, "Jands Pty Ltd." }, { 0x4ACC, "RVL techniek" }, { 0x4B42, "KissBox" }, { 0x4B46, "Kino Flo, Inc." }, { 0x4B4C, "KLH Electronics PLC" }, { 0x4B4D, "KMX Inc." }, { 0x4B55, "kuwatec, Inc." }, { 0x4C20, "LAM32 srl" }, { 0x4C41, "LaserAnimation Sollinger GmbH" }, { 0x4C45, "Leviton Manufacturing Co., Inc." }, { 0x4C47, "LightGeist Ltd." }, { 0x4C4C, "LUMINEX Lighting Control Equipment bvba" }, { 0x4C4D, "Ultratec Special Effects" }, { 0x4C50, "LightProcessor Ltd" }, { 0x4C52, "High End Systems Inc." }, { 0x4C53, "Licht-, Steuer- und Schaltanlagenbau GmbH (LSS GmbH)" }, { 0x4C54, "Licht-Technik" }, { 0x4C55, "LumenRadio AB" }, { 0x4C56, "LEDValley Technologies Sdn Bhd" }, { 0x4C57, "LightWild LC" }, { 0x4C58, "Lex Products Corp." }, { 0x4C59, "Laser Technology Ltd." }, { 0x4C5A, "LightMinded Industries, Inc./Sumolight GmbH" }, { 0x4C5B, "LightLife, Gesellschaft fur audiovisuelle Erlebnisse mbH" }, { 0x4C64, "LED Team" }, { 0x4C65, "Legargeant and Associates" }, { 0x4C69, "LIGHTOLIER" }, { 0x4C6C, "Lampo Lighting Designers" }, { 0x4C73, "LSC Lighting Systems (Aust) Pty. Ltd." }, { 0x4CDC, "acdc LED Ltd." }, { 0x4CE5, "LED Company s.r.o." }, { 0x4D41, "MA Lighting Technology GmbH" }, { 0x4D42, "LAN Systems--Midibox project" }, { 0x4D44, "Les Generateurs de brouillard MDG Fog Generators Ltd." }, { 0x4D4C, "Mode Lighting (UK) Ltd." }, { 0x4D50, "Martin Professional A/S" }, { 0x4D54, "medien technik cords" }, { 0x4D56, "Avolites Ltd." }, { 0x4D58, "MX design" }, { 0x4D5A, "Covert Science GmbH" }, { 0x4D61, "MARTINI S.p.A." }, { 0x4D77, "Mueller Elektronik" }, { 0x4E41, "Company NA" }, { 0x4E4A, "NJD Electronics" }, { 0x4E4C, "NOVALIGHT S.r.l." }, { 0x4E57, "AIM Northwest" }, { 0x4E69, "Niko" }, { 0x4F41, "Oase GmbH" }, { 0x4F43, "Offstage Controls (formerly Obsidian Control)" }, { 0x4F4C, "DDS Elettronica" }, { 0x4F75, "Outsight Pty Ltd." }, { 0x5000, "http://www.orangepi-dmx.org" }, { 0x5040, "Guangzhou Color Imagination LED Lighting Ltd." }, { 0x5041, "Philips Entertainment Lighting Asia" }, { 0x5043, "Pathway Connectivity Inc." }, { 0x504C, "Peperoni Lighting-Solutions" }, { 0x504D, "Peter Meyer Project Management Adviser GmbH" }, { 0x5050, "Newton Engineering and Design Group LLC" }, { 0x5051, "PDQ Manufacturing, Inc" }, { 0x5052, "Production Resource Group" }, { 0x5053, "Philips Selecon" }, { 0x5058, "PXM s.c." }, { 0x5062, "LED, Inc." }, { 0x5065, "Peradise" }, { 0x5066, "Pfannenberg GmbH" }, { 0x5068, "Philips Lighting BV" }, { 0x5075, "Pulsar Light of Cambridge Ltd." }, { 0x5099, "Altec Di Gregorio Andrea" }, { 0x512D, "DJPOWER ELECTRONIC STAGE LIGHTING FIXTURE FACTORY (GUANGZHOU)" }, { 0x5149, "JAP Optoelectronic Ltd." }, { 0x514D, "QMAXZ lighting" }, { 0x5153, "QuickSilver Controls, Inc." }, { 0x5168, "Shenzhen Sunricher Technology Co.,Ltd." }, { 0x516C, "Quicklights" }, { 0x51D7, "Innovative Dimmers LLC" }, { 0x5244, "Revolution Display" }, { 0x524C, "Radical Lighting Ltd." }, { 0x524D, "RUIZ TECH" }, { 0x524E, "RNC Systems Inc." }, { 0x5250, "RootPath Ltd." }, { 0x5252, "RoscoLab Ltd." }, { 0x5253, "Robe Show Lighting s.r.o." }, { 0x5341, "Stage Technologies Limited" }, { 0x5342, "Industrias Sola Basic S.A. de C.V." }, { 0x5343, "Ocean Thin Films Inc." }, { 0x5344, "Stardraw.com Ltd." }, { 0x5345, "Selador" }, { 0x5346, "Synthe FX, LLC" }, { 0x5347, "SGM Technology For Lighting SPA" }, { 0x5348, "Schreder" }, { 0x5349, "Soundsculpture Incorporated" }, { 0x534A, "SAS Productions" }, { 0x534B, "SK-Software" }, { 0x534C, "SOUNDLIGHT" }, { 0x534E, "Sand Network Systems" }, { 0x5353, "Sean Sill" }, { 0x5354, "Stagetronics Ltda" }, { 0x5356, "OOO SAMLIGHT" }, { 0x5363, "SpaceCannon vH" }, { 0x5368, "ShowCAD Control Systems Ltd." }, { 0x536C, "StageLine Electronic" }, { 0x5370, "Chroma-Q" }, { 0x5374, "STG-Beikirch Industrieelektronik + Sicherheitstechnik GmbH & Co. KG" }, { 0x5376, "SV-wtu eU" }, { 0x5377, "SWISSON AG" }, { 0x53A8, "Simon Tech" }, { 0x5431, "AUTOLUX Handels- und ProduktionsgmbH" }, { 0x5441, "TecArt Lighting" }, { 0x5444, "Technographic Displays Ltd." }, { 0x5445, "TESI Elettronica srl" }, { 0x544C, "Tempest Lighting Inc." }, { 0x5453, "TalentStorm Enterprises, Inc." }, { 0x5454, "TamaTech Labo Company Ltd," }, { 0x5550, "UP-LUX Eletronica Ltda." }, { 0x5555, "Martin Sukale Medientechnik GbR" }, { 0x564C, "Vari-Lite, Inc." }, { 0x5651, "Vision Quest Lighting Inc." }, { 0x5652, "Megapixel Visual Reality" }, { 0x5653, "Viso Systems Aps" }, { 0x5655, "Shenzhen CAS VU Technologies Co., Ltd." }, { 0x5744, "W-DEV" }, { 0x5746, "Wildfire, Inc." }, { 0x5747, "Wenger / JR Clancy" }, { 0x5753, "Wireless Solution Sweden AB" }, { 0x5759, "Wybron, Inc." }, { 0x584C, "X-Laser" }, { 0x584D, "Xtraordinary Musical Accolade Systems" }, { 0x5858, "Illuminance Technologies" }, { 0x5865, "XENON ARCHITECTURAL LIGHTING" }, { 0x586C, "Eurolumen (Shanghai) Lighting Co., LTD" }, { 0x586D, "www.doityourselfchristmas.com hobbyists" }, { 0x5888, "Plsao Optoelectronics Technology Co., Ltd." }, { 0x5A53, "Zingerli Show Engineering" }, { 0x5C40, "OXO" }, { 0x5DAC, "Mediatec Group" }, { 0x614C, "Alektra AB" }, { 0x6154, "Advatek Lighting" }, { 0x6164, "AVID Labs" }, { 0x616C, "Advanced Lighting Systems" }, { 0x6200, "LUCITAG Ltd." }, { 0x6201, "NuDelta Digital, LLC" }, { 0x6202, "ESCO Sp. z o.o." }, { 0x6203, "Flektor" }, { 0x6204, "Shenzhen Absen Optoelectronic Co., Ltd" }, { 0x6205, "Zhuhai Ltech Technology Co., Ltd." }, { 0x6206, "Lighting Innovation Company, LLC" }, { 0x6273, "B&S Elektronische Geräte GmbH" }, { 0x6342, "Mega Systems Inc." }, { 0x6364, "CDS advanced technology bv" }, { 0x641A, "Heliospectra AB" }, { 0x6461, "Digilin Australia" }, { 0x6464, "Dangeross Design" }, { 0x646C, "dilitronics GmbH" }, { 0x646F, "eldoLED BV" }, { 0x64B9, "Finelite, Inc." }, { 0x6542, "eBrain GmbH" }, { 0x6547, "euroGenie" }, { 0x656C, "ELC lighting" }, { 0x6573, "Environmental Lighting Solutions" }, { 0x6574, "Electronic Theatre Controls, Inc." }, { 0x6576, "eventa Aktiengesellschaft" }, { 0x6644, "Sunlab Technologies S.L." }, { 0x666D, "MAD-Effects" }, { 0x6673, "Freescale Semiconductor U.K. Ltd." }, { 0x6756, "Lumisia Co., Ltd." }, { 0x676C, "GLP German Light Products GmbH" }, { 0x67F0, "Toshiba Lighting & Technology Corporation" }, { 0x6816, "ChamberPlus Co., Ltd" }, { 0x6864, "James Embedded Systems Engineering (JESE Ltd)" }, { 0x6865, "Hubbell Entertainment, Inc." }, { 0x686C, "HERA LED" }, { 0x694C, "iLight Technologies Inc" }, { 0x6974, "Ittermann electronic GmbH" }, { 0x6A6B, "JPK Systems Limited" }, { 0x6B64, "Key Delfin" }, { 0x6B69, "Magical Fountain SA de CV (Magic Fountain)" }, { 0x6BEE, "Ephesus Lighting" }, { 0x6BEF, "Shenzhen Ifountain Technology Ltd." }, { 0x6C6D, "Zumtobel Lighting GmbH" }, { 0x6C78, "Claude Heintz Design" }, { 0x6C92, "Ambra Elettronica s.r.l." }, { 0x6D61, "MAL Effekt-Technik GmbH" }, { 0x6D62, "MBN GmbH" }, { 0x6D63, "Sein & Schein GmbH" }, { 0x6F00, "Guangzhou Huaying Stage Lighting Equipment Co. Ltd." }, { 0x6FEA, "Lumina Visual Productions" }, { 0x6FEB, "Insight Lighting" }, { 0x6FEC, "Arc Lighting Co. Ltd." }, { 0x6FED, "Explorentis" }, { 0x7068, "Pharos Architectural Controls" }, { 0x7070, "SBT GmbH" }, { 0x7072, "Pr-Lighting Ltd." }, { 0x7078, "PixelRange Inc." }, { 0x70F0, "Pangolin Laser Systems, Inc." }, { 0x7151, "The Light Source, Inc." }, { 0x7363, "Sean Christopher FX" }, { 0x7365, "Ballantyne Strong Inc." }, { 0x736C, "Strand Lighting Ltd." }, { 0x7764, "WET" }, { 0x7788, "DigitaLicht AG" }, { 0x780E, "Mole-Richardson Co." }, { 0x783A, "Audiolux Devices LLC" }, { 0x786C, "XLN-t bvba" }, { 0x78B4, "LED Flex Limited" }, { 0x7900, "Leprecon / CAE, Inc." }, { 0x79BC, "DC Reactive" }, { 0x7A70, "Open Lighting" }, { 0x7AA0, "Anaren Inc." }, { 0x7B1B, "DimLight Ltd." }, { 0x7D61, "HMB|TEC GmbH" }, { 0x7DE8, "Shenzhen LAMP Technology Co., Ltd." }, { 0x7EE7, "Arthur Digital Solutions Kft" }, { 0x7EE8, "Guangzhou Yingfeng Lighting Equipment Co., Ltd." }, { 0x7EE9, "Technology Kitchen" }, { 0x7EEA, "Cartwright Engineering" }, { 0x7EEB, "mylaserpage" }, { 0x7FF0, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF1, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF2, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF3, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF4, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF5, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF6, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF7, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF8, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FF9, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FFA, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FFB, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FFC, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FFD, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FFE, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0x7FFF, "RESERVED FOR PROTOTYPING/EXPERIMENTAL USE ONLY" }, { 0xFFFF, "ESTA" }, { 0, NULL } }; static value_string_ext artnet_esta_man_vals_ext = VALUE_STRING_EXT_INIT(artnet_esta_man_vals); static const value_string artnet_indicator_state_vals[] = { { 0x00, "unknown" }, { 0x01, "Locate Mode" }, { 0x02, "Mute Mode" }, { 0x03, "Normal Mode" }, { 0, NULL } }; static const value_string artnet_port_prog_auth_vals[] = { { 0x00, "unknown" }, { 0x01, "front panel" }, { 0x02, "network" }, { 0x03, "unused" }, { 0, NULL } }; #define ARTNET_PT_DMX512 0x00 #define ARTNET_PT_MIDI 0x01 #define ARTNET_PT_AVAB 0x02 #define ARTNET_PT_CMX 0x03 #define ARTNET_PT_ADB625 0x04 #define ARTNET_PT_ARTNET 0x05 #define ARTNET_PT_DIR_NONE 0x00 #define ARTNET_PT_DIR_INPUT 0x40 #define ARTNET_PT_DIR_OUTPUT 0x80 #define ARTNET_PT_DIR_BIDIR 0xc0 static const value_string artnet_port_type_vals[] = { { ARTNET_PT_DIR_NONE | ARTNET_PT_DMX512, "DMX512" }, { ARTNET_PT_DIR_NONE | ARTNET_PT_MIDI, "MIDI" }, { ARTNET_PT_DIR_NONE | ARTNET_PT_AVAB, "Avab" }, { ARTNET_PT_DIR_NONE | ARTNET_PT_CMX, "Colortran CMX" }, { ARTNET_PT_DIR_NONE | ARTNET_PT_ADB625, "ADB 62.5" }, { ARTNET_PT_DIR_NONE | ARTNET_PT_ARTNET, "Art-Net" }, { ARTNET_PT_DIR_INPUT | ARTNET_PT_DMX512, "DMX512 -> Art-Net" }, { ARTNET_PT_DIR_INPUT | ARTNET_PT_MIDI, "MIDI -> Art-Net" }, { ARTNET_PT_DIR_INPUT | ARTNET_PT_AVAB, "Avab -> Art-Net" }, { ARTNET_PT_DIR_INPUT | ARTNET_PT_CMX, "Colortran CMX -> Art-Net" }, { ARTNET_PT_DIR_INPUT | ARTNET_PT_ADB625, "ADB 62.5 -> Art-Net" }, { ARTNET_PT_DIR_INPUT | ARTNET_PT_ARTNET, "Art-Net -> Art-Net" }, { ARTNET_PT_DIR_OUTPUT | ARTNET_PT_DMX512, "Art-Net -> DMX512" }, { ARTNET_PT_DIR_OUTPUT | ARTNET_PT_MIDI, "Art-Net -> MIDI" }, { ARTNET_PT_DIR_OUTPUT | ARTNET_PT_AVAB, "Art-Net -> Avab" }, { ARTNET_PT_DIR_OUTPUT | ARTNET_PT_CMX, "Art-Net -> Colortran CMX" }, { ARTNET_PT_DIR_OUTPUT | ARTNET_PT_ADB625, "Art-Net -> ADB 62.5" }, { ARTNET_PT_DIR_OUTPUT | ARTNET_PT_ARTNET, "Art-Net -> Art-Net" }, { ARTNET_PT_DIR_BIDIR | ARTNET_PT_DMX512, "Art-Net <-> DMX512" }, { ARTNET_PT_DIR_BIDIR | ARTNET_PT_MIDI, "Art-Net <-> MIDI" }, { ARTNET_PT_DIR_BIDIR | ARTNET_PT_AVAB, "Art-Net <-> Avab" }, { ARTNET_PT_DIR_BIDIR | ARTNET_PT_CMX, "Art-Net <-> Colortran CMX" }, { ARTNET_PT_DIR_BIDIR | ARTNET_PT_ADB625, "Art-Net <-> ADB 62.5" }, { ARTNET_PT_DIR_BIDIR | ARTNET_PT_ARTNET, "Art-Net <-> Art-Net" }, { 0, NULL } }; #define ARTNET_AC_NONE 0x00 #define ARTNET_AC_CANCEL_MERGE 0x01 #define ARTNET_AC_LED_NORMAL 0x02 #define ARTNET_AC_LED_MUTE 0x03 #define ARTNET_AC_LED_LOCATE 0x04 #define ARTNET_AC_RESET_RX_FLAGS 0x05 #define ARTNET_AC_MERGE_LTP0 0x10 #define ARTNET_AC_MERGE_LTP1 0x11 #define ARTNET_AC_MERGE_LTP2 0x12 #define ARTNET_AC_MERGE_LTP3 0x13 #define ARTNET_AC_MERGE_HTP0 0x50 #define ARTNET_AC_MERGE_HTP1 0x51 #define ARTNET_AC_MERGE_HTP2 0x52 #define ARTNET_AC_MERGE_HTP3 0x53 #define ARTNET_AC_CLEAR_OP0 0x90 #define ARTNET_AC_CLEAR_OP1 0x91 #define ARTNET_AC_CLEAR_OP2 0x92 #define ARTNET_AC_CLEAR_OP3 0x93 static const value_string artnet_address_command_vals[] = { { ARTNET_AC_NONE, "No Action" }, { ARTNET_AC_CANCEL_MERGE, "Cancel merge" }, { ARTNET_AC_LED_NORMAL, "LED Normal" }, { ARTNET_AC_LED_MUTE, "LED Mute" }, { ARTNET_AC_LED_LOCATE, "LED Locate" }, { ARTNET_AC_RESET_RX_FLAGS, "Reset SIP text" }, { ARTNET_AC_MERGE_LTP0, "DMX port 1 LTP" }, { ARTNET_AC_MERGE_LTP1, "DMX port 2 LTP" }, { ARTNET_AC_MERGE_LTP2, "DXM port 3 LTP" }, { ARTNET_AC_MERGE_LTP3, "DMX port 4 LTP" }, { ARTNET_AC_MERGE_HTP0, "DMX port 1 HTP" }, { ARTNET_AC_MERGE_HTP1, "DMX port 2 HTP" }, { ARTNET_AC_MERGE_HTP2, "DXM port 3 HTP" }, { ARTNET_AC_MERGE_HTP3, "DMX port 4 HTP" }, { ARTNET_AC_CLEAR_OP0, "Clear DMX port 1" }, { ARTNET_AC_CLEAR_OP1, "Clear DMX port 2" }, { ARTNET_AC_CLEAR_OP2, "Clear DXM port 3" }, { ARTNET_AC_CLEAR_OP3, "Clear DMX port 4" }, { 0, NULL } }; #define ARTNET_FT_FIRM_FIRST 0x00 #define ARTNET_FT_FIRM_CONT 0x01 #define ARTNET_FT_FIRM_LAST 0x02 #define ARTNET_FT_UBEA_FIRST 0x03 #define ARTNET_FT_UBEA_CONT 0x04 #define ARTNET_FT_UBEA_LAST 0x05 static const value_string artnet_firmware_master_type_vals[] = { { ARTNET_FT_FIRM_FIRST, "FirmFirst" }, { ARTNET_FT_FIRM_CONT, "FirmCont" }, { ARTNET_FT_FIRM_LAST, "FirmLast" }, { ARTNET_FT_UBEA_FIRST, "UbeaFirst" }, { ARTNET_FT_UBEA_CONT, "UbeaCont" }, { ARTNET_FT_UBEA_LAST, "UbeaLast" }, { 0, NULL } }; #define ARTNET_FRT_FIRM_BLOCK_GOOD 0x00 #define ARTNET_FRT_FIRM_ALL_GOOD 0x01 #define ARTNET_FRT_FIRM_FAIL 0xff static const value_string artnet_firmware_reply_type_vals[] = { { ARTNET_FRT_FIRM_BLOCK_GOOD, "FirmBlockGood" }, { ARTNET_FRT_FIRM_ALL_GOOD, "FirmAllGood" }, { ARTNET_FRT_FIRM_FAIL, "FirmFail" }, { 0, NULL } }; #define ARTNET_TRC_TOD_FULL 0x00 static const value_string artnet_tod_request_command_vals[] = { { ARTNET_TRC_TOD_FULL, "TodFull" }, { 0, NULL } }; #define ARTNET_TDC_TOD_FULL 0x00 #define ARTNET_TDC_TOD_NAK 0xFF static const value_string artnet_tod_data_command_vals[] = { { ARTNET_TDC_TOD_FULL, "TodFull" }, { ARTNET_TDC_TOD_NAK, "TodNak" }, { 0, NULL } }; #define ARTNET_TCC_ATC_NONE 0x00 #define ARTNET_TCC_ATC_FLUSH 0x01 static const value_string artnet_tod_control_command_vals[] = { { ARTNET_TCC_ATC_NONE, "AtcNone" }, { ARTNET_TCC_ATC_FLUSH, "AtcFlush" }, { 0, NULL } }; #define ARTNET_RC_AR_PROCESS 0x00 static const value_string artnet_rdm_command_vals[] = { { ARTNET_RC_AR_PROCESS, "ArProcess" }, { 0, NULL } }; #define ARTNET_CC_DISCOVERY_COMMAND 0x10 #define ARTNET_CC_DISCOVERY_COMMAND_RESPONSE 0x11 #define ARTNET_CC_GET_COMMAND 0x20 #define ARTNET_CC_GET_COMMAND_RESPONSE 0x21 #define ARTNET_CC_SET_COMMAND 0x30 #define ARTNET_CC_SET_COMMAND_RESPONSE 0x31 static const value_string artnet_cc_vals[] = { { ARTNET_CC_DISCOVERY_COMMAND, "Discovery Command" }, { ARTNET_CC_DISCOVERY_COMMAND_RESPONSE, "Discovery Command Response" }, { ARTNET_CC_GET_COMMAND, "Get Command" }, { ARTNET_CC_GET_COMMAND_RESPONSE, "Get Command Response" }, { ARTNET_CC_SET_COMMAND, "Set Command" }, { ARTNET_CC_SET_COMMAND_RESPONSE, "Set Command Response" }, { 0, NULL }, }; #define ARTNET_FILE_TYPE_FIRST 0x00 #define ARTNET_FILE_TYPE_NORM 0x01 #define ARTNET_FILE_TYPE_LAST 0x02 static const value_string artnet_file_type_vals[] = { { ARTNET_FILE_TYPE_FIRST, "First file packet" } , { ARTNET_FILE_TYPE_NORM, "File packet" } , { ARTNET_FILE_TYPE_LAST, "Final file packet" } , { 0, NULL }, }; static const value_string vals_artnet_poll_reply_style[] = { { 0x00, "StNode (Art-Net to DMX device)" }, { 0x01, "StController (Lighting console)" }, { 0x02, "StMedia (Medial server)" }, { 0x03, "StRoute (Network routing device)" }, { 0x04, "StBackup (Backup device)" }, { 0x05, "StConfig (Configuration or diagnostic tool)" }, { 0x06, "StVisual (Visualizer)" }, { 0x00, NULL }, }; static const value_string vals_artnet_poll_reply_swvideo[] = { { 0x00, "Displaying local data" }, { 0x01, "Displaying ethernet data" }, { 0x00, NULL }, }; static const value_string artnet_poll_reply_status2_bigaddr_supported_vals[] = { { 0x00, "8bit Port-Address" }, { 0x01, "15bit Port-Address" }, { 0x00, NULL } }; /* Define the artnet proto */ static int proto_artnet = -1; /* general */ static int hf_artnet_filler = -1; static int hf_artnet_spare = -1; static int hf_artnet_data = -1; static int hf_artnet_excess_bytes = -1; /* Header */ static int hf_artnet_header = -1; static int hf_artnet_header_id = -1; static int hf_artnet_header_opcode = -1; static int hf_artnet_header_protver = -1; /* ArtPoll */ static int hf_artnet_poll = -1; static int hf_artnet_poll_talktome = -1; static int hf_artnet_poll_talktome_reply_change= -1; static int hf_artnet_poll_talktome_diag = -1; static int hf_artnet_poll_talktome_diag_unicast = -1; static int hf_artnet_poll_talktome_vlc = -1; static int hf_artnet_poll_talktome_targeted = -1; static int hf_artnet_poll_diag_priority = -1; static int hf_artnet_poll_target_port_top = -1; static int hf_artnet_poll_target_port_bottom = -1; static gint ett_artnet_poll_talktome = -1; static int * const artnet_poll_talktome_fields[] = { &hf_artnet_poll_talktome_reply_change, &hf_artnet_poll_talktome_diag, &hf_artnet_poll_talktome_diag_unicast, &hf_artnet_poll_talktome_vlc, &hf_artnet_poll_talktome_targeted, NULL }; static const value_string artnet_talktome_diag_unicast_vals[] = { { 0x00, "Broadcast" }, { 0x01, "Unicast" }, { 0x00, NULL } }; static const value_string artnet_talktome_diag_priority_vals[] = { { 0x00, "DpAll" }, { 0x10, "DpLow" }, { 0x40, "DpMed" }, { 0x80, "DpHigh" }, { 0xe0, "DpCritical" }, { 0xf0, "DpVolatile" }, { 0x00, NULL } }; /* ArtPollReply */ static int hf_artnet_poll_reply = -1; static int hf_artnet_poll_reply_ip_address = -1; static int hf_artnet_poll_reply_port_nr = -1; static int hf_artnet_poll_reply_versinfo = -1; static int hf_artnet_poll_reply_netswitch = -1; static int hf_artnet_poll_reply_subswitch = -1; static int hf_artnet_poll_reply_oem = -1; static int hf_artnet_poll_reply_ubea_version = -1; static int hf_artnet_poll_reply_status = -1; static int hf_artnet_poll_reply_status_ubea_present = -1; static int hf_artnet_poll_reply_status_rdm_supported = -1; static int hf_artnet_poll_reply_status_rom_booted = -1; static int hf_artnet_poll_reply_status_port_prog = -1; static int hf_artnet_poll_reply_status_indicator = -1; static int hf_artnet_poll_reply_esta_man = -1; static int hf_artnet_poll_reply_short_name = -1; static int hf_artnet_poll_reply_long_name = -1; static int hf_artnet_poll_reply_node_report = -1; static int hf_artnet_poll_reply_port_info = -1; static int hf_artnet_poll_reply_num_ports = -1; static int hf_artnet_poll_reply_port_types = -1; static int hf_artnet_poll_reply_port_types_1 = -1; static int hf_artnet_poll_reply_port_types_2 = -1; static int hf_artnet_poll_reply_port_types_3 = -1; static int hf_artnet_poll_reply_port_types_4 = -1; static int hf_artnet_poll_reply_good_input = -1; static int hf_artnet_poll_reply_good_input_1 = -1; static int hf_artnet_poll_reply_good_input_2 = -1; static int hf_artnet_poll_reply_good_input_3 = -1; static int hf_artnet_poll_reply_good_input_4 = -1; static int hf_artnet_poll_reply_good_output = -1; static int hf_artnet_poll_reply_good_output_1 = -1; static int hf_artnet_poll_reply_good_output_merge_ltp = -1; static int hf_artnet_poll_reply_good_output_short = -1; static int hf_artnet_poll_reply_good_output_merge_artnet = -1; static int hf_artnet_poll_reply_good_output_dmx_text = -1; static int hf_artnet_poll_reply_good_output_dmx_sip = -1; static int hf_artnet_poll_reply_good_output_dmx_test = -1; static int hf_artnet_poll_reply_good_output_data = -1; static int hf_artnet_poll_reply_good_output_2 = -1; static int hf_artnet_poll_reply_good_output_3 = -1; static int hf_artnet_poll_reply_good_output_4 = -1; static int hf_artnet_poll_reply_swin = -1; static int hf_artnet_poll_reply_swin_1 = -1; static int hf_artnet_poll_reply_swin_2 = -1; static int hf_artnet_poll_reply_swin_3 = -1; static int hf_artnet_poll_reply_swin_4 = -1; static int hf_artnet_poll_reply_swin_1_universe = -1; static int hf_artnet_poll_reply_swin_2_universe = -1; static int hf_artnet_poll_reply_swin_3_universe = -1; static int hf_artnet_poll_reply_swin_4_universe = -1; static int hf_artnet_poll_reply_swout = -1; static int hf_artnet_poll_reply_swout_1 = -1; static int hf_artnet_poll_reply_swout_2 = -1; static int hf_artnet_poll_reply_swout_3 = -1; static int hf_artnet_poll_reply_swout_4 = -1; static int hf_artnet_poll_reply_swout_1_universe = -1; static int hf_artnet_poll_reply_swout_2_universe = -1; static int hf_artnet_poll_reply_swout_3_universe = -1; static int hf_artnet_poll_reply_swout_4_universe = -1; static int hf_artnet_poll_reply_swvideo = -1; static int hf_artnet_poll_reply_swmacro = -1; static int hf_artnet_poll_reply_swremote = -1; static int hf_artnet_poll_reply_style = -1; static int hf_artnet_poll_reply_mac = -1; static int hf_artnet_poll_reply_bind_ip_address = -1; static int hf_artnet_poll_reply_bind_index = -1; static int hf_artnet_poll_reply_status2 = -1; static int hf_artnet_poll_reply_status2_web_supported = -1; static int hf_artnet_poll_reply_status2_dhcp_used = -1; static int hf_artnet_poll_reply_status2_dhcp_supported = -1; static int hf_artnet_poll_reply_status2_bigaddr_supported = -1; static gint ett_artnet_poll_reply_status = -1; static gint ett_artnet_poll_reply_good_input_1 = -1; static gint ett_artnet_poll_reply_good_input_2 = -1; static gint ett_artnet_poll_reply_good_input_3 = -1; static gint ett_artnet_poll_reply_good_input_4 = -1; static gint ett_artnet_poll_reply_good_output_1 = -1; static gint ett_artnet_poll_reply_good_output_2 = -1; static gint ett_artnet_poll_reply_good_output_3 = -1; static gint ett_artnet_poll_reply_good_output_4 = -1; static gint ett_artnet_poll_reply_status2 = -1; static int hf_artnet_poll_reply_good_input_recv_error = -1; static int hf_artnet_poll_reply_good_input_disabled = -1; static int hf_artnet_poll_reply_good_input_dmx_text = -1; static int hf_artnet_poll_reply_good_input_dmx_sip = -1; static int hf_artnet_poll_reply_good_input_dmx_test = -1; static int hf_artnet_poll_reply_good_input_data = -1; static int * const artnet_poll_reply_status_fields[] = { &hf_artnet_poll_reply_status_ubea_present, &hf_artnet_poll_reply_status_rdm_supported, &hf_artnet_poll_reply_status_rom_booted, &hf_artnet_poll_reply_status_port_prog, &hf_artnet_poll_reply_status_indicator, NULL }; static int * const artnet_poll_reply_good_input_fields[] = { &hf_artnet_poll_reply_good_input_recv_error, &hf_artnet_poll_reply_good_input_disabled, &hf_artnet_poll_reply_good_input_dmx_text, &hf_artnet_poll_reply_good_input_dmx_sip, &hf_artnet_poll_reply_good_input_dmx_test, &hf_artnet_poll_reply_good_input_data, NULL }; static int * const artnet_poll_reply_good_output_fields[] = { &hf_artnet_poll_reply_good_output_merge_ltp, &hf_artnet_poll_reply_good_output_short, &hf_artnet_poll_reply_good_output_merge_artnet, &hf_artnet_poll_reply_good_output_dmx_text, &hf_artnet_poll_reply_good_output_dmx_sip, &hf_artnet_poll_reply_good_output_dmx_test, &hf_artnet_poll_reply_good_output_data, NULL }; static int * const artnet_poll_reply_status2_fields[] = { &hf_artnet_poll_reply_status2_web_supported, &hf_artnet_poll_reply_status2_dhcp_used, &hf_artnet_poll_reply_status2_dhcp_supported, &hf_artnet_poll_reply_status2_bigaddr_supported, NULL }; /* ArtOutput */ static int hf_artnet_output = -1; static int hf_artnet_output_sequence = -1; static int hf_artnet_output_physical = -1; static int hf_artnet_output_universe = -1; static int hf_artnet_output_length = -1; /* ArtAddress */ static int hf_artnet_address = -1; static int hf_artnet_address_netswitch_special = -1; static int hf_artnet_address_netswitch_net = -1; static int hf_artnet_address_netswitch_write = -1; static int hf_artnet_address_short_name = -1; static int hf_artnet_address_long_name = -1; static int hf_artnet_address_swin = -1; static int hf_artnet_address_swin_1 = -1; static int hf_artnet_address_swin_2 = -1; static int hf_artnet_address_swin_3 = -1; static int hf_artnet_address_swin_4 = -1; static int hf_artnet_address_swout = -1; static int hf_artnet_address_swout_1 = -1; static int hf_artnet_address_swout_2 = -1; static int hf_artnet_address_swout_3 = -1; static int hf_artnet_address_swout_4 = -1; static int hf_artnet_address_subswitch_special = -1; static int hf_artnet_address_subswitch_sub = -1; static int hf_artnet_address_subswitch_write = -1; static int hf_artnet_address_swvideo = -1; static int hf_artnet_address_command = -1; static gint ett_artnet_address_netswitch = -1; static gint ett_artnet_address_subswitch = -1; static int * const artnet_address_netswitch_fields[] = { &hf_artnet_address_netswitch_net, &hf_artnet_address_netswitch_write, NULL }; static int * const artnet_address_subswitch_fields[] = { &hf_artnet_address_subswitch_sub, &hf_artnet_address_subswitch_write, NULL }; static const value_string artnet_address_switch_vals[] = { { 0x00, "Reset to Physical Switch" }, { 0x7f, "No Change" }, { 0x00, NULL } }; /* ArtInput */ static int hf_artnet_input = -1; static int hf_artnet_input_num_ports = -1; static int hf_artnet_input_input = -1; static int hf_artnet_input_input_1 = -1; static int hf_artnet_input_input_2 = -1; static int hf_artnet_input_input_3 = -1; static int hf_artnet_input_input_4 = -1; /* ArtFirmwareMaster */ static int hf_artnet_firmware_master = -1; static int hf_artnet_firmware_master_type = -1; static int hf_artnet_firmware_master_block_id = -1; static int hf_artnet_firmware_master_length = -1; static int hf_artnet_firmware_master_data = -1; /* ArtFirmwareReply */ static int hf_artnet_firmware_reply = -1; static int hf_artnet_firmware_reply_type = -1; /* ArtVideoSetup */ static int hf_artnet_video_setup_control = -1; static int hf_artnet_video_setup_font_height = -1; static int hf_artnet_video_setup_first_font = -1; static int hf_artnet_video_setup_last_font = -1; static int hf_artnet_video_setup_win_font_name = -1; static int hf_artnet_video_setup_font_data = -1; /* ArtVideoPalette */ static int hf_artnet_video_palette_colour_red = -1; static int hf_artnet_video_palette_colour_green = -1; static int hf_artnet_video_palette_colour_blue = -1; /* ArtVideoData */ static int hf_artnet_video_data_pos_x = -1; static int hf_artnet_video_data_pos_y = -1; static int hf_artnet_video_data_len_x = -1; static int hf_artnet_video_data_len_y = -1; static int hf_artnet_video_data_data = -1; /* ArtPollFpReply */ static int hf_artnet_poll_fp_reply = -1; /* ArtTodRequest */ static int hf_artnet_tod_request = -1; static int hf_artnet_tod_request_net = -1; static int hf_artnet_tod_request_command = -1; static int hf_artnet_tod_request_ad_count = -1; static int hf_artnet_tod_request_address = -1; /* ArtTodData */ static int hf_artnet_tod_data = -1; static int hf_artnet_tod_data_port = -1; static int hf_artnet_tod_data_net = -1; static int hf_artnet_tod_data_command_response = -1; static int hf_artnet_tod_data_address = -1; static int hf_artnet_tod_data_uid_total = -1; static int hf_artnet_tod_data_block_count = -1; static int hf_artnet_tod_data_uid_count = -1; static int hf_artnet_tod_data_tod = -1; /* ArtTodControl */ static int hf_artnet_tod_control = -1; static int hf_artnet_tod_control_net = -1; static int hf_artnet_tod_control_command = -1; static int hf_artnet_tod_control_address = -1; static int hf_artnet_tod_control_universe = -1; /* ArtRdm */ static int hf_artnet_rdm = -1; static int hf_artnet_rdm_command = -1; static int hf_artnet_rdm_address = -1; static int hf_artnet_rdm_sc = -1; static int hf_artnet_rdm_rdmver = -1; static int hf_artnet_rdm_net = -1; /* ArtRdmSub */ static int hf_artnet_rdm_sub = -1; static int hf_artnet_rdm_sub_uid = -1; static int hf_artnet_rdm_sub_command_class = -1; static int hf_artnet_rdm_sub_pid = -1; static int hf_artnet_rdm_sub_sub_device = -1; static int hf_artnet_rdm_sub_sub_count = -1; static int hf_artnet_rdm_sub_data = -1; /* ArtIpProg */ static int hf_artnet_ip_prog = -1; static int hf_artnet_ip_prog_command = -1; static int hf_artnet_ip_prog_command_prog_port = -1; static int hf_artnet_ip_prog_command_prog_sm = -1; static int hf_artnet_ip_prog_command_prog_ip = -1; static int hf_artnet_ip_prog_command_reset = -1; static int hf_artnet_ip_prog_command_unused = -1; static int hf_artnet_ip_prog_command_dhcp_enable = -1; static int hf_artnet_ip_prog_command_prog_enable = -1; static int hf_artnet_ip_prog_ip = -1; static int hf_artnet_ip_prog_sm = -1; static int hf_artnet_ip_prog_port = -1; static gint ett_artnet_ip_prog_command = -1; static int * const artnet_ip_prog_command_fields[] = { &hf_artnet_ip_prog_command_prog_port, &hf_artnet_ip_prog_command_prog_sm, &hf_artnet_ip_prog_command_prog_ip, &hf_artnet_ip_prog_command_reset, &hf_artnet_ip_prog_command_unused, &hf_artnet_ip_prog_command_dhcp_enable, &hf_artnet_ip_prog_command_prog_enable, NULL }; /* ArtIpProgReply */ static int hf_artnet_ip_prog_reply = -1; static int hf_artnet_ip_prog_reply_ip = -1; static int hf_artnet_ip_prog_reply_sm = -1; static int hf_artnet_ip_prog_reply_port = -1; static int hf_artnet_ip_prog_reply_status = -1; static int hf_artnet_ip_prog_reply_status_unused = -1; static int hf_artnet_ip_prog_reply_status_dhcp_enable = -1; static gint ett_artnet_ip_prog_reply_status = -1; static int * const artnet_ip_prog_reply_status_fields[] = { &hf_artnet_ip_prog_reply_status_unused, &hf_artnet_ip_prog_reply_status_dhcp_enable, NULL }; /* ArtDiagData */ static int hf_artnet_diag_data = -1; static int hf_artnet_diag_data_priority = -1; static int hf_artnet_diag_data_index = -1; static int hf_artnet_diag_data_length = -1; static int hf_artnet_diag_data_data = -1; /* ArtCommand */ static int hf_artnet_command = -1; /* ArtMedia */ static int hf_artnet_media = -1; /* ArtMediaPatch */ static int hf_artnet_media_patch = -1; /* ArtMediaControl */ static int hf_artnet_media_control = -1; /* ArtMediaControlReply */ static int hf_artnet_media_control_reply = -1; /* ArtTimeCode */ static int hf_artnet_time_code = -1; /* ArtTimeSync */ static int hf_artnet_time_sync = -1; /* ArtTrigger */ static int hf_artnet_trigger = -1; static int hf_artnet_trigger_oemcode = -1; static int hf_artnet_trigger_key = -1; static int hf_artnet_trigger_subkey = -1; static int hf_artnet_trigger_data = -1; /* ArtDirectory */ static int hf_artnet_directory = -1; static int hf_artnet_directory_filler = -1; static int hf_artnet_directory_cmd = -1; static int hf_artnet_directory_file = -1; /* ArtDirectoryReply */ static int hf_artnet_directory_reply = -1; static int hf_artnet_directory_reply_filler = -1; static int hf_artnet_directory_reply_flags = -1; static int hf_artnet_directory_reply_file = -1; static int hf_artnet_directory_reply_name = -1; static int hf_artnet_directory_reply_desc = -1; static int hf_artnet_directory_reply_length = -1; static int hf_artnet_directory_reply_data = -1; /* ArtMacMaster */ static int hf_artnet_mac_master = -1; /* ArtMacSlave */ static int hf_artnet_mac_slave = -1; /* ArtFileTnMaster */ static int hf_artnet_file_tn_master = -1; static int hf_artnet_file_tn_master_filler = -1; static int hf_artnet_file_tn_master_type = -1; static int hf_artnet_file_tn_master_block_id = -1; static int hf_artnet_file_tn_master_length = -1; static int hf_artnet_file_tn_master_name = -1; static int hf_artnet_file_tn_master_checksum = -1; static int hf_artnet_file_tn_master_spare = -1; static int hf_artnet_file_tn_master_data = -1; /* ArtFileFnMaster */ static int hf_artnet_file_fn_master = -1; /* ArtFileFnReply */ static int hf_artnet_file_fn_reply = -1; /* Define the tree for artnet */ static int ett_artnet = -1; /* A static handle for the rdm dissector */ static dissector_handle_t rdm_handle; static dissector_handle_t dmx_chan_handle; static guint dissect_artnet_poll(tvbuff_t *tvb, guint offset, proto_tree *tree) { guint size; proto_tree_add_bitmask(tree, tvb, offset, hf_artnet_poll_talktome, ett_artnet_poll_talktome, artnet_poll_talktome_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_poll_diag_priority, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; size = tvb_reported_length_remaining(tvb, offset); if (size >= 4) { proto_tree_add_item(tree, hf_artnet_poll_target_port_top, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_poll_target_port_bottom, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; } return offset; } static guint dissect_artnet_poll_reply(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree *hi, *si, *ti; proto_item *tf; guint16 universe,uni_port; proto_tree_add_item(tree, hf_artnet_poll_reply_ip_address, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_poll_reply_port_nr, tvb, offset, 2, ENC_LITTLE_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_poll_reply_versinfo, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_poll_reply_netswitch, tvb, offset, 1, ENC_BIG_ENDIAN); universe = (tvb_get_guint8(tvb, offset) & 0x7F) << 8; offset += 1; proto_tree_add_item(tree, hf_artnet_poll_reply_subswitch, tvb, offset, 1, ENC_BIG_ENDIAN); universe |= (tvb_get_guint8(tvb, offset) & 0x0F) << 4; offset += 1; proto_tree_add_item(tree, hf_artnet_poll_reply_oem, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_poll_reply_ubea_version, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(tree, tvb, offset, hf_artnet_poll_reply_status, ett_artnet_poll_reply_status, artnet_poll_reply_status_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_poll_reply_esta_man, tvb, offset, 2, ENC_LITTLE_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_poll_reply_short_name, tvb, offset, 18, ENC_ASCII|ENC_NA); offset += 18; proto_tree_add_item(tree, hf_artnet_poll_reply_long_name, tvb, offset, 64, ENC_ASCII|ENC_NA); offset += 64; proto_tree_add_item(tree, hf_artnet_poll_reply_node_report, tvb, offset, 64, ENC_ASCII|ENC_NA); offset += 64; hi = proto_tree_add_item(tree, hf_artnet_poll_reply_port_info, tvb, offset, ARTNET_POLL_REPLY_PORT_INFO_LENGTH, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item(si, hf_artnet_poll_reply_num_ports, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; hi = proto_tree_add_item(si, hf_artnet_poll_reply_port_types, tvb, offset, ARTNET_POLL_REPLY_PORT_TYPES_LENGTH, ENC_NA); ti = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item(ti, hf_artnet_poll_reply_port_types_1, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_port_types_2, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_port_types_3, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_port_types_4, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; hi = proto_tree_add_item(si, hf_artnet_poll_reply_good_input, tvb, offset, ARTNET_POLL_REPLY_GOOD_INPUT_LENGTH, ENC_NA); ti = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_input_1, ett_artnet_poll_reply_good_input_1, artnet_poll_reply_good_input_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_input_2, ett_artnet_poll_reply_good_input_2, artnet_poll_reply_good_input_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_input_3, ett_artnet_poll_reply_good_input_3, artnet_poll_reply_good_input_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_input_4, ett_artnet_poll_reply_good_input_4, artnet_poll_reply_good_input_fields, ENC_BIG_ENDIAN); offset += 1; hi = proto_tree_add_item(si, hf_artnet_poll_reply_good_output, tvb, offset, ARTNET_POLL_REPLY_GOOD_OUTPUT_LENGTH, ENC_NA); ti = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_output_1, ett_artnet_poll_reply_good_output_1, artnet_poll_reply_good_output_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_output_2, ett_artnet_poll_reply_good_output_2, artnet_poll_reply_good_output_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_output_3, ett_artnet_poll_reply_good_output_3, artnet_poll_reply_good_output_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(ti, tvb, offset, hf_artnet_poll_reply_good_output_4, ett_artnet_poll_reply_good_output_4, artnet_poll_reply_good_output_fields, ENC_BIG_ENDIAN); offset += 1; hi = proto_tree_add_item(si, hf_artnet_poll_reply_swin, tvb, offset, ARTNET_POLL_REPLY_SWIN_LENGTH, ENC_NA); ti = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item(ti, hf_artnet_poll_reply_swin_1, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swin_1_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_swin_2, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swin_2_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_swin_3, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swin_3_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_swin_4, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swin_4_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; hi = proto_tree_add_item(si, hf_artnet_poll_reply_swout, tvb, offset, ARTNET_POLL_REPLY_SWOUT_LENGTH, ENC_NA); ti = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item(ti, hf_artnet_poll_reply_swout_1, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swout_1_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_swout_2, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swout_2_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_swout_3, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swout_3_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(ti, hf_artnet_poll_reply_swout_4, tvb, offset, 1, ENC_BIG_ENDIAN); uni_port = tvb_get_guint8(tvb, offset) & 0x0F; tf = proto_tree_add_uint(ti,hf_artnet_poll_reply_swout_4_universe,tvb, offset, 0, universe | uni_port); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(tree, hf_artnet_poll_reply_swvideo, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_poll_reply_swmacro, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_poll_reply_swremote, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 3, ENC_NA); offset += 3; proto_tree_add_item(tree, hf_artnet_poll_reply_style, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_poll_reply_mac, tvb, offset, 6, ENC_NA); offset += 6; proto_tree_add_item(tree, hf_artnet_poll_reply_bind_ip_address, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_poll_reply_bind_index, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_bitmask(tree, tvb, offset, hf_artnet_poll_reply_status2, ett_artnet_poll_reply_status2, artnet_poll_reply_status2_fields, ENC_BIG_ENDIAN); offset += 1; /*XXX: Protocol spec is not very precise about this (26x8 fillers) */ if (offset < tvb_reported_length(tvb)) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, -1, ENC_NA); offset = tvb_reported_length(tvb); } return offset; } static guint dissect_artnet_output(tvbuff_t *tvb, guint offset, proto_tree *tree, packet_info *pinfo, proto_tree* base_tree) { tvbuff_t *next_tvb; guint16 length; guint size; gboolean save_info; proto_tree_add_item(tree, hf_artnet_output_sequence, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_output_physical, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_output_universe, tvb, offset, 2, ENC_LITTLE_ENDIAN); offset += 2; length = tvb_get_ntohs(tvb, offset); proto_tree_add_uint(tree, hf_artnet_output_length, tvb, offset, 2, length); offset += 2; size = tvb_reported_length_remaining(tvb, offset); save_info = col_get_writable(pinfo->cinfo, COL_INFO); col_set_writable(pinfo->cinfo, COL_INFO, FALSE); next_tvb = tvb_new_subset_length(tvb, offset, length); call_dissector(dmx_chan_handle, next_tvb, pinfo, base_tree); col_set_writable(pinfo->cinfo, COL_INFO, save_info); return offset + size; } static guint dissect_artnet_address(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree *hi, *si, *ti; guint8 net, sub; net = tvb_get_guint8(tvb, offset); /* Treat the "special" values differently */ if (net == 0x00 || net == 0x7F) { proto_tree_add_uint(tree,hf_artnet_address_netswitch_special, tvb, offset, 0, net); } else { proto_tree_add_bitmask_text(tree, tvb, offset, 1, "NetSwitch: ", "NetSwitch Error: ", ett_artnet_address_netswitch, artnet_address_netswitch_fields, ENC_BIG_ENDIAN, 0); } offset += 1; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_address_short_name, tvb, offset, 18, ENC_ASCII|ENC_NA); offset += 18; proto_tree_add_item(tree, hf_artnet_address_long_name, tvb, offset, 64, ENC_ASCII|ENC_NA); offset += 64; hi = proto_tree_add_item(tree, hf_artnet_address_swin, tvb, offset, ARTNET_ADDRESS_SWIN_LENGTH, ENC_NA); ti = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item(ti, hf_artnet_address_swin_1, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(ti, hf_artnet_address_swin_2, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(ti, hf_artnet_address_swin_3, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(ti, hf_artnet_address_swin_4, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; hi = proto_tree_add_item(tree, hf_artnet_address_swout, tvb, offset, ARTNET_ADDRESS_SWOUT_LENGTH, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item(si, hf_artnet_address_swout_1, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(si, hf_artnet_address_swout_2, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(si, hf_artnet_address_swout_3, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(si, hf_artnet_address_swout_4, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; sub = tvb_get_guint8(tvb, offset); /* Treat the "special" values differently */ if (sub == 0x00 || sub == 0x7F) { proto_tree_add_uint(tree,hf_artnet_address_subswitch_special, tvb, offset, 0, sub); } else { proto_tree_add_bitmask_text(tree, tvb, offset, 1, "SubSwitch: ", "SubSwitch Error: ", ett_artnet_address_subswitch, artnet_address_subswitch_fields, ENC_BIG_ENDIAN, 0); } offset += 1; proto_tree_add_item(tree, hf_artnet_address_swvideo, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_address_command, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; return offset; } static guint dissect_artnet_input(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree *hi, *si; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_input_num_ports, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; hi = proto_tree_add_item(tree, hf_artnet_input_input, tvb, offset, ARTNET_INPUT_INPUT_LENGTH, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item(si, hf_artnet_input_input_1, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(si, hf_artnet_input_input_2, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(si, hf_artnet_input_input_3, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(si, hf_artnet_input_input_4, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; return offset; } static guint dissect_artnet_video_setup(tvbuff_t *tvb, guint offset, proto_tree *tree ) { guint32 size; guint8 font_height, last_font; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 4, ENC_NA); offset += 4; proto_tree_add_item(tree, hf_artnet_video_setup_control, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; font_height = tvb_get_guint8(tvb, offset); proto_tree_add_uint(tree, hf_artnet_video_setup_font_height, tvb, offset, 1, font_height); offset += 1; proto_tree_add_item(tree, hf_artnet_video_setup_first_font, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; last_font = tvb_get_guint8(tvb, offset); proto_tree_add_uint(tree, hf_artnet_video_setup_last_font, tvb, offset, 1, last_font); offset += 1; proto_tree_add_item(tree, hf_artnet_video_setup_win_font_name, tvb, offset, 64, ENC_ASCII|ENC_NA); offset += 64; size = last_font * font_height; proto_tree_add_item(tree, hf_artnet_video_setup_font_data, tvb, offset, size, ENC_NA ); offset += size; return offset; } static guint dissect_artnet_video_palette(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_video_palette_colour_red, tvb, offset, 17, ENC_NA ); offset += 17; proto_tree_add_item(tree, hf_artnet_video_palette_colour_green, tvb, offset, 17, ENC_NA ); offset += 17; proto_tree_add_item(tree, hf_artnet_video_palette_colour_blue, tvb, offset, 17, ENC_NA ); offset += 17; return offset; } static guint dissect_artnet_video_data(tvbuff_t *tvb, guint offset, proto_tree *tree) { guint8 len_x, len_y; guint32 size; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_video_data_pos_x, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_video_data_pos_y, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; len_x = tvb_get_guint8(tvb, offset); proto_tree_add_uint(tree, hf_artnet_video_data_len_x, tvb, offset, 1, len_x); offset += 1; len_y = tvb_get_guint8(tvb, offset); proto_tree_add_uint(tree, hf_artnet_video_data_len_y, tvb, offset, 1, len_y); offset += 1; size = len_x * len_y * 2; proto_tree_add_item(tree, hf_artnet_video_data_data, tvb, offset, size, ENC_NA ); offset += size; return offset; } static guint dissect_artnet_firmware_master(tvbuff_t *tvb, guint offset, proto_tree *tree ) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_firmware_master_type, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_firmware_master_block_id, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_firmware_master_length, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 20, ENC_NA ); offset += 20; proto_tree_add_item(tree, hf_artnet_firmware_master_data, tvb, offset, 1024, ENC_NA ); offset += 1024; return offset; } static guint dissect_artnet_firmware_reply(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_firmware_reply_type, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 21, ENC_NA ); offset += 21; return offset; } static guint dissect_artnet_tod_request(tvbuff_t *tvb, guint offset, proto_tree *tree) { guint8 ad_count; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 7, ENC_NA); offset += 7; proto_tree_add_item(tree, hf_artnet_tod_request_net, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_tod_request_command, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; ad_count = tvb_get_guint8(tvb, offset); proto_tree_add_uint(tree, hf_artnet_tod_request_ad_count, tvb, offset, 1, ad_count); offset += 1; proto_tree_add_item(tree, hf_artnet_tod_request_address, tvb, offset, ad_count, ENC_NA); offset += ad_count; return offset; } static guint dissect_artnet_tod_data(tvbuff_t *tvb, guint offset, proto_tree *tree) { guint16 universe; proto_item *tf; guint8 i, uid_count; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_tod_data_port, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 7, ENC_NA); offset += 7; proto_tree_add_item(tree, hf_artnet_tod_data_net, tvb, offset, 1, ENC_BIG_ENDIAN); universe = (tvb_get_guint8(tvb, offset) & 0x7F) << 8; offset += 1; proto_tree_add_item(tree, hf_artnet_tod_data_command_response, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_tod_data_address, tvb, offset, 1, ENC_BIG_ENDIAN); universe |= tvb_get_guint8(tvb, offset); tf = proto_tree_add_uint(tree,hf_artnet_tod_control_universe,tvb, offset, 0, universe); proto_item_set_generated(tf); offset += 1; proto_tree_add_item(tree, hf_artnet_tod_data_uid_total, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_tod_data_block_count, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; uid_count = tvb_get_guint8(tvb, offset); proto_tree_add_uint(tree, hf_artnet_tod_data_uid_count, tvb, offset, 1, uid_count); offset += 1; for( i = 0; i < uid_count; i++) { proto_tree_add_item(tree, hf_artnet_tod_data_tod, tvb, offset, 6, ENC_NA); offset += 6; } return offset; } static guint dissect_artnet_tod_control(tvbuff_t *tvb, guint offset, proto_tree *tree) { guint16 universe; proto_item *tf; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 7, ENC_NA); offset += 7; proto_tree_add_item(tree, hf_artnet_tod_control_net, tvb, offset, 1, ENC_BIG_ENDIAN); universe = (tvb_get_guint8(tvb, offset) & 0x7F) << 8; offset += 1; proto_tree_add_item(tree, hf_artnet_tod_control_command, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_tod_control_address, tvb, offset, 1, ENC_BIG_ENDIAN); universe |= tvb_get_guint8(tvb, offset); tf = proto_tree_add_uint(tree,hf_artnet_tod_control_universe,tvb, offset, 0, universe); proto_item_set_generated(tf); offset += 1; return offset; } static guint dissect_artnet_rdm(tvbuff_t *tvb, guint offset, proto_tree *tree, packet_info *pinfo, proto_tree *base_tree) { guint16 universe; proto_item *tf; guint8 rdmver; guint8 sc; guint size; gboolean save_info; tvbuff_t *next_tvb; rdmver = tvb_get_guint8(tvb, offset); if (rdmver == 0x00) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 8, ENC_NA); offset += 8; universe = 0; } else { proto_tree_add_item(tree, hf_artnet_rdm_rdmver, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 7, ENC_NA); offset += 7; proto_tree_add_item(tree, hf_artnet_rdm_net, tvb, offset, 1, ENC_BIG_ENDIAN); universe = (tvb_get_guint8(tvb, offset) & 0x7F) << 8; offset += 1; } proto_tree_add_item(tree, hf_artnet_rdm_command, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_rdm_address, tvb, offset, 1, ENC_BIG_ENDIAN); universe |= tvb_get_guint8(tvb, offset); tf = proto_tree_add_uint(tree,hf_artnet_tod_control_universe,tvb, offset, 0, universe); proto_item_set_generated(tf); offset += 1; /* check for old version that included the 0xCC startcode * The 0xCC will never be the first byte of the RDM packet */ sc = tvb_get_guint8(tvb, offset); if (sc == 0xCC) { proto_tree_add_item(tree, hf_artnet_rdm_sc, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; } size = tvb_reported_length_remaining(tvb, offset); save_info = col_get_writable(pinfo->cinfo, COL_INFO); col_set_writable(pinfo->cinfo, COL_INFO, FALSE); next_tvb = tvb_new_subset_remaining(tvb, offset); call_dissector(rdm_handle, next_tvb, pinfo, base_tree); col_set_writable(pinfo->cinfo, COL_INFO, save_info); return offset + size; } static guint dissect_artnet_rdm_sub(tvbuff_t *tvb, guint offset, proto_tree *tree, packet_info *pinfo _U_) { guint8 cc; gint size; proto_tree_add_item(tree, hf_artnet_rdm_rdmver, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_rdm_sub_uid, tvb, offset, 6, ENC_NA); offset += 6; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 1, ENC_NA); offset += 1; cc = tvb_get_guint8(tvb, offset); proto_tree_add_item(tree, hf_artnet_rdm_sub_command_class, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_rdm_sub_pid, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_rdm_sub_sub_device, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_rdm_sub_sub_count, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 4, ENC_NA); offset += 4; switch (cc) { case ARTNET_CC_SET_COMMAND: case ARTNET_CC_GET_COMMAND_RESPONSE: size = tvb_reported_length_remaining(tvb, offset); proto_tree_add_item(tree, hf_artnet_rdm_sub_data, tvb, offset, size, ENC_NA); offset += size; break; case ARTNET_CC_DISCOVERY_COMMAND: case ARTNET_CC_DISCOVERY_COMMAND_RESPONSE: case ARTNET_CC_GET_COMMAND: case ARTNET_CC_SET_COMMAND_RESPONSE: default: break; } return offset; } static guint dissect_artnet_ip_prog(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_bitmask(tree, tvb, offset, hf_artnet_ip_prog_command, ett_artnet_ip_prog_command, artnet_ip_prog_command_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_ip_prog_ip, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_ip_prog_sm, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_ip_prog_port, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 8, ENC_NA); offset += 8; return offset; } static guint dissect_artnet_ip_prog_reply(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 4, ENC_NA); offset += 4; proto_tree_add_item(tree, hf_artnet_ip_prog_reply_ip, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_ip_prog_reply_sm, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_ip_prog_reply_port, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_bitmask(tree, tvb, offset, hf_artnet_ip_prog_reply_status, ett_artnet_ip_prog_reply_status, artnet_ip_prog_reply_status_fields, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_spare, tvb, offset, 7, ENC_NA); offset += 7; return offset; } static guint dissect_artnet_poll_fp_reply(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtDiagData */ static guint dissect_artnet_diag_data(tvbuff_t *tvb, guint offset, proto_tree *tree) { guint16 length; proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_diag_data_priority, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_diag_data_index, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; length = tvb_get_ntohs(tvb, offset); proto_tree_add_item(tree, hf_artnet_diag_data_length, tvb, offset, 2, ENC_BIG_ENDIAN); offset+=2; proto_tree_add_item(tree, hf_artnet_diag_data_data, tvb, offset, length, ENC_ASCII|ENC_NA); offset += length; return offset; } /* ArtCommand */ static guint dissect_artnet_command(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtMedia */ static guint dissect_artnet_media(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtMediaPatch */ static guint dissect_artnet_media_patch(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtMediaControl */ static guint dissect_artnet_media_control(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtMediaControlReply */ static guint dissect_artnet_media_control_reply(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtTimeCode */ static guint dissect_artnet_time_code(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtTimeSync */ static guint dissect_artnet_time_sync(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtTrigger */ static guint dissect_artnet_trigger(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { proto_tree_add_item(tree, hf_artnet_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_trigger_oemcode, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_trigger_key, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_trigger_subkey, tvb, offset, 1, ENC_BIG_ENDIAN); offset += 1; proto_tree_add_item(tree, hf_artnet_trigger_data, tvb, offset, 512, ENC_NA); offset += 512; return offset; } /* ArtDirectory */ static guint dissect_artnet_directory(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree_add_item(tree, hf_artnet_directory_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_directory_cmd, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_directory_file, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; return offset; } /* ArtDirectoryReply */ static guint dissect_artnet_directory_reply(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree_add_item(tree, hf_artnet_directory_reply_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_directory_reply_flags, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_directory_reply_file, tvb, offset, 2, ENC_BIG_ENDIAN); offset += 2; proto_tree_add_item(tree, hf_artnet_directory_reply_name, tvb, offset, 16, ENC_ASCII|ENC_NA); offset += 16; proto_tree_add_item(tree, hf_artnet_directory_reply_desc, tvb, offset, 64, ENC_ASCII|ENC_NA); offset += 64; proto_tree_add_item(tree, hf_artnet_directory_reply_length, tvb, offset, 8, ENC_BIG_ENDIAN); offset += 8; proto_tree_add_item(tree, hf_artnet_directory_reply_data, tvb, offset, 64, ENC_NA); offset += 64; return offset; } /* ArtMacMaster */ static guint dissect_artnet_mac_master(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtMacSlave */ static guint dissect_artnet_mac_slave(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtFileTnMaster */ static guint dissect_artnet_file_tn_master(tvbuff_t *tvb, guint offset, proto_tree *tree) { proto_tree_add_item(tree, hf_artnet_file_tn_master_filler, tvb, offset, 2, ENC_NA); offset += 2; proto_tree_add_item(tree, hf_artnet_file_tn_master_type, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_file_tn_master_block_id, tvb, offset, 1, ENC_NA); offset += 1; proto_tree_add_item(tree, hf_artnet_file_tn_master_length, tvb, offset, 4, ENC_BIG_ENDIAN); offset += 4; proto_tree_add_item(tree, hf_artnet_file_tn_master_name, tvb, offset, 14, ENC_ASCII|ENC_NA); offset += 14; proto_tree_add_checksum(tree, tvb, offset, hf_artnet_file_tn_master_checksum, -1, NULL, NULL, 0, ENC_BIG_ENDIAN, PROTO_CHECKSUM_NO_FLAGS); offset += 2; proto_tree_add_item(tree, hf_artnet_file_tn_master_spare, tvb, offset, 4, ENC_NA); offset += 4; proto_tree_add_item(tree, hf_artnet_file_tn_master_data, tvb, offset, 512, ENC_NA); offset += 512; return offset; } /* ArtFileFnMaster */ static guint dissect_artnet_file_fn_master(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } /* ArtFileFnReply */ static guint dissect_artnet_file_fn_reply(tvbuff_t *tvb _U_, guint offset, proto_tree *tree _U_) { return offset; } static int dissect_artnet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_) { gint offset = 0; guint size; guint16 opcode; const guint8 *header; proto_tree *ti, *hi, *si = NULL, *artnet_tree, *artnet_header_tree; col_set_str(pinfo->cinfo, COL_PROTOCOL, "ARTNET"); col_clear(pinfo->cinfo, COL_INFO); ti = proto_tree_add_item(tree, proto_artnet, tvb, offset, -1, ENC_NA); artnet_tree = proto_item_add_subtree(ti, ett_artnet); hi = proto_tree_add_item(artnet_tree, hf_artnet_header, tvb, offset, ARTNET_HEADER_LENGTH, ENC_NA); artnet_header_tree = proto_item_add_subtree(hi, ett_artnet); proto_tree_add_item_ret_string(artnet_header_tree, hf_artnet_header_id, tvb, offset, 8, ENC_ASCII|ENC_NA, wmem_packet_scope(), &header); col_append_str(pinfo->cinfo, COL_INFO, header); offset += 8; opcode = tvb_get_letohs(tvb, offset); col_add_fstr(pinfo->cinfo, COL_INFO, "%s (0x%04x)", val_to_str_ext_const(opcode, &artnet_opcode_vals_ext, "Unknown"), opcode); if (tree) { proto_tree_add_uint(artnet_header_tree, hf_artnet_header_opcode, tvb, offset, 2, opcode); proto_item_append_text(ti, ", Opcode: %s (0x%04x)", val_to_str_ext_const(opcode, &artnet_opcode_vals_ext, "Unknown"), opcode); } offset += 2; if (opcode != ARTNET_OP_POLL_REPLY && opcode != ARTNET_OP_POLL_FP_REPLY) { if (tree) { proto_tree_add_item(artnet_header_tree, hf_artnet_header_protver, tvb, offset, 2, ENC_BIG_ENDIAN); proto_item_set_len(artnet_header_tree, ARTNET_HEADER_LENGTH+2 ); } offset += 2; } switch (opcode) { case ARTNET_OP_POLL: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_poll, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_poll( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_POLL_REPLY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_poll_reply, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_poll_reply( tvb, offset, si); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_POLL_FP_REPLY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_poll_fp_reply, tvb, offset, 0, ENC_NA ); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_poll_fp_reply( tvb, offset, si ); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_DIAG_DATA: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_diag_data, tvb, offset, 0, ENC_NA ); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_diag_data( tvb, offset, si ); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_COMMAND: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_command, tvb, offset, 0, ENC_NA ); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_command( tvb, offset, si ); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_OUTPUT: hi = proto_tree_add_item(artnet_tree, hf_artnet_output, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_output( tvb, offset, si, pinfo, tree); size -= offset; proto_item_set_len(si, size ); offset += size; break; case ARTNET_OP_ADDRESS: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_address, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_address( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_INPUT: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_input, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_input( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_TOD_REQUEST: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_tod_request, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_tod_request( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_TOD_DATA: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_tod_data, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_tod_data( tvb, offset, si ); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_TOD_CONTROL: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_tod_control, tvb, offset, 0, ENC_NA ); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_tod_control( tvb, offset, si ); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_RDM: hi = proto_tree_add_item(artnet_tree, hf_artnet_rdm, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_rdm(tvb, offset, si, pinfo, tree); size -= offset; proto_item_set_len( si, size ); offset += size; break; case ARTNET_OP_RDM_SUB: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_rdm_sub, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_rdm_sub( tvb, offset, si, pinfo ); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_MEDIA: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_media, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_media( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_MEDIA_PATCH: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_media_patch, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_media_patch( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_MEDIA_CONTROL: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_media_control, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_media_control( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_MEDIA_CONTRL_REPLY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_media_control_reply, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_media_control_reply( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_TIME_CODE: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_time_code, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_time_code( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_TIME_SYNC: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_time_sync, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_time_sync( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_TRIGGER: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_trigger, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_trigger( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_DIRECTORY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_directory, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_directory( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_DIRECTORY_REPLY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_directory_reply, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_directory_reply( tvb, offset, si); size -= offset; proto_item_set_len( si, size ); offset += size; } break; case ARTNET_OP_VIDEO_SETUP: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_input, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_video_setup( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_VIDEO_PALETTE: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_input, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_video_palette( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_VIDEO_DATA: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_input, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_video_data( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_MAC_MASTER: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_mac_master, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_mac_master( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_MAC_SLAVE: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_mac_slave, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_mac_slave( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_FIRMWARE_MASTER: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_firmware_master, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_firmware_master( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_FIRMWARE_REPLY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_firmware_reply, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet); size = dissect_artnet_firmware_reply( tvb, offset, si ); size -= offset; proto_item_set_len(si, size); offset += size; } break; case ARTNET_OP_FILE_TN_MASTER: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_file_tn_master, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_file_tn_master( tvb, offset, si); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_FILE_FN_MASTER: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_file_fn_master, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_file_fn_master( tvb, offset, si); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_FILE_FN_REPLY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_file_fn_reply, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_file_fn_reply( tvb, offset, si); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_IP_PROG: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_ip_prog, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_ip_prog( tvb,offset, si); size -= offset; proto_item_set_len(si, size ); offset += size; } break; case ARTNET_OP_IP_PROG_REPLY: if (tree) { hi = proto_tree_add_item(artnet_tree, hf_artnet_ip_prog_reply, tvb, offset, 0, ENC_NA); si = proto_item_add_subtree(hi, ett_artnet ); size = dissect_artnet_ip_prog_reply( tvb, offset, si ); size -= offset; proto_item_set_len(si, size ); offset += size; } break; default: if (tvb_reported_length_remaining(tvb, offset) > 0) { proto_tree_add_item(artnet_tree, hf_artnet_data, tvb, offset, -1, ENC_NA); } return tvb_captured_length(tvb); } if (tvb_reported_length_remaining(tvb, offset) > 0) { proto_tree_add_item(artnet_tree, hf_artnet_excess_bytes, tvb, offset, -1, ENC_NA); } return tvb_captured_length(tvb); } /* Heuristic dissector */ static gboolean dissect_artnet_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data) { guint64 qword; /* check if we atleast have the 8 byte header */ if (tvb_captured_length(tvb) < 8) return FALSE; /* Check the 8 byte header "Art-Net\0" = 0x4172742d4e657400*/ qword = tvb_get_ntoh64(tvb,0); if(qword != G_GUINT64_CONSTANT (0x4172742d4e657400)) return FALSE; /* if the header matches, dissect it */ dissect_artnet(tvb, pinfo, tree, data); return TRUE; } void proto_register_artnet(void) { static hf_register_info hf[] = { /* General */ { &hf_artnet_excess_bytes, { "Excess Bytes", "artnet.excess_bytes", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_data, { "Data", "artnet.data", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_filler, { "filler", "artnet.filler", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_spare, { "spare", "artnet.spare", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* header */ { &hf_artnet_header, { "Descriptor Header", "artnet.header", FT_NONE, BASE_NONE, NULL, 0, "Art-Net Descriptor Header", HFILL }}, { &hf_artnet_header_id, { "ID", "artnet.header.id", FT_STRING, BASE_NONE, NULL, 0x0, "ArtNET ID", HFILL }}, { &hf_artnet_header_opcode, { "OpCode", "artnet.header.opcode", FT_UINT16, BASE_HEX | BASE_EXT_STRING, &artnet_opcode_vals_ext, 0x0, "Art-Net message type", HFILL }}, { &hf_artnet_header_protver, { "ProtVer", "artnet.header.protver", FT_UINT16, BASE_DEC, NULL, 0x0, "Protocol revision number", HFILL }}, /* ArtPoll */ { &hf_artnet_poll, { "ArtPoll packet", "artnet.poll", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtPoll packet", HFILL }}, { &hf_artnet_poll_talktome, { "TalkToMe", "artnet.poll.talktome", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_talktome_reply_change, { "Send me ArtPollReply on change", "artnet.poll.talktome_reply_change", FT_BOOLEAN, 8, TFS(&tfs_enabled_disabled), 0x02, NULL, HFILL }}, { &hf_artnet_poll_talktome_diag, { "Send diagnostics messages", "artnet.poll.talktome_diag", FT_BOOLEAN, 8, TFS(&tfs_enabled_disabled), 0x04, NULL, HFILL }}, { &hf_artnet_poll_talktome_diag_unicast, { "Send diagnostics unicast", "artnet.poll.talktome_diag_unicast", FT_UINT8, BASE_HEX, VALS(artnet_talktome_diag_unicast_vals), 0x08, NULL, HFILL }}, { &hf_artnet_poll_talktome_vlc, { "VLC transmission", "artnet.poll.talktome_vlc", FT_BOOLEAN, 8, TFS(&tfs_disabled_enabled), 0x10, NULL, HFILL }}, { &hf_artnet_poll_talktome_targeted, { "Targeted mode", "artnet.poll.talktome_targeted", FT_BOOLEAN, 8, TFS(&tfs_enabled_disabled), 0x20, NULL, HFILL }}, { &hf_artnet_poll_diag_priority, { "Priority", "artnet.poll.diag_priority", FT_UINT8, BASE_DEC, VALS(artnet_talktome_diag_priority_vals), 0x0, "Minimum diagnostics message priority", HFILL }}, { &hf_artnet_poll_target_port_top, { "Target Port Top", "artnet.poll.target_port_top", FT_UINT16, BASE_DEC, NULL, 0x0, "Top of the port range", HFILL }}, { &hf_artnet_poll_target_port_bottom, { "Target Port Bottom", "artnet.poll.target_port_bottom", FT_UINT16, BASE_DEC, NULL, 0x0, "Bottom of the port range", HFILL }}, /* ArtPollReply */ { &hf_artnet_poll_reply, { "ArtPollReply packet", "artnet.poll_reply", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtPollReply packet", HFILL }}, { &hf_artnet_poll_reply_ip_address, { "IP Address", "artnet.poll_reply.ip_address", FT_IPv4, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_port_nr, { "Port number", "artnet.poll_reply.port_nr", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_versinfo, { "Version Info", "artnet.poll_reply.versinfo", FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_netswitch, { "NetSwitch", "artnet.poll_reply.netswitch", FT_UINT8, BASE_HEX, NULL, 0x0, "Bits 14-8 of port address", HFILL }}, { &hf_artnet_poll_reply_subswitch, { "SubSwitch", "artnet.poll_reply.subswitch", FT_UINT8, BASE_HEX, NULL, 0x0, "Bits 7-4 of port address", HFILL }}, { &hf_artnet_poll_reply_oem, { "Oem", "artnet.poll_reply.oem", FT_UINT16, BASE_HEX|BASE_EXT_STRING, &artnet_oem_code_vals_ext, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_ubea_version, { "UBEA Version", "artnet.poll_reply.ubea_version", FT_UINT8, BASE_DEC, NULL, 0x0, "UBEA version number", HFILL }}, { &hf_artnet_poll_reply_status, { "Status", "artnet.poll_reply.status", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_status_ubea_present, { "Ubea Present", "artnet.poll_reply.ubea_present", FT_BOOLEAN, 8, TFS(&tfs_present_absent), 0x01, NULL, HFILL }}, { &hf_artnet_poll_reply_status_rdm_supported, { "RDM Supported", "artnet.poll_reply.rdm_supported", FT_BOOLEAN, 8, TFS(&tfs_supported_not_supported), 0x02, NULL, HFILL }}, { &hf_artnet_poll_reply_status_rom_booted, { "ROM Booted", "artnet.poll_reply.rom_booted", FT_UINT8, BASE_HEX, NULL, 0x04, NULL, HFILL }}, { &hf_artnet_poll_reply_status_port_prog, { "Port Address Programming Authority", "artnet.poll_reply.port_prog", FT_UINT8, BASE_HEX, VALS(artnet_port_prog_auth_vals), 0x30, NULL, HFILL }}, { &hf_artnet_poll_reply_status_indicator, { "Indicator State", "artnet.poll_reply.indicator", FT_UINT8, BASE_HEX, VALS(artnet_indicator_state_vals), 0xC0, NULL, HFILL }}, { &hf_artnet_poll_reply_esta_man, { "ESTA Code", "artnet.poll_reply.esta_man", FT_UINT16, BASE_HEX|BASE_EXT_STRING, &artnet_esta_man_vals_ext, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_short_name, { "Short Name", "artnet.poll_reply.short_name", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_long_name, { "Long Name", "artnet.poll_reply.long_name", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_node_report, { "Node Report", "artnet.poll_reply.node_report", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_port_info, { "Port Info", "artnet.poll_reply.port_info", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_poll_reply_num_ports, { "Number of Ports", "artnet.poll_reply.num_ports", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_port_types, { "Port Types", "artnet.poll_reply.port_types", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_poll_reply_port_types_1, { "Type of Port 1", "artnet.poll_reply.port_types_1", FT_UINT8, BASE_HEX, VALS(artnet_port_type_vals), 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_port_types_2, { "Type of Port 2", "artnet.poll_reply.port_types_2", FT_UINT8, BASE_HEX, VALS(artnet_port_type_vals), 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_port_types_3, { "Type of Port 3", "artnet.poll_reply.port_types_3", FT_UINT8, BASE_HEX, VALS(artnet_port_type_vals), 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_port_types_4, { "Type of Port 4", "artnet.poll_reply.port_types_4", FT_UINT8, BASE_HEX, VALS(artnet_port_type_vals), 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input, { "Input Status", "artnet.poll_reply.good_input", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_1, { "Input status of Port 1", "artnet.poll_reply.good_input_1", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_recv_error, { "Receive errors detected", "artnet.poll_reply.good_input_recv_error", FT_UINT8, BASE_HEX, NULL, 0x04, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_disabled, { "Input is disabled", "artnet.poll_reply.good_input_disabled", FT_UINT8, BASE_HEX, NULL, 0x08, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_dmx_text, { "DMX text packets supported", "artnet.poll_reply.good_input_dmx_text", FT_UINT8, BASE_HEX, NULL, 0x010, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_dmx_sip, { "DMX SIPs supported", "artnet.poll_reply.good_input_dmx_sip", FT_UINT8, BASE_HEX, NULL, 0x20, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_dmx_test, { "DMX test packets supported", "artnet.poll_reply.good_input_dmx_text", FT_UINT8, BASE_HEX, NULL, 0x40, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_data, { "Data received", "artnet.poll_reply.good_input_data", FT_UINT8, BASE_HEX, NULL, 0x80, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_2, { "Input status of Port 2", "artnet.poll_reply.good_input_2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_3, { "Input status of Port 3", "artnet.poll_reply.good_input_3", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_input_4, { "Input status of Port 4", "artnet.poll_reply.good_input_4", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output, { "Output Status", "artnet.poll_reply.good_output", FT_NONE, BASE_NONE, NULL, 0, "Port output status", HFILL }}, { &hf_artnet_poll_reply_good_output_1, { "Output status of Port 1", "artnet.poll_reply.good_output_1", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_merge_ltp, { "Merge mode is LTP", "artnet.poll_reply.good_output_merge_ltp", FT_UINT8, BASE_HEX, NULL, 0x02, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_short, { "DMX output short circuit", "artnet.poll_reply.good_output_short", FT_UINT8, BASE_HEX, NULL, 0x04, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_merge_artnet, { "Merging Art-Net data", "artnet.poll_reply.good_output_merge_artnet", FT_UINT8, BASE_HEX, NULL, 0x08, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_dmx_text, { "DMX text packets supported", "artnet.poll_reply.good_output_dmx_text", FT_UINT8, BASE_HEX, NULL, 0x10, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_dmx_sip, { "DMX SIPs supported", "artnet.poll_reply.good_output_dmx_sip", FT_UINT8, BASE_HEX, NULL, 0x20, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_dmx_test, { "DMX test packets supported", "artnet.poll_reply.good_output_dmx_test", FT_UINT8, BASE_HEX, NULL, 0x40, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_data, { "Data transmitted", "artnet.poll_reply.good_output_data", FT_UINT8, BASE_HEX, NULL, 0x80, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_2, { "Output status of Port 2", "artnet.poll_reply.good_output_2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_3, { "Output status of Port 3", "artnet.poll_reply.good_output_3", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_good_output_4, { "Output status of Port 4", "artnet.poll_reply.good_output_4", FT_UINT8, BASE_HEX, NULL, 0x0, "Outpus status of Port 4", HFILL }}, { &hf_artnet_poll_reply_swin, { "Input Subswitch", "artnet.poll_reply.swin", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_poll_reply_swin_1, { "Input Subswitch of Port 1", "artnet.poll_reply.swin_1", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swin_2, { "Input Subswitch of Port 2", "artnet.poll_reply.swin_2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swin_3, { "Input Subswitch of Port 3", "artnet.poll_reply.swin_3", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swin_4, { "Input Subswitch of Port 4", "artnet.poll_reply.swin_4", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swin_1_universe, { "Universe of input port 1", "artnet.poll_reply.swin_1_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swin_2_universe, { "Universe of input port 2", "artnet.poll_reply.swin_2_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swin_3_universe, { "Universe of input port 3", "artnet.poll_reply.swin_3_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swin_4_universe, { "Universe of input port 4", "artnet.poll_reply.swin_4_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swout, { "Output Subswitch", "artnet.poll_reply.swout", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_poll_reply_swout_1, { "Output Subswitch of Port 1", "artnet.poll_reply.swout_1", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swout_2, { "Output Subswitch of Port 2", "artnet.poll_reply.swout_2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swout_3, { "Output Subswitch of Port 3", "artnet.poll_reply.swout_3", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swout_4, { "Output Subswitch of Port 4", "artnet.poll_reply.swout_4", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swout_1_universe, { "Universe of output port 1", "artnet.poll_reply.swout_1_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swout_2_universe, { "Universe of output port 2", "artnet.poll_reply.swout_2_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swout_3_universe, { "Universe of output port 3", "artnet.poll_reply.swout_3_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swout_4_universe, { "Universe of output port 4", "artnet.poll_reply.swout_4_universe", FT_UINT16, BASE_DEC,NULL, 0x0, NULL,HFILL }}, { &hf_artnet_poll_reply_swvideo, { "SwVideo", "artnet.poll_reply.swvideo", FT_UINT8, BASE_HEX, VALS(vals_artnet_poll_reply_swvideo), 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swmacro, { "SwMacro", "artnet.poll_reply.swmacro", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_swremote, { "SwRemote", "artnet.poll_reply.swremote", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_style, { "Style", "artnet.poll_reply.style", FT_UINT8, BASE_HEX, VALS(vals_artnet_poll_reply_style), 0x0, "Equipment style", HFILL }}, { &hf_artnet_poll_reply_mac, { "MAC", "artnet.poll_reply.mac", FT_ETHER, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_bind_ip_address, { "Bind IP Address", "artnet.poll_reply.bind_ip_address", FT_IPv4, BASE_NONE, NULL, 0x0, "IP address of root device", HFILL }}, { &hf_artnet_poll_reply_bind_index, { "Bind Index", "artnet.poll_reply.bind_index", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_status2, { "Status2", "artnet.poll_reply.status2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_poll_reply_status2_web_supported, { "Web configuration supported", "artnet.poll_reply.websupport", FT_BOOLEAN, 8, TFS(&tfs_supported_not_supported), 0x01, NULL, HFILL }}, { &hf_artnet_poll_reply_status2_dhcp_used, { "DHCP configuration used", "artnet.poll_reply.dhcpused", FT_BOOLEAN, 8, TFS(&tfs_used_notused), 0x02, NULL, HFILL }}, { &hf_artnet_poll_reply_status2_dhcp_supported, { "DHCP configuration supported", "artnet.poll_reply.dhcpsupport", FT_BOOLEAN, 8, TFS(&tfs_supported_not_supported), 0x04, NULL, HFILL }}, { &hf_artnet_poll_reply_status2_bigaddr_supported, { "Port-Address size", "artnet.poll_reply.addrsupport", FT_UINT8, BASE_HEX, VALS(artnet_poll_reply_status2_bigaddr_supported_vals), 0x08, NULL, HFILL }}, /* ArtOutput */ { &hf_artnet_output, { "ArtDMX packet", "artnet.output", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtDMX packet", HFILL }}, { &hf_artnet_output_sequence, { "Sequence", "artnet.output.sequence", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_output_physical, { "Physical", "artnet.output.physical", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_output_universe, { "Universe", "artnet.output.universe", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_output_length, { "Length", "artnet.output.length", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, /* ArtAddress */ { &hf_artnet_address, { "ArtAddress packet", "artnet.address", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtAddress packet", HFILL }}, { &hf_artnet_address_netswitch_special, { "NetSwitch", "artnet.address.netswitch_special", FT_UINT8, BASE_HEX, VALS(artnet_address_switch_vals), 0, NULL, HFILL }}, { &hf_artnet_address_netswitch_net, { "Net", "artnet.address.netswitch_net", FT_UINT8, BASE_DEC, NULL, 0x7F, NULL, HFILL }}, { &hf_artnet_address_netswitch_write, { "Write Net", "artnet.address.netswitch_write", FT_BOOLEAN, 8, NULL, 0x80, NULL, HFILL }}, { &hf_artnet_address_short_name, { "Short Name", "artnet.address.short_name", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_long_name, { "Long Name", "artnet.address.long_name", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swin, { "Input Subswitch", "artnet.address.swin", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_address_swin_1, { "Input Subswitch of Port 1", "artnet.address.swin_1", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swin_2, { "Input Subswitch of Port 2", "artnet.address.swin_2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swin_3, { "Input Subswitch of Port 3", "artnet.address.swin_3", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swin_4, { "Input Subswitch of Port 4", "artnet.address.swin_4", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swout, { "Output Subswitch", "artnet.address.swout", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_address_swout_1, { "Output Subswitch of Port 1", "artnet.address.swout_1", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swout_2, { "Output Subswitch of Port 2", "artnet.address.swout_2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swout_3, { "Output Subswitch of Port 3", "artnet.address.swout_3", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_swout_4, { "Output Subswitch of Port 4", "artnet.address.swout_4", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_subswitch_special, { "NetSwitch", "artnet.address.subswitch_special", FT_UINT8, BASE_HEX, VALS(artnet_address_switch_vals), 0, NULL, HFILL }}, { &hf_artnet_address_subswitch_sub, { "Sub-Net", "artnet.address.subswitch_sub", FT_UINT8, BASE_DEC, NULL, 0x0F, NULL, HFILL }}, { &hf_artnet_address_subswitch_write, { "Write Sub-Net", "artnet.address.subswitch_write", FT_BOOLEAN, 8, NULL, 0x80, NULL, HFILL }}, { &hf_artnet_address_swvideo, { "SwVideo", "artnet.address.swvideo", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_address_command, { "Command", "artnet.address.command", FT_UINT8, BASE_HEX, VALS(artnet_address_command_vals), 0x0, NULL, HFILL }}, /* ArtInput */ { &hf_artnet_input, { "ArtInput packet", "artnet.input", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtInput packet", HFILL }}, { &hf_artnet_input_num_ports, { "Number of Ports", "artnet.input.num_ports", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_input_input, { "Port Status", "artnet.input.input", FT_NONE, BASE_NONE, NULL, 0, NULL, HFILL }}, { &hf_artnet_input_input_1, { "Status of Port 1", "artnet.input.input_1", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_input_input_2, { "Status of Port 2", "artnet.input.input_2", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_input_input_3, { "Status of Port 3", "artnet.input.input_3", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_input_input_4, { "Status of Port 4", "artnet.input.input_4", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, /* ArtFirmwareMaster */ { &hf_artnet_firmware_master, { "ArtFirmwareMaster packet", "artnet.firmware_master", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtFirmwareMaster packet", HFILL }}, { &hf_artnet_firmware_master_type, { "Type", "artnet.firmware_master.type", FT_UINT8, BASE_HEX, VALS(artnet_firmware_master_type_vals), 0x0, "Number of Ports", HFILL }}, { &hf_artnet_firmware_master_block_id, { "Block ID", "artnet.firmware_master.block_id", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_firmware_master_length, { "Length", "artnet.firmware_master.length", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_firmware_master_data, { "data", "artnet.firmware_master.data", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtFirmwareReply */ { &hf_artnet_firmware_reply, { "ArtFirmwareReply packet", "artnet.firmware_reply", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtFirmwareReply packet", HFILL }}, { &hf_artnet_firmware_reply_type, { "Type", "artnet.firmware_reply.type", FT_UINT8, BASE_HEX, VALS(artnet_firmware_reply_type_vals), 0x0, "Number of Ports", HFILL }}, /* ArtVideoSetup */ { &hf_artnet_video_setup_control, { "control", "artnet.video_setup.control", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_setup_font_height, { "Font Height", "artnet.video_setup.font_height", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_setup_first_font, { "First Font", "artnet.video_setup.first_font", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_setup_last_font, { "Last Font", "artnet.video_setup.last_font", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_setup_win_font_name, { "Windows Font Name", "artnet.video_setup.win_font_name", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_setup_font_data, { "Font data", "artnet.video_setup.font_data", FT_BYTES, BASE_NONE, NULL, 0x0, "Font Date", HFILL }}, /* ArtVideoPalette */ { &hf_artnet_video_palette_colour_red, { "Colour Red", "artnet.video_palette.colour_red", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_palette_colour_green, { "Colour Green", "artnet.video_palette.colour_green", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_palette_colour_blue, { "Colour Blue", "artnet.video_palette.colour_blue", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtVideoData */ { &hf_artnet_video_data_pos_x, { "PosX", "artnet.video_data.pos_x", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_data_pos_y, { "PosY", "artnet.video_data.pos_y", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_data_len_x, { "LenX", "artnet.video_data.len_x", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_data_len_y, { "LenY", "artnet.video_data.len_y", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_video_data_data, { "Video Data", "artnet.video_data.data", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtTodRequest */ { &hf_artnet_tod_request, { "ArtTodRequest packet", "artnet.tod_request", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtTodRequest packet", HFILL }}, { &hf_artnet_tod_request_net, { "Net", "artnet.tod_request.net", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_request_command, { "Command", "artnet.tod_request.command", FT_UINT8, BASE_HEX, VALS(artnet_tod_request_command_vals), 0x0, NULL, HFILL }}, { &hf_artnet_tod_request_ad_count, { "Address Count", "artnet.tod_request.ad_count", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_request_address, { "Address", "artnet.tod_request.address", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtTodData */ { &hf_artnet_tod_data, { "ArtTodData packet", "artnet.tod_data", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtTodData packet", HFILL }}, { &hf_artnet_tod_data_port, { "Port", "artnet.tod_data.port", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_data_net, { "Net", "artnet.tod_data.net", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_data_command_response, { "Command Response", "artnet.tod_data.command_response", FT_UINT8, BASE_HEX, VALS(artnet_tod_data_command_vals), 0x0, NULL, HFILL }}, { &hf_artnet_tod_data_address, { "Address", "artnet.tod_data.address", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_data_uid_total, { "UID Total", "artnet.tod_data.uid_total", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_data_block_count, { "Block Count", "artnet.tod_data.block_count", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_data_uid_count, { "UID Count", "artnet.tod_data.uid_count", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_tod_data_tod, { "TOD", "artnet.tod_data.tod", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtTodControl */ { &hf_artnet_tod_control, { "ArtTodControl packet", "artnet.tod_control", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtTodControl packet", HFILL }}, { &hf_artnet_tod_control_net, { "Net", "artnet.tod_control.net", FT_UINT8, BASE_HEX, NULL, 0x0, "Top 7 bits of the port address", HFILL }}, { &hf_artnet_tod_control_command, { "Command", "artnet.tod_control.command", FT_UINT8, BASE_HEX, VALS(artnet_tod_control_command_vals), 0x0, NULL, HFILL }}, { &hf_artnet_tod_control_address, { "Address", "artnet.tod_control.address", FT_UINT8, BASE_HEX, NULL, 0x0, "Lower byte of the port address", HFILL }}, { &hf_artnet_tod_control_universe, { "Universe", "artnet.tod_control.universe", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, /* ArtRdm */ { &hf_artnet_rdm, { "ArtRdm packet", "artnet.rdm", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtRdm packet", HFILL }}, { &hf_artnet_rdm_command, { "Command", "artnet.rdm.command", FT_UINT8, BASE_HEX, VALS(artnet_rdm_command_vals), 0x0, NULL, HFILL }}, { &hf_artnet_rdm_address, { "Address", "artnet.rdm.address", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_rdm_sc, { "Startcode", "artnet.rdm.sc", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_rdm_rdmver, { "RDM Version", "artnet.rdm.rdmver", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_rdm_net, { "Address High", "artnet.rdm.net", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, /* ArtRdmSub */ { &hf_artnet_rdm_sub, { "ArtRdmSub packet", "artnet.rdm_sub", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtRdmSub packet", HFILL }}, { &hf_artnet_rdm_sub_uid, { "UID", "artnet.rdm_sub.uid", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_rdm_sub_command_class, { "Command Class", "artnet.rdm_sub.command_class", FT_UINT8, BASE_HEX, VALS(artnet_cc_vals), 0x0, NULL, HFILL }}, { &hf_artnet_rdm_sub_pid, { "Parameter ID", "artnet.rdm_sub.param_id", FT_UINT16, BASE_HEX | BASE_EXT_STRING, &rdm_param_id_vals_ext, 0x0, NULL, HFILL }}, { &hf_artnet_rdm_sub_sub_device, { "Sub Device", "artnet.rdm_sub.sub_device", FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_rdm_sub_sub_count, { "Sub Count", "artnet.rdm_sub.sub_count", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_rdm_sub_data, { "Data", "artnet.rdm_sub.data", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtIpProg */ { &hf_artnet_ip_prog, { "ArtIpProg packet", "artnet.ip_prog", FT_NONE, BASE_NONE, NULL, 0, "ArtNET ArtIpProg packet", HFILL }}, { &hf_artnet_ip_prog_command, { "Command", "artnet.ip_prog.command", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_ip_prog_command_prog_port, { "Program Port", "artnet.ip_prog.command_prog_port", FT_BOOLEAN, 8, NULL, 0x01, NULL, HFILL }}, { &hf_artnet_ip_prog_command_prog_sm, { "Program Subnet Mask", "artnet.ip_prog.command_prog_sm", FT_BOOLEAN, 8, NULL, 0x02, NULL, HFILL }}, { &hf_artnet_ip_prog_command_prog_ip, { "Program IP", "artnet.ip_prog.command_prog_ip", FT_BOOLEAN, 8, NULL, 0x04, NULL, HFILL }}, { &hf_artnet_ip_prog_command_reset, { "Reset Parameters", "artnet.ip_prog.command_reset", FT_BOOLEAN, 8, NULL, 0x08, NULL, HFILL }}, { &hf_artnet_ip_prog_command_unused, { "Unused", "artnet.ip_prog.command_unused", FT_UINT8, BASE_HEX, NULL, 0x30, NULL, HFILL }}, { &hf_artnet_ip_prog_command_dhcp_enable, { "Enable DHCP", "artnet.ip_prog.command_dhcp_enable", FT_BOOLEAN, 8, NULL, 0x40, NULL, HFILL }}, { &hf_artnet_ip_prog_command_prog_enable, { "Enable Programming", "artnet.ip_prog.command_prog_enable", FT_BOOLEAN, 8, NULL, 0x80, NULL, HFILL }}, { &hf_artnet_ip_prog_ip, { "IP Address", "artnet.ip_prog.ip", FT_IPv4, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_ip_prog_sm, { "Subnet Mask", "artnet.ip_prog.sm", FT_IPv4, BASE_NONE, NULL, 0x0, "IP Subnet mask", HFILL }}, { &hf_artnet_ip_prog_port, { "Port", "artnet.ip_prog.port", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, /* ArtIpProgReply */ { &hf_artnet_ip_prog_reply, { "ArtIpProgReply packet", "artnet.ip_prog_reply", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtIpProgReply packet", HFILL }}, { &hf_artnet_ip_prog_reply_ip, { "IP Address", "artnet.ip_prog_reply.ip", FT_IPv4, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_ip_prog_reply_sm, { "Subnet mask", "artnet.ip_prog_reply.sm", FT_IPv4, BASE_NONE, NULL, 0x0, "IP Subnet mask", HFILL }}, { &hf_artnet_ip_prog_reply_port, { "Port", "artnet.ip_prog_reply.port", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_ip_prog_reply_status, { "Status", "artnet.ip_prog_reply.status", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_ip_prog_reply_status_unused, { "Unused", "artnet.ip_prog_reply.unused", FT_UINT8, BASE_HEX, NULL, 0xbf, NULL, HFILL }}, { &hf_artnet_ip_prog_reply_status_dhcp_enable, { "DHCP Enabled", "artnet.ip_prog_reply.status_dhcp_enable", FT_BOOLEAN, 8, NULL, 0x40, NULL, HFILL }}, /* ArtPollServerReply */ { &hf_artnet_poll_fp_reply, { "ArtPollFpReply packet", "artnet.poll_fp_reply", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtPollFpReply packet", HFILL }}, /* ArtDiagData */ { &hf_artnet_diag_data, { "ArtDiagData packet", "artnet.diag_data", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtDiagData packet", HFILL }}, { &hf_artnet_diag_data_priority, { "Priority", "artnet.diag_data.priority", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_diag_data_index, { "Index", "artnet.diag_data.index", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_diag_data_length, { "Length", "artnet.diag_data.length", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_diag_data_data, { "Data", "artnet.diag_data.data", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtCommand */ { &hf_artnet_command, { "ArtCommand packet", "artnet.command", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtCommand packet", HFILL }}, /* ArtMedia */ { &hf_artnet_media, { "ArtMedia packet", "artnet.media", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtMedia packet", HFILL }}, /* ArtMediaPatch */ { &hf_artnet_media_patch, { "ArtMediaPatch packet", "artnet.media_patch", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtMediaPatch packet", HFILL }}, /* ArtMediaControl */ { &hf_artnet_media_control, { "ArtMediaControl packet", "artnet.media_control", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtMediaControl packet", HFILL }}, /* ArtMediaControlReply */ { &hf_artnet_media_control_reply, { "ArtMediaControlReply packet", "artnet.media_control_reply", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtMediaControlReply packet", HFILL }}, /* ArtTimeCode */ { &hf_artnet_time_code, { "ArtTimeCode packet", "artnet.time_code", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtTimeCode packet", HFILL }}, /* ArtTimeSync */ { &hf_artnet_time_sync, { "ArtTimeSync packet", "artnet.time_sync", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtTimeSync packet", HFILL }}, /* ArtTrigger */ { &hf_artnet_trigger, { "ArtTrigger packet", "artnet.trigger", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtTrigger packet", HFILL }}, { &hf_artnet_trigger_oemcode, { "OEM Code", "artnet.trigger.oemcode", FT_UINT16, BASE_HEX, 0, 0x0, NULL, HFILL }}, { &hf_artnet_trigger_key, { "Key", "artnet.trigger.key", FT_UINT8, BASE_HEX_DEC, 0, 0x0, NULL, HFILL }}, { &hf_artnet_trigger_subkey, { "SubKey", "artnet.trigger.subkey", FT_UINT8, BASE_HEX_DEC, 0, 0x0, NULL, HFILL }}, { &hf_artnet_trigger_data, { "Data", "artnet.trigger.data", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtDirectory */ { &hf_artnet_directory, { "ArtDirectory packet", "artnet.directory", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtDirectory packet", HFILL }}, { &hf_artnet_directory_filler, { "Filler", "artnet.directory.filler", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_cmd, { "Command", "artnet.directory.cmd", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_file, { "File Nr.", "artnet.directory.file", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }}, /* ArtDirectoryReply */ { &hf_artnet_directory_reply, { "ArtDirectoryReply packet", "artnet.directory_reply", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtDirectoryReply packet", HFILL }}, { &hf_artnet_directory_reply_filler, { "Filler", "artnet.directory_reply.filler", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_reply_flags, { "Flags", "artnet.directory_reply.flags", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_reply_file, { "File", "artnet.directory_reply.file", FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_reply_name, { "Name", "artnet.directory_reply.name", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_reply_desc, { "Description", "artnet.directory_reply.desc", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_reply_length, { "Length", "artnet.directory_reply.length", FT_UINT64, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_directory_reply_data, { "Data", "artnet.directory_reply.data", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtMacMaster */ { &hf_artnet_mac_master, { "ArtMacMaster packet", "artnet.mac_master", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtMacMaster packet", HFILL }}, /* ArtMacSlave */ { &hf_artnet_mac_slave, { "ArtMacSlave packet", "artnet.mac_slave", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtMacSlave packet", HFILL }}, /* ArtFileTnMaster */ { &hf_artnet_file_tn_master, { "ArtFileTnMaster packet", "artnet.file_tn_master", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtFileTnMaster packet", HFILL }}, { &hf_artnet_file_tn_master_filler, { "Filler", "artnet.file_tn_master.filler", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_file_tn_master_type, { "Type", "artnet.file_tn_master.type", FT_UINT8, BASE_HEX, VALS(artnet_file_type_vals), 0x0, NULL, HFILL }}, { &hf_artnet_file_tn_master_block_id, { "Block ID", "artnet.file_tn_master.block_id", FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_file_tn_master_length, { "Length", "artnet.file_tn_master.length", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_file_tn_master_name, { "Name", "artnet.file_tn_master.name", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_file_tn_master_checksum, { "Checksum", "artnet.file_tn_master.checksum", FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_file_tn_master_spare, { "Spare", "artnet.file_tn_master.spare", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, { &hf_artnet_file_tn_master_data, { "Data", "artnet.file_tn_master.data", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }}, /* ArtFileFnMaster */ { &hf_artnet_file_fn_master, { "ArtFileFnMaster packet", "artnet.file_fn_master", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtFileFnMaster packet", HFILL }}, /* ArtFileFnReply */ { &hf_artnet_file_fn_reply, { "ArtFileFnReply packet", "artnet.file_fn_reply", FT_NONE, BASE_NONE, NULL, 0, "Art-Net ArtFileFnReply packet", HFILL }} }; static gint *ett[] = { &ett_artnet, &ett_artnet_poll_talktome, &ett_artnet_poll_reply_status, &ett_artnet_poll_reply_good_input_1, &ett_artnet_poll_reply_good_input_2, &ett_artnet_poll_reply_good_input_3, &ett_artnet_poll_reply_good_input_4, &ett_artnet_poll_reply_good_output_1, &ett_artnet_poll_reply_good_output_2, &ett_artnet_poll_reply_good_output_3, &ett_artnet_poll_reply_good_output_4, &ett_artnet_poll_reply_status2, &ett_artnet_ip_prog_command, &ett_artnet_ip_prog_reply_status, &ett_artnet_address_netswitch, &ett_artnet_address_subswitch }; proto_artnet = proto_register_protocol("Art-Net", "ARTNET", "artnet"); proto_register_field_array(proto_artnet, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); } void proto_reg_handoff_artnet(void) { dissector_handle_t artnet_handle; artnet_handle = create_dissector_handle(dissect_artnet, proto_artnet); dissector_add_for_decode_as_with_preference("udp.port", artnet_handle); rdm_handle = find_dissector_add_dependency("rdm", proto_artnet); dmx_chan_handle = find_dissector_add_dependency("dmx-chan", proto_artnet); heur_dissector_add("udp", dissect_artnet_heur, "ARTNET over UDP", "artnet_udp", proto_artnet, HEURISTIC_ENABLE); } /* * Editor modelines * * Local Variables: * c-basic-offset: 2 * tab-width: 8 * indent-tabs-mode: nil * End: * * ex: set shiftwidth=2 tabstop=8 expandtab: * :indentSize=2:tabSize=8:noTabs=true: */