Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void runCurl() {

p.begin("curl");

p.addParameter("http://arduino.cc/asciilogo.txt");
p.addParameter("http://arduino.tips/asciilogo.txt");

p.run();
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ void runCurl() {

p.begin("curl"); // Process that launch the "curl" command

p.addParameter("http://arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
p.addParameter("http://arduino.tips/asciilogo.txt"); // Add the URL parameter to "curl"

p.run(); // Run the process and wait for its termination

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ void runCurl() {

p.begin("curl"); // Process that launch the "curl" command

p.addParameter("http://arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
p.addParameter("http://arduino.tips/asciilogo.txt"); // Add the URL parameter to "curl"

p.run(); // Run the process and wait for its termination

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ void runCurl() {

p.begin("curl"); // Process that launch the "curl" command

p.addParameter("http://arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
p.addParameter("http://arduino.tips/asciilogo.txt"); // Add the URL parameter to "curl"

p.run(); // Run the process and wait for its termination

Expand Down