File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ The sketch performing all described functionality is presented below:
106106 WiFiUDP Udp;
107107 unsigned int localUdpPort = 4210; // local port to listen on
108108 char incomingPacket[255]; // buffer for incoming packets
109- char replyPacekt [] = "Hi there! Got the message :-)"; // a reply string to send back
109+ char replyPacket [] = "Hi there! Got the message :-)"; // a reply string to send back
110110
111111
112112 void setup()
@@ -144,7 +144,7 @@ The sketch performing all described functionality is presented below:
144144
145145 // send back a reply, to the IP address and port we got the packet from
146146 Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
147- Udp.write(replyPacekt );
147+ Udp.write(replyPacket );
148148 Udp.endPacket();
149149 }
150150 }
You can’t perform that action at this time.
0 commit comments