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

Commit 8616dc6

Browse files
authored
v1.4.1 to update to arduino.tips
### Releases v1.4.1 1. Change from `arduino.cc` to `arduino.tips` in examples
1 parent ed39a5c commit 8616dc6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/STM32_LAN8720/HTTPClient_LAN8720/SimpleHTTPExample_LAN8720/SimpleHTTPExample_LAN8720.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
// This example downloads the URL "http://arduino.cc/"
1919
// Name of the server we want to connect to
20-
const char kHostname[] = "arduino.cc";
20+
const char kHostname[] = "arduino.tips";
2121

2222
// Path to download (this is the bit after the hostname in the URL
2323
// that you want to download

examples/STM32_LAN8720/WebClientRepeating_LAN8720/WebClientRepeating_LAN8720.ino

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

2525
#include "defines.h"
2626

27-
char server[] = "arduino.cc";
27+
char server[] = "arduino.tips";
2828

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

4949
// send the HTTP PUT request
5050
client.println(F("GET /asciilogo.txt HTTP/1.1"));
51-
client.println(F("Host: arduino.cc"));
51+
client.println(F("Host: arduino.tips"));
5252
client.println(F("Connection: close"));
5353
client.println();
5454

examples/STM32_LAN8720/WebClient_LAN8720/WebClient_LAN8720.ino

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

2525
#include "defines.h"
2626

27-
char server[] = "arduino.cc";
27+
char server[] = "arduino.tips";
2828

2929
// Initialize the Web client object
3030
EthernetClient client;
@@ -59,7 +59,7 @@ void setup()
5959
Serial.println(F("Connected to server"));
6060
// Make a HTTP request
6161
client.println(F("GET /asciilogo.txt HTTP/1.1"));
62-
client.println(F("Host: arduino.cc"));
62+
client.println(F("Host: arduino.tips"));
6363
client.println(F("Connection: close"));
6464
client.println();
6565
}

0 commit comments

Comments
 (0)