I need to send HEX commands to an eDidio DMX controller.
The eDidio DMX controller uses TLS.
Can I do this with a TCP or UDP client in SIMPL Windows?
I've already tried both, using ports 443 as well as 23, tried \0D delimiter, etc. but no success.
I see a TCP Connected FB when using port 443.
The eDidio DMX controller responds without issue from its own "Configurator" PC software (sending the raw string(s) as well as its own Spektra app, so I know strings/commands/DMX controller all working.
An example string which starts "Sequence 2" (I've tried all the variations):
Native:
cd,00,0e,aa,01,0b,0a,09,08,0c,10,ff,01,18,01,20,01
Other variations:
\xCD\x00\x0e\xaa\x01\x0b\x0A\x09\x08\x0C\x10\xff\x01\x18\x01\x20\x01
\xCD\x00\x0e\xaa\x01\x0b\x0A\x09\x08\x0C\x10\xff\x01\x18\x01\x20\x01\x0D
0xcd,0x00,0x0e,0xaa,0x01,0x0b,0x0a,0x09,0x08,0x0c,0x10,0xff,0x01,0x18,0x01,0x20,0x01
0xcd,0x00,0x0e,0xaa,0x01,0x0b,0x0a,0x09,0x08,0x0c,0x10,0xff,0x01,0x18,0x01,0x20,0x01,0x0D
Any help appreciated.