diff --git a/content/hardware/02.hero/boards/yun-rev2/tutorials/Process/Process.md b/content/hardware/02.hero/boards/yun-rev2/tutorials/Process/Process.md index 7a156d09d0..c0c22527ff 100644 --- a/content/hardware/02.hero/boards/yun-rev2/tutorials/Process/Process.md +++ b/content/hardware/02.hero/boards/yun-rev2/tutorials/Process/Process.md @@ -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(); ``` diff --git a/content/retired/06.getting-started-guides/ArduinoYun/ArduinoYun.md b/content/retired/06.getting-started-guides/ArduinoYun/ArduinoYun.md index f00930eb14..98b290eea7 100644 --- a/content/retired/06.getting-started-guides/ArduinoYun/ArduinoYun.md +++ b/content/retired/06.getting-started-guides/ArduinoYun/ArduinoYun.md @@ -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 diff --git a/content/retired/06.getting-started-guides/ArduinoYunLin/ArduinoYunLin.md b/content/retired/06.getting-started-guides/ArduinoYunLin/ArduinoYunLin.md index 6046930b01..9c25e9670a 100644 --- a/content/retired/06.getting-started-guides/ArduinoYunLin/ArduinoYunLin.md +++ b/content/retired/06.getting-started-guides/ArduinoYunLin/ArduinoYunLin.md @@ -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 diff --git a/content/retired/06.getting-started-guides/ArduinoYunShield/ArduinoYunShield.md b/content/retired/06.getting-started-guides/ArduinoYunShield/ArduinoYunShield.md index b3959f0143..6d0cb12ee2 100644 --- a/content/retired/06.getting-started-guides/ArduinoYunShield/ArduinoYunShield.md +++ b/content/retired/06.getting-started-guides/ArduinoYunShield/ArduinoYunShield.md @@ -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