From dd827171d97a62b1a27f8e15ec6d2bbafdf9bf51 Mon Sep 17 00:00:00 2001 From: Stefano Visconti Date: Wed, 23 Feb 2022 20:09:48 +0100 Subject: [PATCH 1/3] Moving asciilogo.txt to a different domain --- examples/GsmSSLWebClient/GsmSSLWebClient.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/GsmSSLWebClient/GsmSSLWebClient.ino b/examples/GsmSSLWebClient/GsmSSLWebClient.ino index 6e57c75..6b9beaf 100644 --- a/examples/GsmSSLWebClient/GsmSSLWebClient.ino +++ b/examples/GsmSSLWebClient/GsmSSLWebClient.ino @@ -32,7 +32,7 @@ GPRS gprs; GSM gsmAccess; // URL, path and port (for example: arduino.cc) -char server[] = "arduino.cc"; +char server[] = "arduino.tips"; char path[] = "/asciilogo.txt"; int port = 443; // port 443 is the default for HTTPS From e9e22531fd4bc48e6147d98d28851cecca4c9977 Mon Sep 17 00:00:00 2001 From: Stefano Visconti Date: Wed, 23 Feb 2022 20:49:31 +0100 Subject: [PATCH 2/3] Update GsmSSLWebClient.ino --- examples/GsmSSLWebClient/GsmSSLWebClient.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/GsmSSLWebClient/GsmSSLWebClient.ino b/examples/GsmSSLWebClient/GsmSSLWebClient.ino index 6b9beaf..17ae8bf 100644 --- a/examples/GsmSSLWebClient/GsmSSLWebClient.ino +++ b/examples/GsmSSLWebClient/GsmSSLWebClient.ino @@ -2,7 +2,7 @@ Web client This sketch connects to a website using SSL through a MKR GSM 1400 board. Specifically, - this example downloads the URL "http://www.arduino.cc/asciilogo.txt" and + this example downloads the URL "http://arduino.tips/asciilogo.txt" and prints it to the Serial Monitor. Circuit: From c5f00d3c52e1879bb5d1989ee248b0f219059346 Mon Sep 17 00:00:00 2001 From: Stefano Visconti Date: Wed, 23 Feb 2022 20:50:35 +0100 Subject: [PATCH 3/3] Update FileUtilsHttpDownload.ino --- examples/Tools/FileUtilsHttpDownload/FileUtilsHttpDownload.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Tools/FileUtilsHttpDownload/FileUtilsHttpDownload.ino b/examples/Tools/FileUtilsHttpDownload/FileUtilsHttpDownload.ino index baecb93..2d258d6 100644 --- a/examples/Tools/FileUtilsHttpDownload/FileUtilsHttpDownload.ino +++ b/examples/Tools/FileUtilsHttpDownload/FileUtilsHttpDownload.ino @@ -61,7 +61,7 @@ void setup() printFiles(fileUtils); - auto server = promptAndReadLine("Please, enter server name:", "arduino.cc"); + auto server = promptAndReadLine("Please, enter server name:", "arduino.tips"); auto port = promptAndReadInt("Please, enter server port:", 80); auto filename = promptAndReadLine("Please, enter file name:", "asciilogo.txt"); auto filesize = promptAndReadInt("Please, enter file size:", 2263);