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:
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?
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?