1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Due to website configuration changes, every url starting with http://arduino.cc has been changed to http://www.arduino.cc. Fixes #3191

This commit is contained in:
Federico Fissore
2015-05-20 17:10:06 +02:00
parent 026210564d
commit 9166828bfe
140 changed files with 167 additions and 167 deletions

View File

@ -9,7 +9,7 @@
This example code is in the public domain.
http://arduino.cc/en/Tutorial/Process
http://www.arduino.cc/en/Tutorial/Process
*/
@ -39,7 +39,7 @@ void runCurl() {
// curl is command line program for transferring data using different internet protocols
Process p; // Create a process and call it "p"
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://www.arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl"
p.run(); // Run the process and wait for its termination
// Print arduino logo over the Serial