diff --git a/examples/WebClient/WebClient.ino b/examples/WebClient/WebClient.ino index 7e8c802..c5b8e85 100644 --- a/examples/WebClient/WebClient.ino +++ b/examples/WebClient/WebClient.ino @@ -19,7 +19,7 @@ char ssid[] = "Twim"; // your network SSID (name) char pass[] = "12345678"; // your network password int status = WL_IDLE_STATUS; // the Wifi radio's status -char server[] = "arduino.cc"; +char server[] = "arduino.tips"; // Initialize the Ethernet client object WiFiEspClient client; @@ -60,7 +60,7 @@ void setup() Serial.println("Connected to server"); // Make a HTTP request client.println("GET /asciilogo.txt HTTP/1.1"); - client.println("Host: arduino.cc"); + client.println("Host: arduino.tips"); client.println("Connection: close"); client.println(); }