Skip to content

Commit 77be1cb

Browse files
authored
Merge pull request #1818 from arduino/jhansson-ard/ascii
updated link to logo
2 parents b286aca + 266935d commit 77be1cb

File tree

6 files changed

+396
-396
lines changed

6 files changed

+396
-396
lines changed

content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/mkr-gsm-library-examples/mkr-gsm-library-examples.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1020,15 +1020,15 @@ int readSerial(char result[]) {
10201020

10211021
### MKR GSM SSL Web Client
10221022

1023-
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).
1023+
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).
10241024

10251025
```arduino
10261026
/*
10271027
Web client
10281028
10291029
This sketch connects to a website using SSL through a MKR GSM 1400 board. Specifically,
10301030
1031-
this example downloads the URL "http://www.arduino.cc/asciilogo.txt" and
1031+
this example downloads the URL "http://arduino.tips/asciilogo.txt" and
10321032
10331033
prints it to the Serial monitor.
10341034
@@ -1070,8 +1070,8 @@ GPRS gprs;
10701070
10711071
GSM gsmAccess;
10721072
1073-
// URL, path and port (for example: arduino.cc)
1074-
char server[] = "arduino.cc";
1073+
// URL, path and port (for example: arduino.tips)
1074+
char server[] = "arduino.tips";
10751075
char path[] = "/asciilogo.txt";
10761076
int port = 443; // port 443 is the default for HTTPS
10771077
@@ -1184,7 +1184,7 @@ void loop() {
11841184

11851185
### MKR GSM Web Client
11861186

1187-
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).
1187+
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).
11881188

11891189
```arduino
11901190
/*

content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/mkr-nb-library-examples/mkr-nb-library-examples.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ NB and CATM1 connectivity access can be restricted to some endpoints for securit
287287
288288
This sketch connects to a website using SSL through a MKR NB 1500 board. Specifically,
289289
290-
this example downloads the URL "https://www.arduino.cc/asciilogo.txt" and
290+
this example downloads the URL "http://arduino.tips/asciilogo.txt" and
291291
292292
prints it to the Serial monitor.
293293
@@ -323,7 +323,7 @@ GPRS gprs;
323323
NB nbAccess;
324324
325325
// URL, path and port (for example: arduino.cc)
326-
char server[] = "arduino.cc";
326+
char server[] = "arduino.tips";
327327
char path[] = "/asciilogo.txt";
328328
int port = 443; // port 443 is the default for HTTPS
329329
@@ -436,7 +436,7 @@ void loop() {
436436

437437
### MKR NB NB Web Client
438438

439-
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).
439+
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).
440440

441441
```arduino
442442

content/hardware/02.hero/boards/yun-rev2/tutorials/http-client-console/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void loop() {
5757
5858
HttpClient client;
5959
60-
client.get("http://www.arduino.cc/asciilogo.txt");
60+
client.get("http://arduino.tips/asciilogo.txt");
6161
```
6262

6363
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.
@@ -138,7 +138,7 @@ void loop() {
138138
139139
// Make a HTTP request:
140140
141-
client.get("http://www.arduino.cc/asciilogo.txt");
141+
client.get("http://arduino.tips/asciilogo.txt");
142142
143143
// if there are incoming bytes available
144144

content/hardware/02.hero/boards/yun-rev2/tutorials/process/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ void runCurl() {
168168
169169
p.begin("curl"); // Process that launch the "curl" command
170170
171-
p.addParameter("http://www.arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
171+
p.addParameter("http://arduino.tips/asciilogo.txt"); // Add the URL parameter to "curl"
172172
173173
p.run(); // Run the process and wait for its termination
174174

content/retired/07.library-examples/gsm-library/GSMExamplesWebClient/GSMExamplesWebClient.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ The complete sketch is below.
184184
185185
This sketch connects to a website through a GSM shield. Specifically,
186186
187-
this example downloads the URL "http://www.arduino.cc/asciilogo.txt" and
187+
this example downloads the URL "http://arduino.tips/asciilogo.txt" and
188188
189189
prints it to the Serial monitor.
190190
@@ -222,7 +222,7 @@ GPRS gprs;
222222
GSM gsmAccess;
223223
224224
// URL, path & port (for example: arduino.cc)
225-
char server[] = "arduino.cc";
225+
char server[] = "arduino.tips";
226226
char path[] = "/asciilogo.txt";
227227
int port = 80; // port 80 is the default for HTTP
228228

0 commit comments

Comments
 (0)