mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-01 03:47:23 +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:
@ -18,7 +18,7 @@
|
||||
|
||||
This example code is part of the public domain
|
||||
|
||||
http://arduino.cc/en/Tutorial/Bridge
|
||||
http://www.arduino.cc/en/Tutorial/Bridge
|
||||
|
||||
*/
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ConsoleAsciiTable
|
||||
http://www.arduino.cc/en/Tutorial/ConsoleAsciiTable
|
||||
|
||||
*/
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ConsolePixel
|
||||
http://www.arduino.cc/en/Tutorial/ConsolePixel
|
||||
|
||||
*/
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ConsoleRead
|
||||
http://www.arduino.cc/en/Tutorial/ConsoleRead
|
||||
|
||||
*/
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/YunDatalogger
|
||||
http://www.arduino.cc/en/Tutorial/YunDatalogger
|
||||
|
||||
*/
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/FileWriteScript
|
||||
http://www.arduino.cc/en/Tutorial/FileWriteScript
|
||||
|
||||
*/
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/HttpClient
|
||||
http://www.arduino.cc/en/Tutorial/HttpClient
|
||||
|
||||
*/
|
||||
|
||||
@ -37,7 +37,7 @@ void loop() {
|
||||
HttpClient client;
|
||||
|
||||
// Make a HTTP request:
|
||||
client.get("http://arduino.cc/asciilogo.txt");
|
||||
client.get("http://www.arduino.cc/asciilogo.txt");
|
||||
|
||||
// if there are incoming bytes available
|
||||
// from the server, read them and print them:
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/MailboxReadMessage
|
||||
http://www.arduino.cc/en/Tutorial/MailboxReadMessage
|
||||
|
||||
*/
|
||||
|
||||
|
@ -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
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/ShellCommands
|
||||
http://www.arduino.cc/en/Tutorial/ShellCommands
|
||||
|
||||
*/
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/TemperatureWebPanel
|
||||
http://www.arduino.cc/en/Tutorial/TemperatureWebPanel
|
||||
|
||||
*/
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/TimeCheck
|
||||
http://www.arduino.cc/en/Tutorial/TimeCheck
|
||||
|
||||
*/
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/YunWiFiStatus
|
||||
http://www.arduino.cc/en/Tutorial/YunWiFiStatus
|
||||
|
||||
*/
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
This example code is in the public domain.
|
||||
|
||||
http://arduino.cc/en/Tutorial/YunSerialTerminal
|
||||
http://www.arduino.cc/en/Tutorial/YunSerialTerminal
|
||||
|
||||
*/
|
||||
|
||||
|
Reference in New Issue
Block a user