From a07d908be2a1884567545c7a1cb8e2a744b46a5e Mon Sep 17 00:00:00 2001 From: Brandon Harville Date: Sun, 30 Dec 2018 11:22:06 -0500 Subject: [PATCH] typo's --- PingTest/PingTest.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 +}