diff --git a/PingTest/PingTest.ino b/PingTest/PingTest.ino index 482c938..e65114f 100644 --- a/PingTest/PingTest.ino +++ b/PingTest/PingTest.ino @@ -10,13 +10,13 @@ #include "ping.h" // the setup function runs once when you press reset or power the board -const char ssid[] = "TP-LINK_C20B"; // your network SSID (name) -const char password[] = "paolo-48"; // your network password +const char ssid[] = "your SSID"; // your network SSID (name) +const char password[] = "your Password"; // your network password void setup() { Serial.begin(115200); - Serial.print("Connecting t "); + Serial.print("Connecting to "); Serial.println(ssid); // WiFi.mode(WIFI_STA); @@ -71,4 +71,4 @@ int readnu(char s) { } Serial.println(digit); return digit; -} \ No newline at end of file +}