File tree 1 file changed +2
-2
lines changed
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:
106
106
WiFiUDP Udp;
107
107
unsigned int localUdpPort = 4210; // local port to listen on
108
108
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
110
110
111
111
112
112
void setup()
@@ -144,7 +144,7 @@ The sketch performing all described functionality is presented below:
144
144
145
145
// send back a reply, to the IP address and port we got the packet from
146
146
Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
147
- Udp.write(replyPacekt );
147
+ Udp.write(replyPacket );
148
148
Udp.endPacket();
149
149
}
150
150
}
You can’t perform that action at this time.
0 commit comments