Reference Language | Libraries | Comparison | Changes
WiFi : WiFiUDP.beginPacket()
Starts a connection to write UDP data to the remote connection
WiFiUDP.beginPacket(hostName, port);
WiFiUDP.beginPacket(hostIp, port);
hostName: the address of the remote host. It accepts a character string or an IPAddress
hostIp: the IP address of the remote connection (4 bytes)
port: the port of the remote connection (int)
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.