This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1717
1818#include " defines.h"
1919
20- char server[] = " arduino.cc " ;
20+ char server[] = " arduino.tips " ;
2121
2222// Initialize the Ethernet client object
2323EthernetClient 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 }
Original file line number Diff line number Diff line change 1717
1818#include " defines.h"
1919
20- char server[] = " arduino.cc " ;
20+ char server[] = " arduino.tips " ;
2121
2222unsigned long lastConnectionTime = 0 ; // last time you connected to the server, in milliseconds
2323const 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
Original file line number Diff line number Diff line change 1313
1414#include " defines.h"
1515
16- char server[] = " arduino.cc " ;
16+ char server[] = " arduino.tips " ;
1717
1818unsigned long lastConnectionTime = 0 ; // last time you connected to the server, in milliseconds
1919const 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
Original file line number Diff line number Diff line change 1313
1414#include " defines.h"
1515
16- char server[] = " arduino.cc " ;
16+ char server[] = " arduino.tips " ;
1717
1818// Initialize the Ethernet client object
1919EthernetClient 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 }
You can’t perform that action at this time.
0 commit comments