receive data from udp
in
Contributed Library Questions
•
1 year ago
How could I receive Upd data without the loop ? I want to remove that loop
- void receive(byte[] data, String HOST_IP, int PORT_RX) {
- receivedFromUDP ="";
- for (int i = 0; i < data.length; i++) {
- receivedFromUDP += str(data[i]) + " ";
- println(receivedFromUDP);
- }
1