You don't need to put hex anywhere. Script generates valid ArtNet data packet and sends it to port 6454 (0x1936). You need to set correct IP, universe number and provide array of values. There's also an example with direct mapping to objects.
22.08.2018, 09:20 (This post was last modified: 22.08.2018, 09:21 by Jayce.)
I wanted to test this, but since the LED matrix wall isn't physically installed yet, I tried downloading software called "The ArtNetominator" which can recieve ArtNET packets. Then I modified the script accordingly:
Code:
ip = '192.168.1.43' --DHCP ip address of my PC
universe = 0x0E --14 as you said
data = '255' --don't know what to put here
artnet_dmx(ip, 0, 0, universe, { data })
After that I tried running the script which sent a packet that I successfully got in the software (screenshot 1).
The technician that will be installing the LED matrix sent me mail with an IP, default port (6454) and HEX. He said that I need to somehow send packet that contains HEX which I sent above. Do you have any idea how to make it work?