From 4a18fddf46cc29aedb6d9dfe4ccbbe439cc64983 Mon Sep 17 00:00:00 2001 From: ms-afk <58094448+ms-afk@users.noreply.github.com> Date: Thu, 23 Feb 2023 13:48:50 +0100 Subject: [PATCH] Changed url to support http The old url now redirects to the https version of the page, resulting on this example not showing the logo. The old url suggests to use this new link if a http compatible version of this logo is needed, as it is in this case. --- examples/WebClient/WebClient.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }