Skip to content

updated link to logo #1818

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 15, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1020,15 +1020,15 @@ int readSerial(char result[]) {

### MKR GSM SSL Web Client

This sketch connects an Arduino MKR GSM 1400 board to the Arduino homepage, [http://arduino.cc](http://arduino.cc), through the GSM network. It then prints the content of the page through the serial monitor of the Arduino Software (IDE).
This sketch connects an Arduino MKR GSM 1400 board to the Arduino homepage, through the GSM network. It then prints the content of the page through the serial monitor of the Arduino Software (IDE).

```arduino
/*
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.

Expand Down Expand Up @@ -1070,8 +1070,8 @@ GPRS gprs;

GSM gsmAccess;

// URL, path and port (for example: arduino.cc)
char server[] = "arduino.cc";
// URL, path and port (for example: arduino.tips)
char server[] = "arduino.tips";
char path[] = "/asciilogo.txt";
int port = 443; // port 443 is the default for HTTPS

Expand Down Expand Up @@ -1184,7 +1184,7 @@ void loop() {

### MKR GSM Web Client

This sketch connects an Arduino MKR GSM 1400 board to the Arduino homepage, [http://arduino.cc](http://arduino.cc), through the GSM network. It then prints the content of the page through the serial monitor of the Arduino Software (IDE).
This sketch connects an Arduino MKR GSM 1400 board to the Arduino homepage, through the GSM network. It then prints the content of the page through the serial monitor of the Arduino Software (IDE).

```arduino
/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ NB and CATM1 connectivity access can be restricted to some endpoints for securit

This sketch connects to a website using SSL through a MKR NB 1500 board. Specifically,

this example downloads the URL "https://www.arduino.cc/asciilogo.txt" and
this example downloads the URL "http://arduino.tips/asciilogo.txt" and

prints it to the Serial monitor.

Expand Down Expand Up @@ -323,7 +323,7 @@ GPRS gprs;
NB nbAccess;

// 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 Expand Up @@ -436,7 +436,7 @@ void loop() {

### MKR NB NB Web Client

This sketch connects an Arduino MKR NB 1500 board to the Arduino homepage, [http://arduino.cc](http://arduino.cc), through the NB network. It then prints the content of the page through the serial monitor of the Arduino Software (IDE).
This sketch connects an Arduino MKR NB 1500 board to the Arduino homepage, through the NB network. It then prints the content of the page through the serial monitor of the Arduino Software (IDE).

```arduino

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void loop() {

HttpClient client;

client.get("http://www.arduino.cc/asciilogo.txt");
client.get("http://arduino.tips/asciilogo.txt");
```

As long as there are bytes from the server in the client buffer, read the bytes and print them to the serial monitor. Repeat every 5 seconds.
Expand Down Expand Up @@ -138,7 +138,7 @@ void loop() {

// Make a HTTP request:

client.get("http://www.arduino.cc/asciilogo.txt");
client.get("http://arduino.tips/asciilogo.txt");

// if there are incoming bytes available

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ void runCurl() {

p.begin("curl"); // Process that launch the "curl" command

p.addParameter("http://www.arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
p.addParameter("http://arduino.tips/asciilogo.txt"); // Add the URL parameter to "curl"

p.run(); // Run the process and wait for its termination

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ The complete sketch is below.

This sketch connects to a website through a GSM shield. 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.

Expand Down Expand Up @@ -222,7 +222,7 @@ GPRS gprs;
GSM gsmAccess;

// URL, path & port (for example: arduino.cc)
char server[] = "arduino.cc";
char server[] = "arduino.tips";
char path[] = "/asciilogo.txt";
int port = 80; // port 80 is the default for HTTP

Expand Down
Loading
Loading