Hello,
I am trying to send visca commands over udp.
To send a command to camera 1 you have to send byte (0x81).
Unfortunately udp.send sends the value 63!
I discovered this by sending from processing 3 on windows and I am receiving with processing on a raspberry pi with processing 3
byte[] mist = {byte(80),byte(0x81), byte(0x82), byte(0x83), byte(0x84), byte(0x85), byte(0xFF)};
String massage=new String(mist);
udp.send(massage, ip, port);
results on the receiver side to
-128, 63, -126,-125 etc…
In whatever way I am building the bytes, the result is always the same -127 results on the receiver side to 63.
Is there anywhere a guru who can tell me where i can patch the library?
Thanks a lot.
Horst