I just had the same problem on Barco HDX series So I share the info I search during hours. It more complex cause you have to send the correct structure.
Start byte (1 byte->FE) - Device address (1 byte->00 for ethernet communication) - request(data of the command)(x byte) - checksum (1 byte to calculate -> address + resquest modulo 0x100) - stop Byte(1 byte -> FF)
Comments
Hello,
I just had the same problem on Barco HDX series So I share the info I search during hours. It more complex cause you have to send the correct structure.
Start byte (1 byte->FE) - Device address (1 byte->00 for ethernet communication) - request(data of the command)(x byte) - checksum (1 byte to calculate -> address + resquest modulo 0x100) - stop Byte(1 byte -> FF)
thus
set the device in TCP mode at 43680 port
Shuter Open
0xfe 0x00 0x22 0x42 0x00 0x64 0xff
-> so the string to send is
[HEX_FE][HEX_00][HEX_22][HEX_42][HEX_00][HEX_64][HEX_FF]
Shuter Close
[HEX_FE][HEX_00][HEX_23][HEX_42][HEX_00][HEX_65][HEX_FF]
Lamp On
[HEX_FE][HEX_00][HEX_00][HEX_03][HEX_02][HEX_76][HEX_1A][HEX_01][HEX_96][HEX_FF]
Lamp Off
[HEX_FE][HEX_00][HEX_00][HEX_03][HEX_02][HEX_76][HEX_1A][HEX_00][HEX_95][HEX_FF]
@Millumin
You should update the "template command" in millumin cause "[HEX_00][HEX_22][HEX_42]" couldn't works without structure.
Hello @john,
Thank you. I created a section in our help center here, to gather such commands. We will do our best to add some.
By the way, to switch on the lamp :
[HEX_FE][HEX_00][HEX_76][HEX_1A][HEX_01][HEX_91][HEX_FF]
should be sufficient, right ?Best. Philippe