diff --git a/build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino b/build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino index 16ada7ed2..cad73cf98 100644 --- a/build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino +++ b/build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino @@ -5,8 +5,8 @@ can run at the same time without being interrupted by the LED code. The circuit: - * Use the onboard LED. - * Note: Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO + - Use the onboard LED. + - Note: Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to the correct LED pin independent of which board is used. If you want to know what pin the on-board LED is connected to on your Arduino model, check diff --git a/build/shared/examples/02.Digital/Button/Button.ino b/build/shared/examples/02.Digital/Button/Button.ino index ff0d82202..04441c912 100644 --- a/build/shared/examples/02.Digital/Button/Button.ino +++ b/build/shared/examples/02.Digital/Button/Button.ino @@ -6,11 +6,11 @@ The circuit: - * LED attached from pin 13 to ground - * pushbutton attached to pin 2 from +5V - * 10K resistor attached to pin 2 from ground + - LED attached from pin 13 to ground + - pushbutton attached to pin 2 from +5V + - 10K resistor attached to pin 2 from ground - * Note: on most Arduinos there is already an LED on the board + - Note: on most Arduinos there is already an LED on the board attached to pin 13. diff --git a/build/shared/examples/02.Digital/Debounce/Debounce.ino b/build/shared/examples/02.Digital/Debounce/Debounce.ino index 9c7eb95b6..a62815aca 100644 --- a/build/shared/examples/02.Digital/Debounce/Debounce.ino +++ b/build/shared/examples/02.Digital/Debounce/Debounce.ino @@ -7,11 +7,11 @@ noise). The circuit: - * LED attached from pin 13 to ground - * pushbutton attached from pin 2 to +5V - * 10K resistor attached from pin 2 to ground + - LED attached from pin 13 to ground + - pushbutton attached from pin 2 to +5V + - 10K resistor attached from pin 2 to ground - * Note: On most Arduino boards, there is already an LED on the board + - Note: On most Arduino boards, there is already an LED on the board connected to pin 13, so you don't need any extra components for this example. diff --git a/build/shared/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.ino b/build/shared/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.ino index 9a30509fc..82a723bb5 100644 --- a/build/shared/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.ino +++ b/build/shared/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.ino @@ -5,8 +5,8 @@ digital input on pin 2 and prints the results to the Serial Monitor. The circuit: - * Momentary switch attached from pin 2 to ground - * Built-in LED on pin 13 + - Momentary switch attached from pin 2 to ground + - Built-in LED on pin 13 Unlike pinMode(INPUT), there is no pull-down resistor necessary. An internal 20K-ohm resistor is pulled to 5V. This configuration causes the input to diff --git a/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino b/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino index 46afd0d51..a02f3ec54 100644 --- a/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino +++ b/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.ino @@ -10,9 +10,9 @@ and on to off. The circuit: - * pushbutton attached to pin 2 from +5V - * 10K resistor attached to pin 2 from ground - * LED attached from pin 13 to ground (or use the built-in LED on + - pushbutton attached to pin 2 from +5V + - 10K resistor attached to pin 2 from ground + - LED attached from pin 13 to ground (or use the built-in LED on most Arduino boards) created 27 Sep 2005 diff --git a/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino b/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino index 1a9c9685c..a2b38847d 100644 --- a/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino +++ b/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.ino @@ -4,9 +4,9 @@ Plays a pitch that changes based on a changing analog input circuit: - * 3 force-sensing resistors from +5V to analog in 0 through 5 - * 3 10K resistors from analog in 0 through 5 to ground - * 8-ohm speaker on digital pin 8 + - 3 force-sensing resistors from +5V to analog in 0 through 5 + - 3 10K resistors from analog in 0 through 5 to ground + - 8-ohm speaker on digital pin 8 created 21 Jan 2010 modified 9 Apr 2012 diff --git a/build/shared/examples/02.Digital/toneMelody/toneMelody.ino b/build/shared/examples/02.Digital/toneMelody/toneMelody.ino index 9aa81589c..8839e5290 100644 --- a/build/shared/examples/02.Digital/toneMelody/toneMelody.ino +++ b/build/shared/examples/02.Digital/toneMelody/toneMelody.ino @@ -4,7 +4,7 @@ Plays a melody circuit: - * 8-ohm speaker on digital pin 8 + - 8-ohm speaker on digital pin 8 created 21 Jan 2010 modified 30 Aug 2011 diff --git a/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino b/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino index a95ad1c88..70fd5ca08 100644 --- a/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino +++ b/build/shared/examples/02.Digital/toneMultiple/toneMultiple.ino @@ -4,7 +4,7 @@ Plays multiple tones on multiple pins in sequence circuit: - * 3 8-ohm speaker on digital pins 6, 7, and 8 + - 3 8-ohm speaker on digital pins 6, 7, and 8 created 8 March 2010 by Tom Igoe diff --git a/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino b/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino index f3c934a23..f39a9d5ff 100644 --- a/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino +++ b/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.ino @@ -4,9 +4,9 @@ Plays a pitch that changes based on a changing analog input circuit: - * 8-ohm speaker on digital pin 9 - * photoresistor on analog 0 to 5V - * 4.7K resistor on analog 0 to ground + - 8-ohm speaker on digital pin 9 + - photoresistor on analog 0 to 5V + - 4.7K resistor on analog 0 to ground created 21 Jan 2010 modified 31 May 2012 diff --git a/build/shared/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.ino b/build/shared/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.ino index 206691ede..7c28781a2 100644 --- a/build/shared/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.ino +++ b/build/shared/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.ino @@ -6,10 +6,10 @@ Also prints the results to the Serial Monitor. The circuit: - * potentiometer connected to analog pin 0. + - potentiometer connected to analog pin 0. Center pin of the potentiometer goes to the analog pin. side pins of the potentiometer go to +5V and ground - * LED connected from digital pin 9 to ground + - LED connected from digital pin 9 to ground created 29 Dec. 2008 modified 9 Apr 2012 diff --git a/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino b/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino index aff69aa90..1b4be2dca 100644 --- a/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino +++ b/build/shared/examples/03.Analog/AnalogInput/AnalogInput.ino @@ -6,14 +6,14 @@ the value obtained by analogRead(). The circuit: - * Potentiometer attached to analog input 0 - * center pin of the potentiometer to the analog pin - * one side pin (either one) to ground - * the other side pin to +5V - * LED anode (long leg) attached to digital output 13 - * LED cathode (short leg) attached to ground + - Potentiometer attached to analog input 0 + - center pin of the potentiometer to the analog pin + - one side pin (either one) to ground + - the other side pin to +5V + - LED anode (long leg) attached to digital output 13 + - LED cathode (short leg) attached to ground - * Note: because most Arduinos have a built-in LED attached + - Note: because most Arduinos have a built-in LED attached to pin 13 on the board, the LED is optional. diff --git a/build/shared/examples/03.Analog/AnalogWriteMega/AnalogWriteMega.ino b/build/shared/examples/03.Analog/AnalogWriteMega/AnalogWriteMega.ino index 3c90463fa..ce2c59777 100644 --- a/build/shared/examples/03.Analog/AnalogWriteMega/AnalogWriteMega.ino +++ b/build/shared/examples/03.Analog/AnalogWriteMega/AnalogWriteMega.ino @@ -5,7 +5,7 @@ This sketch was written for the Arduino Mega, and will not work on other boards. The circuit: - * LEDs attached from pins 2 through 13 to ground. + - LEDs attached from pins 2 through 13 to ground. created 8 Feb 2009 by Tom Igoe diff --git a/build/shared/examples/03.Analog/Calibration/Calibration.ino b/build/shared/examples/03.Analog/Calibration/Calibration.ino index 7c83174e2..e32cff307 100644 --- a/build/shared/examples/03.Analog/Calibration/Calibration.ino +++ b/build/shared/examples/03.Analog/Calibration/Calibration.ino @@ -12,8 +12,8 @@ maximum low and listen for anything higher as the new maximum. The circuit: - * Analog sensor (potentiometer will do) attached to analog input 0 - * LED attached from digital pin 9 to ground + - Analog sensor (potentiometer will do) attached to analog input 0 + - LED attached from digital pin 9 to ground created 29 Oct 2008 By David A Mellis diff --git a/build/shared/examples/03.Analog/Fading/Fading.ino b/build/shared/examples/03.Analog/Fading/Fading.ino index 578bb4881..b44db6a0c 100644 --- a/build/shared/examples/03.Analog/Fading/Fading.ino +++ b/build/shared/examples/03.Analog/Fading/Fading.ino @@ -4,7 +4,7 @@ This example shows how to fade an LED using the analogWrite() function. The circuit: - * LED attached from digital pin 9 to ground. + - LED attached from digital pin 9 to ground. Created 1 Nov 2008 By David A. Mellis diff --git a/build/shared/examples/03.Analog/Smoothing/Smoothing.ino b/build/shared/examples/03.Analog/Smoothing/Smoothing.ino index 131a21c7d..7036314d2 100644 --- a/build/shared/examples/03.Analog/Smoothing/Smoothing.ino +++ b/build/shared/examples/03.Analog/Smoothing/Smoothing.ino @@ -7,7 +7,7 @@ continually averages them. The circuit: - * Analog sensor (potentiometer will do) attached to analog input 0 + - Analog sensor (potentiometer will do) attached to analog input 0 Created 22 April 2007 By David A. Mellis diff --git a/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino b/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino index fbdd6fbce..9cd61fe24 100644 --- a/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino +++ b/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino @@ -2,8 +2,8 @@ ASCII table Prints out byte values in all possible formats: - * as raw binary values - * as ASCII-encoded decimal, hex, octal, and binary values + - as raw binary values + - as ASCII-encoded decimal, hex, octal, and binary values For more on ASCII, see http://www.asciitable.com and http://en.wikipedia.org/wiki/ASCII diff --git a/build/shared/examples/04.Communication/Midi/Midi.ino b/build/shared/examples/04.Communication/Midi/Midi.ino index 5f796d681..635364235 100644 --- a/build/shared/examples/04.Communication/Midi/Midi.ino +++ b/build/shared/examples/04.Communication/Midi/Midi.ino @@ -7,9 +7,9 @@ The circuit: - * digital in 1 connected to MIDI jack pin 5 - * MIDI jack pin 2 connected to ground - * MIDI jack pin 4 connected to +5V through 220-ohm resistor + - digital in 1 connected to MIDI jack pin 5 + - MIDI jack pin 2 connected to ground + - MIDI jack pin 4 connected to +5V through 220-ohm resistor Attach a MIDI cable to the jack, then to a MIDI synth, and play music. created 13 Jun 2006 diff --git a/build/shared/examples/04.Communication/MultiSerial/MultiSerial.ino b/build/shared/examples/04.Communication/MultiSerial/MultiSerial.ino index 8d3bc582e..7c6f52415 100644 --- a/build/shared/examples/04.Communication/MultiSerial/MultiSerial.ino +++ b/build/shared/examples/04.Communication/MultiSerial/MultiSerial.ino @@ -7,8 +7,8 @@ This example works only with boards with more than one serial like Arduino Mega, Due, Zero etc The circuit: - * Any serial device attached to Serial port 1 - * Serial monitor open on Serial port 0: + - Any serial device attached to Serial port 1 + - Serial monitor open on Serial port 0: created 30 Dec. 2008 modified 20 May 2012 diff --git a/build/shared/examples/04.Communication/PhysicalPixel/PhysicalPixel.ino b/build/shared/examples/04.Communication/PhysicalPixel/PhysicalPixel.ino index cdd223a75..cf81f582c 100644 --- a/build/shared/examples/04.Communication/PhysicalPixel/PhysicalPixel.ino +++ b/build/shared/examples/04.Communication/PhysicalPixel/PhysicalPixel.ino @@ -11,7 +11,7 @@ proxy), PD, or Max/MSP. The circuit: - * LED connected from digital pin 13 to ground + - LED connected from digital pin 13 to ground created 2006 by David A. Mellis diff --git a/build/shared/examples/04.Communication/ReadASCIIString/ReadASCIIString.ino b/build/shared/examples/04.Communication/ReadASCIIString/ReadASCIIString.ino index 513f515ae..18c5aaf5a 100644 --- a/build/shared/examples/04.Communication/ReadASCIIString/ReadASCIIString.ino +++ b/build/shared/examples/04.Communication/ReadASCIIString/ReadASCIIString.ino @@ -6,10 +6,10 @@ It parses them into ints, and uses those to fade an RGB LED. Circuit: Common-Cathode RGB LED wired like so: - * Red anode: digital pin 3 - * Green anode: digital pin 5 - * Blue anode: digital pin 6 - * Cathode : GND + - Red anode: digital pin 3 + - Green anode: digital pin 5 + - Blue anode: digital pin 6 + - Cathode : GND created 13 Apr 2012 by Tom Igoe diff --git a/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino index 44ec3dc51..5aa1b3320 100644 --- a/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino +++ b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino @@ -10,8 +10,8 @@ Thanks to Greg Shakar and Scott Fitzgerald for the improvements The circuit: - * potentiometers attached to analog inputs 0 and 1 - * pushbutton attached to digital I/O 2 + - potentiometers attached to analog inputs 0 and 1 + - pushbutton attached to digital I/O 2 Created 26 Sept. 2005 by Tom Igoe diff --git a/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino index 7d3c3466a..b44c908c5 100644 --- a/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino +++ b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino @@ -12,8 +12,8 @@ Thanks to Greg Shakar and Scott Fitzgerald for the improvements The circuit: - * potentiometers attached to analog inputs 0 and 1 - * pushbutton attached to digital I/O 2 + - potentiometers attached to analog inputs 0 and 1 + - pushbutton attached to digital I/O 2 diff --git a/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino b/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino index ba23b299a..890dcc1f5 100644 --- a/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino +++ b/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino @@ -4,7 +4,7 @@ take those three values and use them to change the background color of the screen. The circuit: - * potentiometers attached to analog inputs 0, 1, and 2 + - potentiometers attached to analog inputs 0, 1, and 2 http://www.arduino.cc/en/Tutorial/VirtualColorMixer diff --git a/build/shared/examples/05.Control/Arrays/Arrays.ino b/build/shared/examples/05.Control/Arrays/Arrays.ino index 3406a1828..d17e02fe4 100644 --- a/build/shared/examples/05.Control/Arrays/Arrays.ino +++ b/build/shared/examples/05.Control/Arrays/Arrays.ino @@ -9,7 +9,7 @@ contiguous, here the pins can be in any random order. The circuit: - * LEDs from pins 2 through 7 to ground + - LEDs from pins 2 through 7 to ground created 2006 by David A. Mellis diff --git a/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.ino b/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.ino index 0aa922b24..66b662b23 100644 --- a/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.ino +++ b/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.ino @@ -5,7 +5,7 @@ Lights multiple LEDs in sequence, then in reverse. The circuit: - * LEDs from pins 2 through 7 to ground + - LEDs from pins 2 through 7 to ground created 2006 by David A. Mellis diff --git a/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino index 0842d3747..38dea2da2 100644 --- a/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino +++ b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino @@ -7,12 +7,12 @@ regardless of the level. The circuit: - * potentiometer connected to analog pin 0. + - potentiometer connected to analog pin 0. Center pin of the potentiometer goes to the analog pin. side pins of the potentiometer go to +5V and ground - * LED connected from digital pin 13 to ground + - LED connected from digital pin 13 to ground - * Note: On most Arduino boards, there is already an LED on the board + - Note: On most Arduino boards, there is already an LED on the board connected to pin 13, so you don't need any extra components for this example. created 17 Jan 2009 diff --git a/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino b/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino index bb5ff7b89..df1f2063e 100644 --- a/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino +++ b/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino @@ -10,11 +10,11 @@ This is a variation on the calibrate example. The circuit: - * photoresistor connected from +5V to analog in pin 0 - * 10K resistor connected from ground to analog in pin 0 - * LED connected from digital pin 9 to ground through 220 ohm resistor - * pushbutton attached from pin 2 to +5V - * 10K resistor attached from pin 2 to ground + - photoresistor connected from +5V to analog in pin 0 + - 10K resistor connected from ground to analog in pin 0 + - LED connected from digital pin 9 to ground through 220 ohm resistor + - pushbutton attached from pin 2 to +5V + - 10K resistor attached from pin 2 to ground created 17 Jan 2009 modified 30 Aug 2011 diff --git a/build/shared/examples/05.Control/switchCase/switchCase.ino b/build/shared/examples/05.Control/switchCase/switchCase.ino index 2ac47d6f4..a1b32343d 100644 --- a/build/shared/examples/05.Control/switchCase/switchCase.ino +++ b/build/shared/examples/05.Control/switchCase/switchCase.ino @@ -10,8 +10,8 @@ over the sensor. The circuit: - * photoresistor from analog in 0 to +5V - * 10K resistor from analog in 0 to ground + - photoresistor from analog in 0 to +5V + - 10K resistor from analog in 0 to ground created 1 Jul 2009 modified 9 Apr 2012 diff --git a/build/shared/examples/05.Control/switchCase2/switchCase2.ino b/build/shared/examples/05.Control/switchCase2/switchCase2.ino index f52d8bdc1..287615344 100644 --- a/build/shared/examples/05.Control/switchCase2/switchCase2.ino +++ b/build/shared/examples/05.Control/switchCase2/switchCase2.ino @@ -10,7 +10,7 @@ the LEDs off. The circuit: - * 5 LEDs attached to digital pins 2 through 6 through 220-ohm resistors + - 5 LEDs attached to digital pins 2 through 6 through 220-ohm resistors created 1 Jul 2009 by Tom Igoe diff --git a/build/shared/examples/06.Sensors/Knock/Knock.ino b/build/shared/examples/06.Sensors/Knock/Knock.ino index e47c58426..912377d6b 100644 --- a/build/shared/examples/06.Sensors/Knock/Knock.ino +++ b/build/shared/examples/06.Sensors/Knock/Knock.ino @@ -6,9 +6,9 @@ "knock" to the serial port, and toggles the LED on pin 13. The circuit: - * + connection of the piezo attached to analog in 0 - * - connection of the piezo attached to ground - * 1-megohm resistor attached from analog in 0 to ground + - + connection of the piezo attached to analog in 0 + - - connection of the piezo attached to ground + - 1-megohm resistor attached from analog in 0 to ground http://www.arduino.cc/en/Tutorial/Knock diff --git a/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.ino b/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.ino index 61091756e..8f0d2d2ca 100644 --- a/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.ino +++ b/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.ino @@ -7,10 +7,10 @@ computer. The circuit: - * X output of accelerometer to digital pin 2 - * Y output of accelerometer to digital pin 3 - * +V of accelerometer to +5V - * GND of accelerometer to ground + - X output of accelerometer to digital pin 2 + - Y output of accelerometer to digital pin 3 + - +V of accelerometer to +5V + - GND of accelerometer to ground http://www.arduino.cc/en/Tutorial/Memsic2125 diff --git a/build/shared/examples/06.Sensors/Ping/Ping.ino b/build/shared/examples/06.Sensors/Ping/Ping.ino index ab0cb899c..afe49bd06 100644 --- a/build/shared/examples/06.Sensors/Ping/Ping.ino +++ b/build/shared/examples/06.Sensors/Ping/Ping.ino @@ -7,9 +7,9 @@ the distance of the object from the sensor. The circuit: - * +V connection of the PING))) attached to +5V - * GND connection of the PING))) attached to ground - * SIG connection of the PING))) attached to digital pin 7 + - +V connection of the PING))) attached to +5V + - GND connection of the PING))) attached to ground + - SIG connection of the PING))) attached to digital pin 7 http://www.arduino.cc/en/Tutorial/Ping diff --git a/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.ino b/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.ino index 21d4d12f2..c7c951379 100644 --- a/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.ino +++ b/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.ino @@ -20,11 +20,11 @@ Pin numbers: Matrix: - * Digital pins 2 through 13, - * analog pins 2 through 5 used as digital 16 through 19 + - Digital pins 2 through 13, + - analog pins 2 through 5 used as digital 16 through 19 Potentiometers: - * center pins are attached to analog pins 0 and 1, respectively - * side pins attached to +5V and ground, respectively. + - center pins are attached to analog pins 0 and 1, respectively + - side pins attached to +5V and ground, respectively. This example code is in the public domain. diff --git a/build/shared/examples/07.Display/barGraph/barGraph.ino b/build/shared/examples/07.Display/barGraph/barGraph.ino index 3f7d5847e..72c329bfd 100644 --- a/build/shared/examples/07.Display/barGraph/barGraph.ino +++ b/build/shared/examples/07.Display/barGraph/barGraph.ino @@ -10,7 +10,7 @@ depends on an analog input. The circuit: - * LEDs from pins 2 through 11 to ground + - LEDs from pins 2 through 11 to ground created 4 Sep 2010 by Tom Igoe diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.ino b/build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.ino index 621644b2c..8ee2a08f0 100644 --- a/build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.ino +++ b/build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.ino @@ -13,8 +13,8 @@ To wake: Spacebar. Circuit: - * Arduino Leonardo or Micro - * wire to connect D2 to ground. + - Arduino Leonardo or Micro + - wire to connect D2 to ground. created 6 Mar 2012 modified 27 Mar 2012 diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardMessage/KeyboardMessage.ino b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/KeyboardMessage.ino index 87a0f0383..b848aa3d0 100644 --- a/build/shared/examples/09.USB/Keyboard/KeyboardMessage/KeyboardMessage.ino +++ b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/KeyboardMessage.ino @@ -6,8 +6,8 @@ Sends a text string when a button is pressed. The circuit: - * pushbutton attached from pin 4 to +5V - * 10-kilohm resistor attached from pin 4 to ground + - pushbutton attached from pin 4 to +5V + - 10-kilohm resistor attached from pin 4 to ground created 24 Oct 2011 modified 27 Mar 2012 diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.ino b/build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.ino index ce96ed549..e49ac1a53 100644 --- a/build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.ino +++ b/build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.ino @@ -13,8 +13,8 @@ a final key combination (CTRL-U). Circuit: - * Arduino Leonardo, Micro, Due, LilyPad USB, or Yún - * wire to connect D2 to ground. + - Arduino Leonardo, Micro, Due, LilyPad USB, or Yún + - wire to connect D2 to ground. created 5 Mar 2012 modified 29 Mar 2012 diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.ino b/build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.ino index 7f47a954d..6fa798a2b 100644 --- a/build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.ino +++ b/build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.ino @@ -8,7 +8,7 @@ if you send a, you get b, send A you get B, and so forth. The circuit: - * none + - none created 21 Oct 2011 modified 27 Mar 2012 diff --git a/build/shared/examples/09.USB/KeyboardAndMouseControl/KeyboardAndMouseControl.ino b/build/shared/examples/09.USB/KeyboardAndMouseControl/KeyboardAndMouseControl.ino index 67cfd7af9..78e1417d6 100644 --- a/build/shared/examples/09.USB/KeyboardAndMouseControl/KeyboardAndMouseControl.ino +++ b/build/shared/examples/09.USB/KeyboardAndMouseControl/KeyboardAndMouseControl.ino @@ -5,7 +5,7 @@ Controls the mouse from five pushbuttons on an Arduino Leonardo, Micro or Due. Hardware: - * 5 pushbuttons attached to D2, D3, D4, D5, D6 + - 5 pushbuttons attached to D2, D3, D4, D5, D6 The mouse movement is always relative. This sketch reads four pushbuttons, and uses them to set the movement of the mouse. diff --git a/build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.ino b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.ino index 3b6eef75b..4164f17b5 100644 --- a/build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.ino +++ b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.ino @@ -7,7 +7,7 @@ Controls the mouse from five pushbuttons on an Arduino Leonardo, Micro or Due. Hardware: - * 5 pushbuttons attached to D2, D3, D4, D5, D6 + - 5 pushbuttons attached to D2, D3, D4, D5, D6 The mouse movement is always relative. This sketch reads diff --git a/build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.ino b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.ino index a836655e2..28b3d4f88 100644 --- a/build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.ino +++ b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.ino @@ -6,8 +6,8 @@ a second pushbutton to click the left mouse button Hardware: - * 2-axis joystick connected to pins A0 and A1 - * pushbuttons connected to pin D2 and D3 + - 2-axis joystick connected to pins A0 and A1 + - pushbuttons connected to pin D2 and D3 The mouse movement is always relative. This sketch reads two analog inputs that range from 0 to 1023 (or less on either end)