You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thanks for this code.
I found that there is an issue at the very end of it. you need to correct: udp.beginPacket(remoteIp, port); // remote IP and port
to udp.beginPacket(remoteIp, udp.remotePort()); // remote IP and port
otherwise connection is not established with the remote party
(the need of the temp variable remoteIP is questionable since you can access it via udp.remoteIP())
The text was updated successfully, but these errors were encountered:
First, thanks for this code.
I found that there is an issue at the very end of it. you need to correct:
udp.beginPacket(remoteIp, port); // remote IP and port
to
udp.beginPacket(remoteIp, udp.remotePort()); // remote IP and port
otherwise connection is not established with the remote party
(the need of the temp variable
remoteIP
is questionable since you can access it viaudp.remoteIP()
)The text was updated successfully, but these errors were encountered: