07-10-2023 03:04 PM - edited 07-10-2023 03:07 PM
Basically your LabVIEW code simply misses an UDP Write, sending the string “Red” to the server at address 128.104.49.231 and port 5006 to be equivalent to the Python code. You simply missed the sendto() call in your Python example when trying to recreate the same in LabVIEW.
From the Arduino server code it doesn’t even matter what you really send, as long as you send at least one byte.
07-10-2023 05:34 PM
That worked! thank you so much everyone for the help.