Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions examples/GsmSSLWebClient/GsmSSLWebClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down