Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 6a18254

Browse files
authored
v1.8.2 to update to arduino.tips
### Releases v1.8.2 1. Change from `arduino.cc` to `arduino.tips` in examples 2. Add `lib_ldf_mode = chain+` in `platformio.ini`
1 parent b0d93db commit 6a18254

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

examples/WebClient/WebClient.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include "defines.h"
1919

20-
char server[] = "arduino.cc";
20+
char server[] = "arduino.tips";
2121

2222
// Initialize the Ethernet client object
2323
EthernetClient client;
@@ -256,7 +256,7 @@ void setup()
256256
Serial.println(F("Connected to server"));
257257
// Make a HTTP request
258258
client.println(F("GET /asciilogo.txt HTTP/1.1"));
259-
client.println(F("Host: arduino.cc"));
259+
client.println(F("Host: arduino.tips"));
260260
client.println(F("Connection: close"));
261261
client.println();
262262
}

examples/WebClientRepeating/WebClientRepeating.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include "defines.h"
1919

20-
char server[] = "arduino.cc";
20+
char server[] = "arduino.tips";
2121

2222
unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds
2323
const unsigned long postingInterval = 10000L; // delay between updates, in milliseconds
@@ -41,7 +41,7 @@ void httpRequest()
4141

4242
// send the HTTP PUT request
4343
client.println(F("GET /asciilogo.txt HTTP/1.1"));
44-
client.println(F("Host: arduino.cc"));
44+
client.println(F("Host: arduino.tips"));
4545
client.println(F("Connection: close"));
4646
client.println();
4747

examples/WebClientRepeating_ESP/WebClientRepeating_ESP.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include "defines.h"
1515

16-
char server[] = "arduino.cc";
16+
char server[] = "arduino.tips";
1717

1818
unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds
1919
const unsigned long postingInterval = 10000L; // delay between updates, in milliseconds
@@ -37,7 +37,7 @@ void httpRequest()
3737

3838
// send the HTTP PUT request
3939
client.println(F("GET /asciilogo.txt HTTP/1.1"));
40-
client.println(F("Host: arduino.cc"));
40+
client.println(F("Host: arduino.tips"));
4141
client.println(F("Connection: close"));
4242
client.println();
4343

examples/WebClient_ESP/WebClient_ESP.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include "defines.h"
1515

16-
char server[] = "arduino.cc";
16+
char server[] = "arduino.tips";
1717

1818
// Initialize the Ethernet client object
1919
EthernetClient client;
@@ -171,7 +171,7 @@ void setup()
171171
Serial.println(F("Connected to server"));
172172
// Make a HTTP request
173173
client.println(F("GET /asciilogo.txt HTTP/1.1"));
174-
client.println(F("Host: arduino.cc"));
174+
client.println(F("Host: arduino.tips"));
175175
client.println(F("Connection: close"));
176176
client.println();
177177
}

0 commit comments

Comments
 (0)