Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PingTest/PingTest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -71,4 +71,4 @@ int readnu(char s) {
}
Serial.println(digit);
return digit;
}
}