Bug: String UDP adding bytes

Hello everyone. I am not sure wether this is a bug or a feature. When sending a UDP String with Pandoras Box, only 15 bytes are beeing sent. When sending from Eos, another additional two bytes are added which results in StreamDeck not recognizing the String.

ETC EOS adding 0D 0A to the data, which will not be recognized by the StreamDeck

Pandoras Box Widget Designer sending without additional bytes, which will be correctly.

Is there a way to change this sending behaviour?

Thanks in advance!

Parents Reply
  • Looks like I'm a few weeks late to this thread, but if you are still looking for a way to disable the carriage return when sending a UDP string, you might try adding "\x00" (without the quotes) to the end of the UDP string that you are sending.  For example, if you wanted to send the following string:

    "Greetings from the Eos Console"

    Try sending this instead:

    "Greetings from the Eos Console \x00"  

    Also, make sure there is a space between "Console" and "\x00"

    Hope this helps a bit.

    Cheers!

    Jonathan

Children
Related