You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/mkr-gsm-library-examples/mkr-gsm-library-examples.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1020,15 +1020,15 @@ int readSerial(char result[]) {
1020
1020
1021
1021
### MKR GSM SSL Web Client
1022
1022
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).
1024
1024
1025
1025
```arduino
1026
1026
/*
1027
1027
Web client
1028
1028
1029
1029
This sketch connects to a website using SSL through a MKR GSM 1400 board. Specifically,
1030
1030
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
1032
1032
1033
1033
prints it to the Serial monitor.
1034
1034
@@ -1070,8 +1070,8 @@ GPRS gprs;
1070
1070
1071
1071
GSM gsmAccess;
1072
1072
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";
1075
1075
char path[] = "/asciilogo.txt";
1076
1076
int port = 443; // port 443 is the default for HTTPS
1077
1077
@@ -1184,7 +1184,7 @@ void loop() {
1184
1184
1185
1185
### MKR GSM Web Client
1186
1186
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).
Copy file name to clipboardExpand all lines: content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/mkr-nb-library-examples/mkr-nb-library-examples.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -287,7 +287,7 @@ NB and CATM1 connectivity access can be restricted to some endpoints for securit
287
287
288
288
This sketch connects to a website using SSL through a MKR NB 1500 board. Specifically,
289
289
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
291
291
292
292
prints it to the Serial monitor.
293
293
@@ -323,7 +323,7 @@ GPRS gprs;
323
323
NB nbAccess;
324
324
325
325
// URL, path and port (for example: arduino.cc)
326
-
char server[] = "arduino.cc";
326
+
char server[] = "arduino.tips";
327
327
char path[] = "/asciilogo.txt";
328
328
int port = 443; // port 443 is the default for HTTPS
329
329
@@ -436,7 +436,7 @@ void loop() {
436
436
437
437
### MKR NB NB Web Client
438
438
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).
0 commit comments