diff --git a/README.md b/README.md
index be799fddc..48ba523ba 100644
--- a/README.md
+++ b/README.md
@@ -6,10 +6,10 @@ board and a development environment that implements the Processing/Wiring
language. Arduino can be used to develop stand-alone interactive objects or
can be connected to software on your computer (e.g. Flash, Processing, MaxMSP).
The boards can be assembled by hand or purchased preassembled; the open-source
-IDE can be downloaded for free at http://arduino.cc/en/Main/Software
+IDE can be downloaded for free at http://www.arduino.cc/en/Main/Software
* For more information, see the website at: http://www.arduino.cc/
-or the forums at: http://arduino.cc/forum/
+or the forums at: http://www.arduino.cc/forum/
You can also follow Arduino on twitter at: https://twitter.com/arduino or like Arduino on Facebook at: https://www.facebook.com/official.arduino
* To report a *bug* in the software or to request *a simple enhancement* go to:
diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java
index 217a77882..b2c7c0bc0 100644
--- a/app/src/processing/app/Editor.java
+++ b/app/src/processing/app/Editor.java
@@ -1286,7 +1286,7 @@ public class Editor extends JFrame implements RunnerListener {
item = new JMenuItem(_("Visit Arduino.cc"));
item.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
- Base.openURL(_("http://arduino.cc/"));
+ Base.openURL(_("http://www.arduino.cc/"));
}
});
menu.add(item);
diff --git a/app/test/cc/arduino/packages/contributions/package_index.json b/app/test/cc/arduino/packages/contributions/package_index.json
index 7b0cb6781..e9fd8ea44 100644
--- a/app/test/cc/arduino/packages/contributions/package_index.json
+++ b/app/test/cc/arduino/packages/contributions/package_index.json
@@ -6,7 +6,7 @@
"websiteURL": "http://www.arduino.cc/",
"email": "packages@arduino.cc",
"help": {
- "online": "http://arduino.cc/en/Reference/HomePage"
+ "online": "http://www.arduino.cc/en/Reference/HomePage"
},
"platforms": [
{
@@ -58,7 +58,7 @@
"version": "1.6.3",
"category": "Arduino",
"help": {
- "online": "http://arduino.cc/en/Reference/HomePage"
+ "online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.3.tar.bz2",
"archiveFileName": "avr-1.6.3.tar.bz2",
@@ -104,7 +104,7 @@
"version": "1.6.4",
"category": "Arduino",
"help": {
- "online": "http://arduino.cc/en/Reference/HomePage"
+ "online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.4.tar.bz2",
"archiveFileName": "avr-1.6.4.tar.bz2",
@@ -150,7 +150,7 @@
"version": "1.6.5",
"category": "Arduino",
"help": {
- "online": "http://arduino.cc/en/Reference/HomePage"
+ "online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.5.tar.bz2",
"archiveFileName": "avr-1.6.5.tar.bz2",
@@ -196,7 +196,7 @@
"version": "1.6.6",
"category": "Arduino",
"help": {
- "online": "http://arduino.cc/en/Reference/HomePage"
+ "online": "http://www.arduino.cc/en/Reference/HomePage"
},
"url": "http://downloads.arduino.cc/cores/avr-1.6.6.tar.bz2",
"archiveFileName": "avr-1.6.6.tar.bz2",
diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java
index 9ae944cfe..237f26943 100644
--- a/arduino-core/src/processing/app/BaseNoGui.java
+++ b/arduino-core/src/processing/app/BaseNoGui.java
@@ -320,7 +320,7 @@ public class BaseNoGui {
File readme = new File(libdir, "readme.txt");
FileWriter freadme = new FileWriter(readme);
freadme.write(_("For information on installing libraries, see: " +
- "http://arduino.cc/en/Guide/Libraries\n"));
+ "http://www.arduino.cc/en/Guide/Libraries\n"));
freadme.close();
} catch (Exception e) {
}
diff --git a/build/create_reference.pl b/build/create_reference.pl
index 41d14ee74..847ae584b 100644
--- a/build/create_reference.pl
+++ b/build/create_reference.pl
@@ -16,7 +16,7 @@ my $verbose = 1;
my $CURL_OPTIONS = "--silent --show-error -u $user:$pass";
my $ARDUINO = 'http://edit.arduino.cc/en_ref'; # base url for reference site
-my $PUBLIC = 'http://arduino.cc/en'; # base url for public site
+my $PUBLIC = 'http://www.arduino.cc/en'; # base url for public site
my %downloaded = (); # keep track of the pages we download
diff --git a/build/fetch.sh b/build/fetch.sh
index e75a0dcf4..f8b239289 100755
--- a/build/fetch.sh
+++ b/build/fetch.sh
@@ -13,7 +13,7 @@ cd reference
perl ../create_reference.pl || die 'unable to create local reference pages'
mkdir img
-curl http://arduino.cc/en/pub/skins/arduinoUno/img/logo.png > img/logo.png
+curl http://www.arduino.cc/en/pub/skins/arduinoUno/img/logo.png > img/logo.png
cd ..
zip -r shared/reference.zip reference || die 'unable to create reference.zip archive'
diff --git a/build/linux/dist/appdata.xml b/build/linux/dist/appdata.xml
index 29baec2d2..410f4b646 100644
--- a/build/linux/dist/appdata.xml
+++ b/build/linux/dist/appdata.xml
@@ -19,6 +19,6 @@
http://mavit.fedorapeople.org/appdata/arduino-screenshot.png
http://mavit.fedorapeople.org/appdata/arduino-photo.jpg
- http://arduino.cc/
+ http://www.arduino.cc/
arduino.appdata.xml@mavit.org.uk
diff --git a/build/shared/examples/01.Basics/Blink/Blink.ino b/build/shared/examples/01.Basics/Blink/Blink.ino
index b0db92b86..3f42e4d43 100644
--- a/build/shared/examples/01.Basics/Blink/Blink.ino
+++ b/build/shared/examples/01.Basics/Blink/Blink.ino
@@ -5,7 +5,7 @@
Most Arduinos have an on-board LED you can control. On the Uno and
Leonardo, it is attached to digital pin 13. If you're unsure what
pin the on-board LED is connected to on your Arduino model, check
- the documentation at http://arduino.cc
+ the documentation at http://www.arduino.cc
This example code is in the public domain.
diff --git a/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino b/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino
index bb3036931..148d5b202 100644
--- a/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino
+++ b/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino
@@ -21,7 +21,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/ButtonStateChange
+ http://www.arduino.cc/en/Tutorial/ButtonStateChange
*/
diff --git a/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino b/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino
index fbd4f726c..1a9c9685c 100644
--- a/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino
+++ b/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino
@@ -14,7 +14,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/Tone3
+ http://www.arduino.cc/en/Tutorial/Tone3
*/
diff --git a/build/shared/examples/02.Digital/toneMelody/toneMelody.ino b/build/shared/examples/02.Digital/toneMelody/toneMelody.ino
index bbb987220..9aa81589c 100644
--- a/build/shared/examples/02.Digital/toneMelody/toneMelody.ino
+++ b/build/shared/examples/02.Digital/toneMelody/toneMelody.ino
@@ -12,7 +12,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/Tone
+ http://www.arduino.cc/en/Tutorial/Tone
*/
#include "pitches.h"
diff --git a/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino b/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino
index dea838f7d..a95ad1c88 100644
--- a/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino
+++ b/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino
@@ -12,7 +12,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/Tone4
+ http://www.arduino.cc/en/Tutorial/Tone4
*/
diff --git a/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino b/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino
index 3e6899911..28c780d89 100644
--- a/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino
+++ b/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino
@@ -14,7 +14,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/Tone2
+ http://www.arduino.cc/en/Tutorial/Tone2
*/
diff --git a/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino b/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino
index 32d44c625..0e5b212a6 100644
--- a/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino
+++ b/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino
@@ -23,7 +23,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/AnalogInput
+ http://www.arduino.cc/en/Tutorial/AnalogInput
*/
diff --git a/build/shared/examples/03.Analog/Calibration/Calibration.ino b/build/shared/examples/03.Analog/Calibration/Calibration.ino
index bd87cad58..7c83174e2 100644
--- a/build/shared/examples/03.Analog/Calibration/Calibration.ino
+++ b/build/shared/examples/03.Analog/Calibration/Calibration.ino
@@ -20,7 +20,7 @@
modified 30 Aug 2011
By Tom Igoe
- http://arduino.cc/en/Tutorial/Calibration
+ http://www.arduino.cc/en/Tutorial/Calibration
This example code is in the public domain.
diff --git a/build/shared/examples/03.Analog/Fading/Fading.ino b/build/shared/examples/03.Analog/Fading/Fading.ino
index 2ed8bc4f4..f02069e0c 100644
--- a/build/shared/examples/03.Analog/Fading/Fading.ino
+++ b/build/shared/examples/03.Analog/Fading/Fading.ino
@@ -11,7 +11,7 @@
modified 30 Aug 2011
By Tom Igoe
- http://arduino.cc/en/Tutorial/Fading
+ http://www.arduino.cc/en/Tutorial/Fading
This example code is in the public domain.
diff --git a/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino
index 1ee4e9dfb..2e7ce8f26 100644
--- a/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino
+++ b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino
@@ -21,7 +21,7 @@
This example code is in the public domain.
-http://arduino.cc/en/Tutorial/IfStatement
+http://www.arduino.cc/en/Tutorial/IfStatement
*/
diff --git a/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino b/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino
index 36d25a191..543303eea 100644
--- a/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino
+++ b/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino
@@ -22,7 +22,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/WhileLoop
+ http://www.arduino.cc/en/Tutorial/WhileLoop
*/
diff --git a/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino
index ff8f393d6..7386d2f50 100644
--- a/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino
+++ b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino
@@ -8,7 +8,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringAdditionOperator
+ http://www.arduino.cc/en/Tutorial/StringAdditionOperator
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino b/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino
index 4e9062fef..854280d27 100644
--- a/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino
+++ b/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringAppendOperator
+ http://www.arduino.cc/en/Tutorial/StringAppendOperator
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino
index 6efc3aed7..fba798064 100644
--- a/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino
+++ b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringCaseChanges
+ http://www.arduino.cc/en/Tutorial/StringCaseChanges
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino
index f961c0738..b0cf0274f 100644
--- a/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino
+++ b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringCharacters
+ http://www.arduino.cc/en/Tutorial/StringCharacters
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino
index 85bcfb5a3..f58ca0ff5 100644
--- a/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino
+++ b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringComparisonOperators
+ http://www.arduino.cc/en/Tutorial/StringComparisonOperators
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino
index 08810e448..315d0b646 100644
--- a/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino
+++ b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino
@@ -7,7 +7,7 @@
modified 30 Aug 2011
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringConstructors
+ http://www.arduino.cc/en/Tutorial/StringConstructors
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino
index 97b5c84a1..d9cff117b 100644
--- a/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino
+++ b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringIndexOf
+ http://www.arduino.cc/en/Tutorial/StringIndexOf
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringLength/StringLength.ino b/build/shared/examples/08.Strings/StringLength/StringLength.ino
index 070412462..5ce9f29dd 100644
--- a/build/shared/examples/08.Strings/StringLength/StringLength.ino
+++ b/build/shared/examples/08.Strings/StringLength/StringLength.ino
@@ -7,7 +7,7 @@
created 1 Aug 2010
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringLengthTrim
+ http://www.arduino.cc/en/Tutorial/StringLengthTrim
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino b/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino
index 055b24945..5d1dfda1d 100644
--- a/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino
+++ b/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringLengthTrim
+ http://www.arduino.cc/en/Tutorial/StringLengthTrim
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringReplace/StringReplace.ino b/build/shared/examples/08.Strings/StringReplace/StringReplace.ino
index 311974168..1825b7380 100644
--- a/build/shared/examples/08.Strings/StringReplace/StringReplace.ino
+++ b/build/shared/examples/08.Strings/StringReplace/StringReplace.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringReplace
+ http://www.arduino.cc/en/Tutorial/StringReplace
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino b/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino
index 4367d128b..feba23395 100644
--- a/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino
+++ b/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/StringStartsWithEndsWith
+ http://www.arduino.cc/en/Tutorial/StringStartsWithEndsWith
This example code is in the public domain.
*/
diff --git a/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino b/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino
index 80404270e..6b1036f84 100644
--- a/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino
+++ b/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino
@@ -7,7 +7,7 @@
modified 2 Apr 2012
by Zach Eveland
- http://arduino.cc/en/Tutorial/StringSubstring
+ http://www.arduino.cc/en/Tutorial/StringSubstring
This example code is in the public domain.
*/
diff --git a/build/shared/examples/10.StarterKit/p02_SpaceshipInterface/p02_SpaceshipInterface.ino b/build/shared/examples/10.StarterKit/p02_SpaceshipInterface/p02_SpaceshipInterface.ino
index 24a8d8beb..db07cb4b4 100644
--- a/build/shared/examples/10.StarterKit/p02_SpaceshipInterface/p02_SpaceshipInterface.ino
+++ b/build/shared/examples/10.StarterKit/p02_SpaceshipInterface/p02_SpaceshipInterface.ino
@@ -15,7 +15,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p03_LoveOMeter/p03_LoveOMeter.ino b/build/shared/examples/10.StarterKit/p03_LoveOMeter/p03_LoveOMeter.ino
index 1a937cafa..177bf532d 100644
--- a/build/shared/examples/10.StarterKit/p03_LoveOMeter/p03_LoveOMeter.ino
+++ b/build/shared/examples/10.StarterKit/p03_LoveOMeter/p03_LoveOMeter.ino
@@ -13,7 +13,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p04_ColorMixingLamp/p04_ColorMixingLamp.ino b/build/shared/examples/10.StarterKit/p04_ColorMixingLamp/p04_ColorMixingLamp.ino
index 5114694f8..d3229f2ad 100644
--- a/build/shared/examples/10.StarterKit/p04_ColorMixingLamp/p04_ColorMixingLamp.ino
+++ b/build/shared/examples/10.StarterKit/p04_ColorMixingLamp/p04_ColorMixingLamp.ino
@@ -17,7 +17,7 @@
by Scott Fitzgerald
Thanks to Federico Vanzati for improvements
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p05_ServoMoodIndicator/p05_ServoMoodIndicator.ino b/build/shared/examples/10.StarterKit/p05_ServoMoodIndicator/p05_ServoMoodIndicator.ino
index 5a6ca0e18..075555dfe 100644
--- a/build/shared/examples/10.StarterKit/p05_ServoMoodIndicator/p05_ServoMoodIndicator.ino
+++ b/build/shared/examples/10.StarterKit/p05_ServoMoodIndicator/p05_ServoMoodIndicator.ino
@@ -13,7 +13,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p06_LightTheremin/p06_LightTheremin.ino b/build/shared/examples/10.StarterKit/p06_LightTheremin/p06_LightTheremin.ino
index 04196c491..f0c8c2570 100644
--- a/build/shared/examples/10.StarterKit/p06_LightTheremin/p06_LightTheremin.ino
+++ b/build/shared/examples/10.StarterKit/p06_LightTheremin/p06_LightTheremin.ino
@@ -13,7 +13,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p07_Keyboard/p07_Keyboard.ino b/build/shared/examples/10.StarterKit/p07_Keyboard/p07_Keyboard.ino
index 0521b0a69..379a7dde9 100644
--- a/build/shared/examples/10.StarterKit/p07_Keyboard/p07_Keyboard.ino
+++ b/build/shared/examples/10.StarterKit/p07_Keyboard/p07_Keyboard.ino
@@ -15,7 +15,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p08_DigitalHourglass/p08_DigitalHourglass.ino b/build/shared/examples/10.StarterKit/p08_DigitalHourglass/p08_DigitalHourglass.ino
index 2716a21ff..932d737f7 100644
--- a/build/shared/examples/10.StarterKit/p08_DigitalHourglass/p08_DigitalHourglass.ino
+++ b/build/shared/examples/10.StarterKit/p08_DigitalHourglass/p08_DigitalHourglass.ino
@@ -14,7 +14,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p09_MotorizedPinwheel/p09_MotorizedPinwheel.ino b/build/shared/examples/10.StarterKit/p09_MotorizedPinwheel/p09_MotorizedPinwheel.ino
index a531ded7b..d4efae454 100644
--- a/build/shared/examples/10.StarterKit/p09_MotorizedPinwheel/p09_MotorizedPinwheel.ino
+++ b/build/shared/examples/10.StarterKit/p09_MotorizedPinwheel/p09_MotorizedPinwheel.ino
@@ -16,7 +16,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p10_Zoetrope/p10_Zoetrope.ino b/build/shared/examples/10.StarterKit/p10_Zoetrope/p10_Zoetrope.ino
index d0cfbe3c9..7b1b7fa54 100644
--- a/build/shared/examples/10.StarterKit/p10_Zoetrope/p10_Zoetrope.ino
+++ b/build/shared/examples/10.StarterKit/p10_Zoetrope/p10_Zoetrope.ino
@@ -17,7 +17,7 @@
by Scott Fitzgerald
Thanks to Federico Vanzati for improvements
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p11_CrystalBall/p11_CrystalBall.ino b/build/shared/examples/10.StarterKit/p11_CrystalBall/p11_CrystalBall.ino
index b60f60bb4..f17249be6 100644
--- a/build/shared/examples/10.StarterKit/p11_CrystalBall/p11_CrystalBall.ino
+++ b/build/shared/examples/10.StarterKit/p11_CrystalBall/p11_CrystalBall.ino
@@ -16,7 +16,7 @@
Created 13 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p12_KnockLock/p12_KnockLock.ino b/build/shared/examples/10.StarterKit/p12_KnockLock/p12_KnockLock.ino
index 6c0cbb427..f6586c17b 100644
--- a/build/shared/examples/10.StarterKit/p12_KnockLock/p12_KnockLock.ino
+++ b/build/shared/examples/10.StarterKit/p12_KnockLock/p12_KnockLock.ino
@@ -21,7 +21,7 @@
by Scott Fitzgerald
Thanks to Federico Vanzati for improvements
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p13_TouchSensorLamp/p13_TouchSensorLamp.ino b/build/shared/examples/10.StarterKit/p13_TouchSensorLamp/p13_TouchSensorLamp.ino
index 2ba3e9ee6..64e3d22ad 100644
--- a/build/shared/examples/10.StarterKit/p13_TouchSensorLamp/p13_TouchSensorLamp.ino
+++ b/build/shared/examples/10.StarterKit/p13_TouchSensorLamp/p13_TouchSensorLamp.ino
@@ -13,12 +13,12 @@
Software required :
CapacitiveSensor library by Paul Badger
- http://arduino.cc/playground/Main/CapacitiveSensor
+ http://www.arduino.cc/playground/Main/CapacitiveSensor
Created 18 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/examples/10.StarterKit/p14_TweakTheArduinoLogo/p14_TweakTheArduinoLogo.ino b/build/shared/examples/10.StarterKit/p14_TweakTheArduinoLogo/p14_TweakTheArduinoLogo.ino
index a6a2b0d02..a1e94ebc4 100644
--- a/build/shared/examples/10.StarterKit/p14_TweakTheArduinoLogo/p14_TweakTheArduinoLogo.ino
+++ b/build/shared/examples/10.StarterKit/p14_TweakTheArduinoLogo/p14_TweakTheArduinoLogo.ino
@@ -15,7 +15,7 @@
Created 18 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
@@ -55,7 +55,7 @@ void loop() {
colorMode(HSB, 255);
// load the Arduino logo into the PImage instance
- logo = loadImage("http://arduino.cc/en/pub/skins/arduinoWide/img/logo.png");
+ logo = loadImage("http://www.arduino.cc/en/pub/skins/arduinoWide/img/logo.png");
// make the window the same size as the image
size(logo.width, logo.height);
diff --git a/build/shared/examples/10.StarterKit/p15_HackingButtons/p15_HackingButtons.ino b/build/shared/examples/10.StarterKit/p15_HackingButtons/p15_HackingButtons.ino
index 9e2ebcbcf..73d52234b 100644
--- a/build/shared/examples/10.StarterKit/p15_HackingButtons/p15_HackingButtons.ino
+++ b/build/shared/examples/10.StarterKit/p15_HackingButtons/p15_HackingButtons.ino
@@ -13,7 +13,7 @@
Created 18 September 2012
by Scott Fitzgerald
- http://arduino.cc/starterKit
+ http://www.arduino.cc/starterKit
This example code is part of the public domain
*/
diff --git a/build/shared/lib/theme/theme.txt b/build/shared/lib/theme/theme.txt
index 757449f21..a16b63c39 100644
--- a/build/shared/lib/theme/theme.txt
+++ b/build/shared/lib/theme/theme.txt
@@ -100,7 +100,7 @@ editor.reserved_word_2.style = #00979C,plain
editor.literal_char.style = #00979C,plain
editor.literal_string_double_quote.style = #00979C,plain
-# http://arduino.cc/
+# http://www.arduino.cc/
editor.url.style = #0000ff,underlined
# e.g. + - = /
diff --git a/build/shared/manpage.adoc b/build/shared/manpage.adoc
index 53a23aa6f..fbd629a76 100644
--- a/build/shared/manpage.adoc
+++ b/build/shared/manpage.adoc
@@ -333,7 +333,7 @@ HISTORY
RESOURCES
---------
-Web site:
+Web site:
Help on projects and programming:
diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt
index 138362a3c..bee981c03 100644
--- a/build/shared/revisions.txt
+++ b/build/shared/revisions.txt
@@ -494,7 +494,7 @@ ARDUINO 1.5 BETA - 2012.10.22
* Everything is in beta, most features or libraries are still missing
or incomplete.
* For more info refer to this press release:
- http://arduino.cc/blog/2012/10/22/arduino-1-5-support-for-the-due-and-other-processors-easier-library-installation-simplified-board-menu-etc/
+ http://www.arduino.cc/blog/2012/10/22/arduino-1-5-support-for-the-due-and-other-processors-easier-library-installation-simplified-board-menu-etc/
ARDUINO 1.0.7
@@ -726,7 +726,7 @@ ARDUINO 1.0.1 - 2012.05.21
* The IDE has been internationalized and translated into multiple languages.
Thanks to Shigeru Kanemoto for the internationalization and Japanese
translation and many others for the other translations. For more
- information, see: http://arduino.cc/playground/Main/LanguagesIDE
+ information, see: http://www.arduino.cc/playground/Main/LanguagesIDE
* Added preference for selecting the language in which to display the
Arduino software. Defaults to the operating system locale.
@@ -981,7 +981,7 @@ ARDUINO 0022 - 2010.12.24
* Adding an SD card library based on sdfatlib by Bill Greiman and the
MemoryCard library by Philip Lindsay (follower) for SparkFun.
- http://arduino.cc/en/Reference/SD
+ http://www.arduino.cc/en/Reference/SD
* Added character manipulation macros (from Wiring): isAlphaNumeric(),
isAlpha(), isAscii(), isWhitespace(), isControl(), isDigit(), isGraph(),
diff --git a/hardware/arduino/avr/bootloaders/optiboot/optiboot.c b/hardware/arduino/avr/bootloaders/optiboot/optiboot.c
index d499d85e8..41545b777 100644
--- a/hardware/arduino/avr/bootloaders/optiboot/optiboot.c
+++ b/hardware/arduino/avr/bootloaders/optiboot/optiboot.c
@@ -50,7 +50,7 @@
/* */
/* Code builds on code, libraries and optimisations from: */
/* stk500boot.c by Jason P. Kyle */
-/* Arduino bootloader http://arduino.cc */
+/* Arduino bootloader http://www.arduino.cc */
/* Spiff's 1K bootloader http://spiffie.org/know/arduino_1k_bootloader/bootloader.shtml */
/* avr-libc project http://nongnu.org/avr-libc */
/* Adaboot http://www.ladyada.net/library/arduino/bootloader.html */
diff --git a/hardware/arduino/avr/libraries/EEPROM/library.properties b/hardware/arduino/avr/libraries/EEPROM/library.properties
index c6532559b..21437ffdf 100644
--- a/hardware/arduino/avr/libraries/EEPROM/library.properties
+++ b/hardware/arduino/avr/libraries/EEPROM/library.properties
@@ -4,6 +4,6 @@ author=Arduino, Christopher Andrews
maintainer=Arduino
sentence=Enables reading and writing to the permanent board storage. For all Arduino boards BUT Arduino DUE.
paragraph=
-url=http://arduino.cc/en/Reference/EEPROM
+url=http://www.arduino.cc/en/Reference/EEPROM
architectures=avr
diff --git a/hardware/arduino/avr/libraries/SPI/library.properties b/hardware/arduino/avr/libraries/SPI/library.properties
index 582ce5b5c..2964aecfe 100644
--- a/hardware/arduino/avr/libraries/SPI/library.properties
+++ b/hardware/arduino/avr/libraries/SPI/library.properties
@@ -4,6 +4,6 @@ author=Arduino
maintainer=Arduino
sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For all Arduino boards, BUT Arduino DUE.
paragraph=
-url=http://arduino.cc/en/Reference/SPI
+url=http://www.arduino.cc/en/Reference/SPI
architectures=avr
diff --git a/hardware/arduino/avr/libraries/SoftwareSerial/library.properties b/hardware/arduino/avr/libraries/SoftwareSerial/library.properties
index 45368f8e7..37eb04b3d 100644
--- a/hardware/arduino/avr/libraries/SoftwareSerial/library.properties
+++ b/hardware/arduino/avr/libraries/SoftwareSerial/library.properties
@@ -4,6 +4,6 @@ author=Arduino
maintainer=Arduino
sentence=Enables serial communication on digital pins. For all Arduino boards, BUT Arduino DUE.
paragraph=
-url=http://arduino.cc/en/Reference/SoftwareSerial
+url=http://www.arduino.cc/en/Reference/SoftwareSerial
architectures=avr
diff --git a/hardware/arduino/avr/libraries/Wire/library.properties b/hardware/arduino/avr/libraries/Wire/library.properties
index 74406459d..080584743 100644
--- a/hardware/arduino/avr/libraries/Wire/library.properties
+++ b/hardware/arduino/avr/libraries/Wire/library.properties
@@ -4,6 +4,6 @@ author=Arduino
maintainer=Arduino
sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. For all Arduino boards, BUT Arduino DUE.
paragraph=
-url=http://arduino.cc/en/Reference/Wire
+url=http://www.arduino.cc/en/Reference/Wire
architectures=avr
diff --git a/hardware/arduino/sam/libraries/SPI/library.properties b/hardware/arduino/sam/libraries/SPI/library.properties
index 543906ba5..0e358df5f 100644
--- a/hardware/arduino/sam/libraries/SPI/library.properties
+++ b/hardware/arduino/sam/libraries/SPI/library.properties
@@ -4,6 +4,6 @@ author=Arduino
maintainer=Arduino
sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For Arduino DUE only.
paragraph=
-url=http://arduino.cc/en/Reference/SPI
+url=http://www.arduino.cc/en/Reference/SPI
architectures=sam
diff --git a/hardware/arduino/sam/libraries/Wire/library.properties b/hardware/arduino/sam/libraries/Wire/library.properties
index 780f911d4..607cf0dde 100644
--- a/hardware/arduino/sam/libraries/Wire/library.properties
+++ b/hardware/arduino/sam/libraries/Wire/library.properties
@@ -4,6 +4,6 @@ author=Arduino
maintainer=Arduino
sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. For Arduino DUE only.
paragraph=
-url=http://arduino.cc/en/Reference/Wire
+url=http://www.arduino.cc/en/Reference/Wire
architectures=sam
diff --git a/libraries/Audio/README.adoc b/libraries/Audio/README.adoc
index 77f06bf0e..1778afa04 100644
--- a/libraries/Audio/README.adoc
+++ b/libraries/Audio/README.adoc
@@ -3,7 +3,7 @@
The Audio library enables an Arduino Due board to play back .wav files from a storage device like an SD card.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/Audio
+http://www.arduino.cc/en/Reference/Audio
== License ==
diff --git a/libraries/Audio/examples/SimpleAudioPlayer/SimpleAudioPlayer.ino b/libraries/Audio/examples/SimpleAudioPlayer/SimpleAudioPlayer.ino
index 1512b85be..f8e12bedd 100644
--- a/libraries/Audio/examples/SimpleAudioPlayer/SimpleAudioPlayer.ino
+++ b/libraries/Audio/examples/SimpleAudioPlayer/SimpleAudioPlayer.ino
@@ -14,7 +14,7 @@
This example code is in the public domain
- http://arduino.cc/en/Tutorial/SimpleAudioPlayer
+ http://www.arduino.cc/en/Tutorial/SimpleAudioPlayer
*/
diff --git a/libraries/Audio/library.properties b/libraries/Audio/library.properties
index 3caa70522..93dea94fd 100644
--- a/libraries/Audio/library.properties
+++ b/libraries/Audio/library.properties
@@ -1,9 +1,9 @@
name=Audio
-version=1.0.2
+version=1.0.3
author=Arduino
maintainer=Arduino
sentence=Allows playing audio files from an SD card. For Arduino DUE only.
paragraph=With this library you can use the Arduino Due DAC outputs to play audio files.
The audio files must be in the raw .wav format.
category=Signal Input/Output
-url=http://arduino.cc/en/Reference/Audio
+url=http://www.arduino.cc/en/Reference/Audio
architectures=sam
diff --git a/libraries/Bridge/README.adoc b/libraries/Bridge/README.adoc
index 8b5e970a6..c660f86ee 100644
--- a/libraries/Bridge/README.adoc
+++ b/libraries/Bridge/README.adoc
@@ -3,7 +3,7 @@
The Bridge library simplifies communication between the ATmega32U4 and the AR9331.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/YunBridgeLibrary
+http://www.arduino.cc/en/Reference/YunBridgeLibrary
== License ==
diff --git a/libraries/Bridge/examples/Bridge/Bridge.ino b/libraries/Bridge/examples/Bridge/Bridge.ino
index 74c912d4c..025923d0c 100644
--- a/libraries/Bridge/examples/Bridge/Bridge.ino
+++ b/libraries/Bridge/examples/Bridge/Bridge.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino b/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino
index 2b6d87249..79d5aff7e 100644
--- a/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino
+++ b/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino b/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino
index 61036d3c6..ee78f4c61 100644
--- a/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino
+++ b/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino b/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino
index b9a8dd7ce..cf4e149b4 100644
--- a/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino
+++ b/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/Datalogger/Datalogger.ino b/libraries/Bridge/examples/Datalogger/Datalogger.ino
index 7112389c6..1aa5f5db3 100644
--- a/libraries/Bridge/examples/Datalogger/Datalogger.ino
+++ b/libraries/Bridge/examples/Datalogger/Datalogger.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino b/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino
index c59d873d5..0ca7d2cfb 100644
--- a/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino
+++ b/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/HttpClient/HttpClient.ino b/libraries/Bridge/examples/HttpClient/HttpClient.ino
index da0157c07..1107b4d05 100644
--- a/libraries/Bridge/examples/HttpClient/HttpClient.ino
+++ b/libraries/Bridge/examples/HttpClient/HttpClient.ino
@@ -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:
diff --git a/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino b/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino
index 09c0bef57..3e8115d9f 100644
--- a/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino
+++ b/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/Process/Process.ino b/libraries/Bridge/examples/Process/Process.ino
index 409b6d3a2..4f540120c 100644
--- a/libraries/Bridge/examples/Process/Process.ino
+++ b/libraries/Bridge/examples/Process/Process.ino
@@ -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
diff --git a/libraries/Bridge/examples/ShellCommands/ShellCommands.ino b/libraries/Bridge/examples/ShellCommands/ShellCommands.ino
index 66fc11a62..3e5ef9dee 100644
--- a/libraries/Bridge/examples/ShellCommands/ShellCommands.ino
+++ b/libraries/Bridge/examples/ShellCommands/ShellCommands.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino b/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino
index a695fbdd5..a5c9b9670 100644
--- a/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino
+++ b/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/TimeCheck/TimeCheck.ino b/libraries/Bridge/examples/TimeCheck/TimeCheck.ino
index 6240780db..f31b2b0d0 100644
--- a/libraries/Bridge/examples/TimeCheck/TimeCheck.ino
+++ b/libraries/Bridge/examples/TimeCheck/TimeCheck.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino b/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino
index fe7c887b9..fb4126978 100644
--- a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino
+++ b/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino
@@ -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
*/
diff --git a/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino b/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino
index 53b9eead4..91b911b65 100644
--- a/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino
+++ b/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino
@@ -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
*/
diff --git a/libraries/Bridge/library.properties b/libraries/Bridge/library.properties
index dd8eba068..a11d9c360 100644
--- a/libraries/Bridge/library.properties
+++ b/libraries/Bridge/library.properties
@@ -1,9 +1,9 @@
name=Bridge
-version=1.0.4
+version=1.0.5
author=Arduino
maintainer=Arduino
sentence=Enables the communication between the Linux processor and the AVR. For Arduino Yún and TRE only.
paragraph=The Bridge library feature: access to the shared storage, run and manage linux processes, open a remote console, access to the linux file system, including the SD card, enstablish http clients or servers.
category=Communication
-url=http://arduino.cc/en/Reference/YunBridgeLibrary
+url=http://www.arduino.cc/en/Reference/YunBridgeLibrary
architectures=*
diff --git a/libraries/Esplora/README.adoc b/libraries/Esplora/README.adoc
index 1f71b38ed..a24a480b2 100644
--- a/libraries/Esplora/README.adoc
+++ b/libraries/Esplora/README.adoc
@@ -3,7 +3,7 @@
The library offers easy access to the data from the onboard Esplora's sensors, and provides the ability to change the state of the outputs.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/EsploraLibrary
+http://www.arduino.cc/en/Reference/EsploraLibrary
== License ==
diff --git a/libraries/Esplora/examples/Beginners/EsploraJoystickMouse/EsploraJoystickMouse.ino b/libraries/Esplora/examples/Beginners/EsploraJoystickMouse/EsploraJoystickMouse.ino
index 9324fb5bc..197f8fcad 100644
--- a/libraries/Esplora/examples/Beginners/EsploraJoystickMouse/EsploraJoystickMouse.ino
+++ b/libraries/Esplora/examples/Beginners/EsploraJoystickMouse/EsploraJoystickMouse.ino
@@ -20,7 +20,7 @@
Updated 8 March 2014
by Scott Fitzgerald
- http://arduino.cc/en/Reference/EsploraReadJoystickSwitch
+ http://www.arduino.cc/en/Reference/EsploraReadJoystickSwitch
This example is in the public domain.
*/
diff --git a/libraries/Esplora/library.properties b/libraries/Esplora/library.properties
index f54617f12..26ad29b1f 100644
--- a/libraries/Esplora/library.properties
+++ b/libraries/Esplora/library.properties
@@ -1,9 +1,9 @@
name=Esplora
-version=1.0.3
+version=1.0.4
author=Arduino
maintainer=Arduino
sentence=Grants easy access to the various sensors and actuators of the Esplora. For Arduino Esplora only.
paragraph=The sensors available on the board are:2-Axis analog joystick with center push-button,4 push-buttons,microphone, light sensor, temperature sensor, 3-axis accelerometer, 2 TinkerKit input connectors.The actuators available on the board are: bright RGB LED, piezo buzzer, 2 TinkerKit output connectors.
category=Device Control
-url=http://arduino.cc/en/Reference/EsploraLibrary
+url=http://www.arduino.cc/en/Reference/EsploraLibrary
architectures=avr
diff --git a/libraries/Ethernet/README.adoc b/libraries/Ethernet/README.adoc
index c01060742..8f890f045 100644
--- a/libraries/Ethernet/README.adoc
+++ b/libraries/Ethernet/README.adoc
@@ -3,7 +3,7 @@
With the Arduino Ethernet Shield, this library allows an Arduino board to connect to the internet.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/Ethernet
+http://www.arduino.cc/en/Reference/Ethernet
== License ==
diff --git a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino
index a0ae8b782..ad3f461c2 100644
--- a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino
+++ b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino
@@ -17,7 +17,7 @@
modified 21 Jan 2014
by Federico Vanzati
- http://arduino.cc/en/Tutorial/WebClientRepeating
+ http://www.arduino.cc/en/Tutorial/WebClientRepeating
This code is in the public domain.
*/
diff --git a/libraries/Ethernet/library.properties b/libraries/Ethernet/library.properties
index 1634bfea7..9e889973f 100644
--- a/libraries/Ethernet/library.properties
+++ b/libraries/Ethernet/library.properties
@@ -1,9 +1,9 @@
name=Ethernet
-version=1.0.2
+version=1.0.3
author=Arduino
maintainer=Arduino
sentence=Enables network connection (local and Internet) using the Arduino Ethernet board or shield. For all Arduino boards.
paragraph=With this library you can use the Arduino Ethernet (shield or board) to connect to Internet. The library provides both Client and server functionalities. The library permits you to connect to a local network also with DHCP and to resolve DNS.
category=Communication
-url=http://arduino.cc/en/Reference/Ethernet
+url=http://www.arduino.cc/en/Reference/Ethernet
architectures=*
diff --git a/libraries/Firmata/README.adoc b/libraries/Firmata/README.adoc
index a85d48540..97c250621 100644
--- a/libraries/Firmata/README.adoc
+++ b/libraries/Firmata/README.adoc
@@ -3,7 +3,7 @@
The Firmata library implements the Firmata protocol for communicating with software on the host computer. This allows you to write custom firmware without having to create your own protocol and objects for the programming environment that you are using.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/Firmata
+http://www.arduino.cc/en/Reference/Firmata
== License ==
diff --git a/libraries/GSM/README.adoc b/libraries/GSM/README.adoc
index 8c59e965b..876f0dcb7 100644
--- a/libraries/GSM/README.adoc
+++ b/libraries/GSM/README.adoc
@@ -3,7 +3,7 @@
With the Arduino GSM Shield, this library enables an Arduino board to do most of the operations you can do with a GSM phone: place and receive voice calls, send and receive SMS, and connect to the internet over a GPRS network.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/GSM
+http://www.arduino.cc/en/Reference/GSM
== License ==
Copyright (c) 2012 Telefónica Digital - PDI - Physical Internet Lab
diff --git a/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino b/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino
index 4de67b150..6deaba0e1 100644
--- a/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino
+++ b/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino
@@ -2,7 +2,7 @@
Web client
This sketch connects to a website through a GSM shield. Specifically,
- this example downloads the URL "http://arduino.cc/asciilogo.txt" and
+ this example downloads the URL "http://www.arduino.cc/asciilogo.txt" and
prints it to the Serial monitor.
Circuit:
@@ -12,7 +12,7 @@
created 8 Mar 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/GSMExamplesWebClient
+ http://www.arduino.cc/en/Tutorial/GSMExamplesWebClient
*/
diff --git a/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino b/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino
index d40538e4d..fe24fbd64 100644
--- a/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino
+++ b/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino
@@ -13,7 +13,7 @@
This example is in the public domain.
- http://arduino.cc/en/Tutorial/GSMExamplesReceiveSMS
+ http://www.arduino.cc/en/Tutorial/GSMExamplesReceiveSMS
*/
diff --git a/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino b/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino
index a4c76295f..1a386496a 100644
--- a/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino
+++ b/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino
@@ -7,7 +7,7 @@
Circuit:
* GSM shield
* Voice circuit. Refer to to the GSM shield getting started guide
- at http://arduino.cc/en/Guide/ArduinoGSMShield#toc11
+ at http://www.arduino.cc/en/Guide/ArduinoGSMShield#toc11
* SIM card that can accept voice calls
With no voice circuit the call will connect, but will not send or receive sound
@@ -17,7 +17,7 @@
This example is in the public domain.
- http://arduino.cc/en/Tutorial/GSMExamplesReceiveVoiceCall
+ http://www.arduino.cc/en/Tutorial/GSMExamplesReceiveVoiceCall
*/
diff --git a/libraries/GSM/examples/SendSMS/SendSMS.ino b/libraries/GSM/examples/SendSMS/SendSMS.ino
index beaf96dfc..25db63342 100644
--- a/libraries/GSM/examples/SendSMS/SendSMS.ino
+++ b/libraries/GSM/examples/SendSMS/SendSMS.ino
@@ -17,7 +17,7 @@
This example is in the public domain.
- http://arduino.cc/en/Tutorial/GSMExamplesSendSMS
+ http://www.arduino.cc/en/Tutorial/GSMExamplesSendSMS
*/
diff --git a/libraries/GSM/examples/Tools/GsmScanNetworks/GsmScanNetworks.ino b/libraries/GSM/examples/Tools/GsmScanNetworks/GsmScanNetworks.ino
index 097241586..00a7f54ea 100644
--- a/libraries/GSM/examples/Tools/GsmScanNetworks/GsmScanNetworks.ino
+++ b/libraries/GSM/examples/Tools/GsmScanNetworks/GsmScanNetworks.ino
@@ -16,7 +16,7 @@
Modified 4 Feb 2013
by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/GSMToolsGsmScanNetworks
+ http://www.arduino.cc/en/Tutorial/GSMToolsGsmScanNetworks
This example code is part of the public domain
*/
diff --git a/libraries/GSM/examples/Tools/PinManagement/PinManagement.ino b/libraries/GSM/examples/Tools/PinManagement/PinManagement.ino
index 011c3be8b..0bfa4eb96 100644
--- a/libraries/GSM/examples/Tools/PinManagement/PinManagement.ino
+++ b/libraries/GSM/examples/Tools/PinManagement/PinManagement.ino
@@ -12,7 +12,7 @@
This example code is part of the public domain
- http://arduino.cc/en/Tutorial/GSMToolsPinManagement
+ http://www.arduino.cc/en/Tutorial/GSMToolsPinManagement
*/
diff --git a/libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino b/libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino
index 14f82a5d6..2c78bf78c 100644
--- a/libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino
+++ b/libraries/GSM/examples/Tools/TestGPRS/TestGPRS.ino
@@ -13,7 +13,7 @@
This example code is part of the public domain
- http://arduino.cc/en/Tutorial/GSMToolsTestGPRS
+ http://www.arduino.cc/en/Tutorial/GSMToolsTestGPRS
*/
@@ -34,7 +34,7 @@ String errortext = "ERROR";
// URL and path (for example: arduino.cc)
char url[] = "arduino.cc";
-char urlproxy[] = "http://arduino.cc";
+char urlproxy[] = "http://www.arduino.cc";
char path[] = "/";
// variable for save response obtained
diff --git a/libraries/GSM/examples/Tools/TestModem/TestModem.ino b/libraries/GSM/examples/Tools/TestModem/TestModem.ino
index 271d349ff..f5e0e3268 100644
--- a/libraries/GSM/examples/Tools/TestModem/TestModem.ino
+++ b/libraries/GSM/examples/Tools/TestModem/TestModem.ino
@@ -12,7 +12,7 @@
modified 21 Nov 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/GSMToolsTestModem
+ http://www.arduino.cc/en/Tutorial/GSMToolsTestModem
This sample code is part of the public domain
diff --git a/libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino b/libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino
index 1225ad0b4..3b24bb21f 100644
--- a/libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino
+++ b/libraries/GSM/examples/Tools/TestWebServer/TestWebServer.ino
@@ -12,7 +12,7 @@
modified 21 Nov 2012
by Tom Igoe
- http://arduino.cc/en/Tutorial/GSMToolsTestWebServer
+ http://www.arduino.cc/en/Tutorial/GSMToolsTestWebServer
This example code is part of the public domain
*/
diff --git a/libraries/GSM/library.properties b/libraries/GSM/library.properties
index 8c81c5d7f..2c93ad2a3 100644
--- a/libraries/GSM/library.properties
+++ b/libraries/GSM/library.properties
@@ -1,9 +1,9 @@
name=GSM
-version=1.0.3
+version=1.0.4
author=Arduino
maintainer=Arduino
sentence=Enables GSM/GRPS network connection using the Arduino GSM Shield. For all Arduino boards BUT Arduino DUE.
paragraph=Use this library to make/receive voice calls, to send and receive SMS with the Quectel M10 GSM module.This library also allows you to connect to internet through the GPRS networks. You can either use web Clients and Servers.
category=Communication
-url=http://arduino.cc/en/Reference/GSM
+url=http://www.arduino.cc/en/Reference/GSM
architectures=avr
diff --git a/libraries/LiquidCrystal/README.adoc b/libraries/LiquidCrystal/README.adoc
index 6f57eb157..d51cee757 100644
--- a/libraries/LiquidCrystal/README.adoc
+++ b/libraries/LiquidCrystal/README.adoc
@@ -3,7 +3,7 @@
This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/LiquidCrystal
+http://www.arduino.cc/en/Reference/LiquidCrystal
== License ==
diff --git a/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino b/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino
index 0acb3affc..f70a1a739 100644
--- a/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino
+++ b/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino
@@ -32,7 +32,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/LiquidCrystalAutoscroll
+ http://www.arduino.cc/en/Tutorial/LiquidCrystalAutoscroll
*/
diff --git a/libraries/LiquidCrystal/examples/Blink/Blink.ino b/libraries/LiquidCrystal/examples/Blink/Blink.ino
index 856d522c5..fea13a34b 100644
--- a/libraries/LiquidCrystal/examples/Blink/Blink.ino
+++ b/libraries/LiquidCrystal/examples/Blink/Blink.ino
@@ -32,7 +32,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/LiquidCrystalBlink
+ http://www.arduino.cc/en/Tutorial/LiquidCrystalBlink
*/
diff --git a/libraries/LiquidCrystal/examples/Cursor/Cursor.ino b/libraries/LiquidCrystal/examples/Cursor/Cursor.ino
index 5f68d917d..8699d27fe 100644
--- a/libraries/LiquidCrystal/examples/Cursor/Cursor.ino
+++ b/libraries/LiquidCrystal/examples/Cursor/Cursor.ino
@@ -33,7 +33,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/LiquidCrystalCursor
+ http://www.arduino.cc/en/Tutorial/LiquidCrystalCursor
*/
diff --git a/libraries/LiquidCrystal/examples/Display/Display.ino b/libraries/LiquidCrystal/examples/Display/Display.ino
index 5c9e67cb3..90b14f002 100644
--- a/libraries/LiquidCrystal/examples/Display/Display.ino
+++ b/libraries/LiquidCrystal/examples/Display/Display.ino
@@ -33,7 +33,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/LiquidCrystalDisplay
+ http://www.arduino.cc/en/Tutorial/LiquidCrystalDisplay
*/
diff --git a/libraries/LiquidCrystal/examples/Scroll/Scroll.ino b/libraries/LiquidCrystal/examples/Scroll/Scroll.ino
index 3e4479177..0a4a95f90 100644
--- a/libraries/LiquidCrystal/examples/Scroll/Scroll.ino
+++ b/libraries/LiquidCrystal/examples/Scroll/Scroll.ino
@@ -33,7 +33,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/LiquidCrystalScroll
+ http://www.arduino.cc/en/Tutorial/LiquidCrystalScroll
*/
diff --git a/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino b/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino
index 5838dc5a0..ec46ff0fd 100644
--- a/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino
+++ b/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino
@@ -32,7 +32,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/LiquidCrystalSerial
+ http://www.arduino.cc/en/Tutorial/LiquidCrystalSerial
*/
// include the library code:
diff --git a/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino b/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino
index 3bb8695b3..c838d81b8 100644
--- a/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino
+++ b/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino
@@ -32,7 +32,7 @@ by Tom Igoe
This example code is in the public domain.
-http://arduino.cc/en/Tutorial/LiquidCrystalTextDirection
+http://www.arduino.cc/en/Tutorial/LiquidCrystalTextDirection
*/
diff --git a/libraries/LiquidCrystal/examples/setCursor/setCursor.ino b/libraries/LiquidCrystal/examples/setCursor/setCursor.ino
index df75f7fe9..d2dae9327 100644
--- a/libraries/LiquidCrystal/examples/setCursor/setCursor.ino
+++ b/libraries/LiquidCrystal/examples/setCursor/setCursor.ino
@@ -32,7 +32,7 @@
This example code is in the public domain.
- http://arduino.cc/en/Tutorial/LiquidCrystalSetCursor
+ http://www.arduino.cc/en/Tutorial/LiquidCrystalSetCursor
*/
diff --git a/libraries/LiquidCrystal/library.properties b/libraries/LiquidCrystal/library.properties
index f379f78cc..7aa5b529c 100644
--- a/libraries/LiquidCrystal/library.properties
+++ b/libraries/LiquidCrystal/library.properties
@@ -1,9 +1,9 @@
name=LiquidCrystal
-version=1.0.1
+version=1.0.2
author=Arduino, Adafruit
maintainer=Arduino
sentence=Allows communication with alphanumerical liquid crystal displays (LCDs). For all Arduino boards.
paragraph=This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. The library works with in either 4 or 8 bit mode (i.e. using 4 or 8 data lines in addition to the rs, enable, and, optionally, the rw control lines).
category=Display
-url=http://arduino.cc/en/Reference/LiquidCrystal
+url=http://www.arduino.cc/en/Reference/LiquidCrystal
architectures=*
diff --git a/libraries/RobotIRremote/README.adoc b/libraries/RobotIRremote/README.adoc
index 54ce67c6d..fd27000f8 100644
--- a/libraries/RobotIRremote/README.adoc
+++ b/libraries/RobotIRremote/README.adoc
@@ -3,7 +3,7 @@
The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/RobotLibrary
+http://www.arduino.cc/en/Reference/RobotLibrary
== License ==
diff --git a/libraries/Robot_Control/README.adoc b/libraries/Robot_Control/README.adoc
index e0c1c472a..b48580143 100644
--- a/libraries/Robot_Control/README.adoc
+++ b/libraries/Robot_Control/README.adoc
@@ -3,7 +3,7 @@
The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/RobotLibrary
+http://www.arduino.cc/en/Reference/RobotLibrary
== License ==
diff --git a/libraries/Robot_Control/library.properties b/libraries/Robot_Control/library.properties
index 994b0b0b1..bcaa0fff7 100644
--- a/libraries/Robot_Control/library.properties
+++ b/libraries/Robot_Control/library.properties
@@ -5,5 +5,5 @@ maintainer=Arduino
sentence=Enables easy access to the controls of the Arduino Robot Control board. For Arduino Robot only.
paragraph=The Arduino robot is made by two independent boards. The Control Board is the top board of the Arduino Robot, with this library you can easily write sketches to control the robot.
category=Device Control
-url=http://arduino.cc/en/Reference/RobotLibrary
+url=http://www.arduino.cc/en/Reference/RobotLibrary
architectures=avr
diff --git a/libraries/Robot_Motor/README.adoc b/libraries/Robot_Motor/README.adoc
index 07bad3d83..480fa5223 100644
--- a/libraries/Robot_Motor/README.adoc
+++ b/libraries/Robot_Motor/README.adoc
@@ -3,7 +3,7 @@
The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/RobotLibrary
+http://www.arduino.cc/en/Reference/RobotLibrary
== License ==
diff --git a/libraries/Robot_Motor/library.properties b/libraries/Robot_Motor/library.properties
index 165412af2..bbfc60cb8 100644
--- a/libraries/Robot_Motor/library.properties
+++ b/libraries/Robot_Motor/library.properties
@@ -5,5 +5,5 @@ maintainer=Arduino
sentence=Enables easy access to the motors of the Arduino Robot Motor board. For Arduino Robot only.
paragraph=
category=Device Control
-url=http://arduino.cc/en/Reference/RobotLibrary
+url=http://www.arduino.cc/en/Reference/RobotLibrary
architectures=avr
diff --git a/libraries/SD/README.adoc b/libraries/SD/README.adoc
index 4c6521ed3..fabff563c 100644
--- a/libraries/SD/README.adoc
+++ b/libraries/SD/README.adoc
@@ -3,7 +3,7 @@
The SD library allows for reading from and writing to SD cards.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/SD
+http://www.arduino.cc/en/Reference/SD
== License ==
diff --git a/libraries/SD/library.properties b/libraries/SD/library.properties
index 4658054f8..feb88cd84 100644
--- a/libraries/SD/library.properties
+++ b/libraries/SD/library.properties
@@ -5,5 +5,5 @@ maintainer=Arduino
sentence=Enables reading and writing on SD cards. For all Arduino boards.
paragraph=Once an SD memory card is connected to the SPI interfare of the Arduino board you are enabled to create files and read/write on them. You can also move through directories on the SD card.
category=Data Storage
-url=http://arduino.cc/en/Reference/SD
+url=http://www.arduino.cc/en/Reference/SD
architectures=*
diff --git a/libraries/Scheduler/README.adoc b/libraries/Scheduler/README.adoc
index 628bb1543..aef62e821 100644
--- a/libraries/Scheduler/README.adoc
+++ b/libraries/Scheduler/README.adoc
@@ -3,7 +3,7 @@
The Scheduler library enables the Arduino Due to run multiple functions at the same time. This allows tasks to happen without interrupting each other.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/Scheduler
+http://www.arduino.cc/en/Reference/Scheduler
== License ==
diff --git a/libraries/Scheduler/examples/MultipleBlinks/MultipleBlinks.ino b/libraries/Scheduler/examples/MultipleBlinks/MultipleBlinks.ino
index f3a229cab..bc1be4c47 100644
--- a/libraries/Scheduler/examples/MultipleBlinks/MultipleBlinks.ino
+++ b/libraries/Scheduler/examples/MultipleBlinks/MultipleBlinks.ino
@@ -13,7 +13,7 @@
This example code is in the public domain
- http://arduino.cc/en/Tutorial/MultipleBlinks
+ http://www.arduino.cc/en/Tutorial/MultipleBlinks
*/
// Include Scheduler since we want to manage multiple tasks.
diff --git a/libraries/Scheduler/library.properties b/libraries/Scheduler/library.properties
index 241208ce7..c7d34533b 100644
--- a/libraries/Scheduler/library.properties
+++ b/libraries/Scheduler/library.properties
@@ -1,9 +1,9 @@
name=Scheduler
-version=0.4.2
+version=0.4.3
author=Arduino
maintainer=Arduino
sentence=Allows multiple tasks to run at the same time, without interrupting each other. For Arduino DUE only.
paragraph=The Scheduler library enables the Arduino Due to run multiple functions at the same time. This allows tasks to happen without interrupting each other.This is a cooperative scheduler in that the CPU switches from one task to another. The library includes methods for passing control between tasks.
category=Other
-url=http://arduino.cc/en/Reference/Scheduler
+url=http://www.arduino.cc/en/Reference/Scheduler
architectures=sam
diff --git a/libraries/Servo/README.adoc b/libraries/Servo/README.adoc
index a871b08c5..dd3f0bae3 100644
--- a/libraries/Servo/README.adoc
+++ b/libraries/Servo/README.adoc
@@ -3,7 +3,7 @@
This library allows an Arduino board to control RC (hobby) servo motors.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/Servo
+http://www.arduino.cc/en/Reference/Servo
== License ==
diff --git a/libraries/Servo/examples/Knob/Knob.ino b/libraries/Servo/examples/Knob/Knob.ino
index 06c252c06..5e31f744f 100644
--- a/libraries/Servo/examples/Knob/Knob.ino
+++ b/libraries/Servo/examples/Knob/Knob.ino
@@ -4,7 +4,7 @@
modified on 8 Nov 2013
by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/Knob
+ http://www.arduino.cc/en/Tutorial/Knob
*/
#include
diff --git a/libraries/Servo/examples/Sweep/Sweep.ino b/libraries/Servo/examples/Sweep/Sweep.ino
index bbe6ea9d1..79ef30fc0 100644
--- a/libraries/Servo/examples/Sweep/Sweep.ino
+++ b/libraries/Servo/examples/Sweep/Sweep.ino
@@ -4,7 +4,7 @@
modified 8 Nov 2013
by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/Sweep
+ http://www.arduino.cc/en/Tutorial/Sweep
*/
#include
diff --git a/libraries/Servo/library.properties b/libraries/Servo/library.properties
index 1712ac80f..71231d323 100644
--- a/libraries/Servo/library.properties
+++ b/libraries/Servo/library.properties
@@ -1,9 +1,9 @@
name=Servo
-version=1.0.2
+version=1.0.3
author=Michael Margolis, Arduino
maintainer=Arduino
sentence=Allows Arduino boards to control a variety of servo motors. For all Arduino boards.
paragraph=This library can control a great number of servos.
It makes careful use of timers: the library can control 12 servos using only 1 timer.
On the Arduino Due you can control up to 60 servos.
category=Device Control
-url=http://arduino.cc/en/Reference/Servo
+url=http://www.arduino.cc/en/Reference/Servo
architectures=avr,sam
diff --git a/libraries/Stepper/README.adoc b/libraries/Stepper/README.adoc
index 066623761..9d4d05216 100644
--- a/libraries/Stepper/README.adoc
+++ b/libraries/Stepper/README.adoc
@@ -3,7 +3,7 @@
This library allows you to control unipolar or bipolar stepper motors. To use it you will need a stepper motor, and the appropriate hardware to control it.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/Stepper
+http://www.arduino.cc/en/Reference/Stepper
== License ==
diff --git a/libraries/Stepper/library.properties b/libraries/Stepper/library.properties
index f17170344..f1347c918 100644
--- a/libraries/Stepper/library.properties
+++ b/libraries/Stepper/library.properties
@@ -5,5 +5,5 @@ maintainer=Arduino
sentence=Allows Arduino boards to control a variety of stepper motors. For all Arduino boards.
paragraph=This library allows you to control unipolar or bipolar stepper motors. To use it you will need a stepper motor, and the appropriate hardware to control it.
category=Device Control
-url=http://arduino.cc/en/Reference/Stepper
+url=http://www.arduino.cc/en/Reference/Stepper
architectures=*
diff --git a/libraries/TFT/README.adoc b/libraries/TFT/README.adoc
index ab716292b..0550e2d34 100644
--- a/libraries/TFT/README.adoc
+++ b/libraries/TFT/README.adoc
@@ -3,7 +3,7 @@
This library enables an Arduino board to communicate with the Arduino TFT LCD screen. It simplifies the process for drawing shapes, lines, images, and text to the screen.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/TFTLibrary
+http://www.arduino.cc/en/Reference/TFTLibrary
== License ==
diff --git a/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino b/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino
index 7a588b62b..92459931d 100644
--- a/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino
+++ b/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino
@@ -15,7 +15,7 @@
Created 19 April 2013 by Enrico Gueli
- http://arduino.cc/en/Tutorial/TFTBitmapLogo
+ http://www.arduino.cc/en/Tutorial/TFTBitmapLogo
*/
diff --git a/libraries/TFT/examples/Arduino/TFTColorPicker/TFTColorPicker.ino b/libraries/TFT/examples/Arduino/TFTColorPicker/TFTColorPicker.ino
index da921939c..ba71d1e57 100644
--- a/libraries/TFT/examples/Arduino/TFTColorPicker/TFTColorPicker.ino
+++ b/libraries/TFT/examples/Arduino/TFTColorPicker/TFTColorPicker.ino
@@ -10,7 +10,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/TFTColorPicker
+ http://www.arduino.cc/en/Tutorial/TFTColorPicker
*/
diff --git a/libraries/TFT/examples/Arduino/TFTDisplayText/TFTDisplayText.ino b/libraries/TFT/examples/Arduino/TFTDisplayText/TFTDisplayText.ino
index b4d6cd695..a9c1d8699 100644
--- a/libraries/TFT/examples/Arduino/TFTDisplayText/TFTDisplayText.ino
+++ b/libraries/TFT/examples/Arduino/TFTDisplayText/TFTDisplayText.ino
@@ -11,7 +11,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/TFTDisplayText
+ http://www.arduino.cc/en/Tutorial/TFTDisplayText
*/
diff --git a/libraries/TFT/examples/Arduino/TFTEtchASketch/TFTEtchASketch.ino b/libraries/TFT/examples/Arduino/TFTEtchASketch/TFTEtchASketch.ino
index 7facbc31f..2a3d6e713 100644
--- a/libraries/TFT/examples/Arduino/TFTEtchASketch/TFTEtchASketch.ino
+++ b/libraries/TFT/examples/Arduino/TFTEtchASketch/TFTEtchASketch.ino
@@ -10,7 +10,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/TFTEtchASketch
+ http://www.arduino.cc/en/Tutorial/TFTEtchASketch
*/
diff --git a/libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino b/libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino
index 83fcd328d..6c789593c 100644
--- a/libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino
+++ b/libraries/TFT/examples/Arduino/TFTGraph/TFTGraph.ino
@@ -10,7 +10,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/TFTGraph
+ http://www.arduino.cc/en/Tutorial/TFTGraph
*/
diff --git a/libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino b/libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino
index 74c605b83..7a6191538 100644
--- a/libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino
+++ b/libraries/TFT/examples/Arduino/TFTPong/TFTPong.ino
@@ -12,7 +12,7 @@
Created by Tom Igoe December 2012
Modified 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/TFTPong
+ http://www.arduino.cc/en/Tutorial/TFTPong
*/
diff --git a/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino b/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino
index e3ac59800..d6eba2e35 100644
--- a/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino
+++ b/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino
@@ -17,7 +17,7 @@
Created 19 April 2013 by Enrico Gueli
- http://arduino.cc/en/Tutorial/EsploraTFTBitmapLogo
+ http://www.arduino.cc/en/Tutorial/EsploraTFTBitmapLogo
*/
diff --git a/libraries/TFT/examples/Esplora/EsploraTFTColorPicker/EsploraTFTColorPicker.ino b/libraries/TFT/examples/Esplora/EsploraTFTColorPicker/EsploraTFTColorPicker.ino
index 0d9e42599..cdce051e1 100644
--- a/libraries/TFT/examples/Esplora/EsploraTFTColorPicker/EsploraTFTColorPicker.ino
+++ b/libraries/TFT/examples/Esplora/EsploraTFTColorPicker/EsploraTFTColorPicker.ino
@@ -10,7 +10,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/TFTColorPicker
+ http://www.arduino.cc/en/Tutorial/TFTColorPicker
*/
diff --git a/libraries/TFT/examples/Esplora/EsploraTFTEtchASketch/EsploraTFTEtchASketch.ino b/libraries/TFT/examples/Esplora/EsploraTFTEtchASketch/EsploraTFTEtchASketch.ino
index 24f1901f2..9a42ffa0c 100644
--- a/libraries/TFT/examples/Esplora/EsploraTFTEtchASketch/EsploraTFTEtchASketch.ino
+++ b/libraries/TFT/examples/Esplora/EsploraTFTEtchASketch/EsploraTFTEtchASketch.ino
@@ -11,7 +11,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/EsploraTFTEtchASketch
+ http://www.arduino.cc/en/Tutorial/EsploraTFTEtchASketch
*/
diff --git a/libraries/TFT/examples/Esplora/EsploraTFTGraph/EsploraTFTGraph.ino b/libraries/TFT/examples/Esplora/EsploraTFTGraph/EsploraTFTGraph.ino
index e46c03c50..06364c20e 100644
--- a/libraries/TFT/examples/Esplora/EsploraTFTGraph/EsploraTFTGraph.ino
+++ b/libraries/TFT/examples/Esplora/EsploraTFTGraph/EsploraTFTGraph.ino
@@ -10,7 +10,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/EsploraTFTGraph
+ http://www.arduino.cc/en/Tutorial/EsploraTFTGraph
*/
diff --git a/libraries/TFT/examples/Esplora/EsploraTFTHorizon/EsploraTFTHorizon.ino b/libraries/TFT/examples/Esplora/EsploraTFTHorizon/EsploraTFTHorizon.ino
index 3be485d8d..34abf29d2 100644
--- a/libraries/TFT/examples/Esplora/EsploraTFTHorizon/EsploraTFTHorizon.ino
+++ b/libraries/TFT/examples/Esplora/EsploraTFTHorizon/EsploraTFTHorizon.ino
@@ -10,7 +10,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/EsploraTFTHorizon
+ http://www.arduino.cc/en/Tutorial/EsploraTFTHorizon
*/
diff --git a/libraries/TFT/examples/Esplora/EsploraTFTPong/EsploraTFTPong.ino b/libraries/TFT/examples/Esplora/EsploraTFTPong/EsploraTFTPong.ino
index e6c793df7..11b1dffa1 100644
--- a/libraries/TFT/examples/Esplora/EsploraTFTPong/EsploraTFTPong.ino
+++ b/libraries/TFT/examples/Esplora/EsploraTFTPong/EsploraTFTPong.ino
@@ -13,7 +13,7 @@
Created by Tom Igoe December 2012
Modified 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/EsploraTFTPong
+ http://www.arduino.cc/en/Tutorial/EsploraTFTPong
*/
diff --git a/libraries/TFT/examples/Esplora/EsploraTFTTemp/EsploraTFTTemp.ino b/libraries/TFT/examples/Esplora/EsploraTFTTemp/EsploraTFTTemp.ino
index f3c529482..a5c70817c 100644
--- a/libraries/TFT/examples/Esplora/EsploraTFTTemp/EsploraTFTTemp.ino
+++ b/libraries/TFT/examples/Esplora/EsploraTFTTemp/EsploraTFTTemp.ino
@@ -13,7 +13,7 @@
Created 15 April 2013 by Scott Fitzgerald
- http://arduino.cc/en/Tutorial/EsploraTFTTemp
+ http://www.arduino.cc/en/Tutorial/EsploraTFTTemp
*/
diff --git a/libraries/TFT/extras/README.md b/libraries/TFT/extras/README.md
index 8489a20d4..6f41794fc 100644
--- a/libraries/TFT/extras/README.md
+++ b/libraries/TFT/extras/README.md
@@ -12,7 +12,7 @@ The TFT library relies on the SPI library for communication with the screen and
https://github.com/adafruit/Adafruit-GFX-Library
https://github.com/adafruit/Adafruit-ST7735-Library
-http://arduino.cc/en/Reference/SD
-http://arduino.cc/en/Reference/SPI
+http://www.arduino.cc/en/Reference/SD
+http://www.arduino.cc/en/Reference/SPI
-http://arduino.cc/en/Reference/TFTLibrary
\ No newline at end of file
+http://www.arduino.cc/en/Reference/TFTLibrary
\ No newline at end of file
diff --git a/libraries/TFT/library.properties b/libraries/TFT/library.properties
index a46758741..c5c8f4f26 100644
--- a/libraries/TFT/library.properties
+++ b/libraries/TFT/library.properties
@@ -1,9 +1,9 @@
name=TFT
-version=1.0.2
+version=1.0.3
author=Arduino, Adafruit
maintainer=Arduino
sentence=Allows drawing text, images, and shapes on the Arduino TFT graphical display. For all Arduino boards.
paragraph=This library is compatible with most of the TFT display based on the ST7735 chipset
category=Display
-url=http://arduino.cc/en/Reference/TFTLibrary
+url=http://www.arduino.cc/en/Reference/TFTLibrary
architectures=*
diff --git a/libraries/USBHost/README.adoc b/libraries/USBHost/README.adoc
index cd617a9f7..dc0a9ac34 100644
--- a/libraries/USBHost/README.adoc
+++ b/libraries/USBHost/README.adoc
@@ -3,7 +3,7 @@
The USBHost library allows an Arduino Due board to appear as a USB host, enabling it to communicate with peripherals like USB mice and keyboards.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/USBHost
+http://www.arduino.cc/en/Reference/USBHost
== License ==
diff --git a/libraries/USBHost/examples/KeyboardController/KeyboardController.ino b/libraries/USBHost/examples/KeyboardController/KeyboardController.ino
index aa744543d..0dc05ea8b 100644
--- a/libraries/USBHost/examples/KeyboardController/KeyboardController.ino
+++ b/libraries/USBHost/examples/KeyboardController/KeyboardController.ino
@@ -7,7 +7,7 @@
created 8 Oct 2012
by Cristian Maglie
- http://arduino.cc/en/Tutorial/KeyboardController
+ http://www.arduino.cc/en/Tutorial/KeyboardController
This sample code is part of the public domain.
*/
diff --git a/libraries/USBHost/examples/MouseController/MouseController.ino b/libraries/USBHost/examples/MouseController/MouseController.ino
index 81d0d8827..bcd287f2b 100644
--- a/libraries/USBHost/examples/MouseController/MouseController.ino
+++ b/libraries/USBHost/examples/MouseController/MouseController.ino
@@ -7,7 +7,7 @@
created 8 Oct 2012
by Cristian Maglie
- http://arduino.cc/en/Tutorial/MouseController
+ http://www.arduino.cc/en/Tutorial/MouseController
This sample code is part of the public domain.
*/
diff --git a/libraries/USBHost/library.properties b/libraries/USBHost/library.properties
index 765a0d6fe..f212d57f1 100644
--- a/libraries/USBHost/library.properties
+++ b/libraries/USBHost/library.properties
@@ -1,9 +1,9 @@
name=USBHost
-version=1.0.2
+version=1.0.3
author=Arduino
maintainer=Arduino
sentence=Allows the communication with USB peripherals like mice, keyboards, and thumbdrives. For Arduino DUE only.
paragraph=The USBHost library allows an Arduino Due board to appear as a USB host, enabling it to communicate with peripherals like USB mice and keyboards. USBHost does not support devices that are connected through USB hubs. This includes some keyboards that have an internal hub.
category=Device Control
-url=http://arduino.cc/en/Reference/USBHost
+url=http://www.arduino.cc/en/Reference/USBHost
architectures=sam
diff --git a/libraries/WiFi/README.adoc b/libraries/WiFi/README.adoc
index 90a37d210..82a56c2bd 100644
--- a/libraries/WiFi/README.adoc
+++ b/libraries/WiFi/README.adoc
@@ -3,7 +3,7 @@
With the Arduino WiFi Shield, this library allows an Arduino board to connect to the internet.
For more information about this library please visit us at
-http://arduino.cc/en/Reference/WiFi
+http://www.arduino.cc/en/Reference/WiFi
== License ==
diff --git a/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino b/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino
index 60f9eb829..5143fe996 100644
--- a/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino
+++ b/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino
@@ -13,7 +13,7 @@
modified 13 Jan 2014
by Federico Vanzati
- http://arduino.cc/en/Tutorial/WifiWebClientRepeating
+ http://www.arduino.cc/en/Tutorial/WifiWebClientRepeating
This code is in the public domain.
*/
diff --git a/libraries/WiFi/library.properties b/libraries/WiFi/library.properties
index 59ef37d5e..600994112 100644
--- a/libraries/WiFi/library.properties
+++ b/libraries/WiFi/library.properties
@@ -1,9 +1,9 @@
name=WiFi
-version=1.2.3
+version=1.2.4
author=Arduino
maintainer=Arduino
sentence=Enables network connection (local and Internet) using the Arduino WiFi shield. For all Arduino boards.
paragraph=With this library you can instantiate Servers, Clients and send/receive UDP packets through WiFi. The shield can connect either to open or encrypted networks (WEP, WPA). The IP address can be assigned statically or through a DHCP. The library can also manage DNS.
category=Communication
-url=http://arduino.cc/en/Reference/WiFi
+url=http://www.arduino.cc/en/Reference/WiFi
architectures=*