Skip to content

Links in comment update #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/01.Basics/AnalogReadSerial/AnalogReadSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/AnalogReadSerial
https://docs.arduino.cc/built-in-examples/basics/AnalogReadSerial/
*/

// the setup routine runs once when you press reset:
Expand Down
4 changes: 2 additions & 2 deletions examples/01.Basics/Blink/Blink.ino
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
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 the Technical Specs of your board at:
https://www.arduino.cc/en/Main/Products
https://docs.arduino.cc/hardware/

modified 8 May 2014
by Scott Fitzgerald
Expand All @@ -19,7 +19,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Blink
https://docs.arduino.cc/built-in-examples/basics/Blink/
*/

// the setup function runs once when you press reset or power the board
Expand Down
2 changes: 1 addition & 1 deletion examples/01.Basics/DigitalReadSerial/DigitalReadSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/DigitalReadSerial
https://docs.arduino.cc/built-in-examples/basics/DigitalReadSerial/
*/

// digital pin 2 has a pushbutton attached to it. Give it a name:
Expand Down
2 changes: 1 addition & 1 deletion examples/01.Basics/Fade/Fade.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Fade
https://docs.arduino.cc/built-in-examples/basics/Fade/
*/

int led = 9; // the PWM pin the LED is attached to
Expand Down
2 changes: 1 addition & 1 deletion examples/01.Basics/ReadAnalogVoltage/ReadAnalogVoltage.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/ReadAnalogVoltage
https://docs.arduino.cc/built-in-examples/basics/ReadAnalogVoltage/
*/

// the setup routine runs once when you press reset:
Expand Down
4 changes: 2 additions & 2 deletions examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
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 the Technical Specs of your board at:
https://www.arduino.cc/en/Main/Products
https://docs.arduino.cc/hardware/

created 2005
by David A. Mellis
Expand All @@ -25,7 +25,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/BlinkWithoutDelay
https://docs.arduino.cc/built-in-examples/digital/BlinkWithoutDelay/
*/

// constants won't change. Used here to set a pin number:
Expand Down
2 changes: 1 addition & 1 deletion examples/02.Digital/Button/Button.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Button
https://docs.arduino.cc/built-in-examples/digital/Button/
*/

// constants won't change. They're used here to set pin numbers:
Expand Down
2 changes: 1 addition & 1 deletion examples/02.Digital/Debounce/Debounce.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Debounce
https://docs.arduino.cc/built-in-examples/digital/Debounce/
*/

// constants won't change. They're used here to set pin numbers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/InputPullupSerial
https://docs.arduino.cc/built-in-examples/digital/InputPullupSerial/
*/

void setup() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/StateChangeDetection
https://docs.arduino.cc/built-in-examples/digital/StateChangeDetection/
*/

// this constant won't change:
Expand Down
2 changes: 1 addition & 1 deletion examples/02.Digital/toneKeyboard/toneKeyboard.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/toneKeyboard
https://docs.arduino.cc/built-in-examples/digital/toneKeyboard/
*/

#include "pitches.h"
Expand Down
2 changes: 1 addition & 1 deletion examples/02.Digital/toneMelody/toneMelody.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/toneMelody
https://docs.arduino.cc/built-in-examples/digital/toneMelody/
*/

#include "pitches.h"
Expand Down
2 changes: 1 addition & 1 deletion examples/02.Digital/toneMultiple/toneMultiple.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/toneMultiple
https://docs.arduino.cc/built-in-examples/digital/toneMultiple/
*/

void setup() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/tonePitchFollower
https://docs.arduino.cc/built-in-examples/digital/tonePitchFollower/
*/

void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/AnalogInOutSerial
https://docs.arduino.cc/built-in-examples/analog/AnalogInOutSerial/
*/

// These constants won't change. They're used to give names to the pins used:
Expand Down
2 changes: 1 addition & 1 deletion examples/03.Analog/AnalogInput/AnalogInput.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/AnalogInput
https://docs.arduino.cc/built-in-examples/analog/AnalogInput/
*/

int sensorPin = A0; // select the input pin for the potentiometer
Expand Down
2 changes: 1 addition & 1 deletion examples/03.Analog/AnalogWriteMega/AnalogWriteMega.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/AnalogWriteMega
https://docs.arduino.cc/built-in-examples/analog/AnalogWriteMega/
*/

// These constants won't change. They're used to give names to the pins used:
Expand Down
2 changes: 1 addition & 1 deletion examples/03.Analog/Calibration/Calibration.ino
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Calibration
https://docs.arduino.cc/built-in-examples/analog/Calibration/
*/

// These constants won't change:
Expand Down
2 changes: 1 addition & 1 deletion examples/03.Analog/Fading/Fading.ino
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Fading
https://docs.arduino.cc/built-in-examples/analog/Fading/
*/

int ledPin = 9; // LED connected to digital pin 9
Expand Down
2 changes: 1 addition & 1 deletion examples/03.Analog/Smoothing/Smoothing.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Smoothing
https://docs.arduino.cc/built-in-examples/analog/Smoothing/
*/

// Define the number of samples to keep track of. The higher the number, the
Expand Down
2 changes: 1 addition & 1 deletion examples/04.Communication/ASCIITable/ASCIITable.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/ASCIITable
https://docs.arduino.cc/built-in-examples/communication/ASCIITable/
*/

void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/04.Communication/Dimmer/Dimmer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Dimmer
https://docs.arduino.cc/built-in-examples/communication/Dimmer/
*/

const int ledPin = 9; // the pin that the LED is attached to
Expand Down
2 changes: 1 addition & 1 deletion examples/04.Communication/Graph/Graph.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Graph
https://docs.arduino.cc/built-in-examples/communication/Graph/
*/

void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/04.Communication/Midi/Midi.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Midi
https://docs.arduino.cc/built-in-examples/communication/Midi/
*/

void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/04.Communication/MultiSerial/MultiSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/MultiSerialMega
https://docs.arduino.cc/built-in-examples/communication/MultiSerialMega/
*/


Expand Down
2 changes: 1 addition & 1 deletion examples/04.Communication/PhysicalPixel/PhysicalPixel.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/PhysicalPixel
https://docs.arduino.cc/built-in-examples/communication/PhysicalPixel/
*/

const int ledPin = 13; // the pin that the LED is attached to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/ReadASCIIString
https://docs.arduino.cc/built-in-examples/communication/ReadASCIIString/
*/

// pins for the LEDs:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/SerialCallResponse
https://docs.arduino.cc/built-in-examples/communication/SerialCallResponse/
*/

int firstSensor = 0; // first analog sensor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/SerialCallResponseASCII
https://docs.arduino.cc/built-in-examples/communication/SerialCallResponseASCII/
*/

int firstSensor = 0; // first analog sensor
Expand Down
2 changes: 1 addition & 1 deletion examples/04.Communication/SerialEvent/SerialEvent.ino
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/SerialEvent
https://docs.arduino.cc/built-in-examples/communication/SerialEvent/
*/

String inputString = ""; // a String to hold incoming data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
created 23 May 2016
by Erik Nyquist

https://www.arduino.cc/en/Tutorial/BuiltInExamples/SerialPassthrough
https://docs.arduino.cc/built-in-examples/communication/SerialPassthrough/
*/

void setup() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/VirtualColorMixer
https://docs.arduino.cc/built-in-examples/communication/VirtualColorMixer/
*/

const int redPin = A0; // sensor to control red color
Expand Down
2 changes: 1 addition & 1 deletion examples/05.Control/Arrays/Arrays.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Arrays
https://docs.arduino.cc/built-in-examples/control-structures/Arrays/
*/

int timer = 100; // The higher the number, the slower the timing.
Expand Down
2 changes: 1 addition & 1 deletion examples/05.Control/ForLoopIteration/ForLoopIteration.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/ForLoopIteration
https://docs.arduino.cc/built-in-examples/control-structures/ForLoopIteration/
*/

int timer = 100; // The higher the number, the slower the timing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/ifStatementConditional
https://docs.arduino.cc/built-in-examples/control-structures/ifStatementConditional/
*/

// These constants won't change:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/WhileStatementConditional
https://docs.arduino.cc/built-in-examples/control-structures/WhileStatementConditional/
*/


Expand Down
2 changes: 1 addition & 1 deletion examples/05.Control/switchCase/switchCase.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/SwitchCase
https://docs.arduino.cc/built-in-examples/control-structures/SwitchCase/
*/

// these constants won't change. They are the lowest and highest readings you
Expand Down
2 changes: 1 addition & 1 deletion examples/05.Control/switchCase2/switchCase2.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/SwitchCase2
https://docs.arduino.cc/built-in-examples/control-structures/SwitchCase2/
*/

void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/06.Sensors/ADXL3xx/ADXL3xx.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/ADXL3xx
https://docs.arduino.cc/built-in-examples/sensors/ADXL3xx/
*/

// these constants describe the pins. They won't change:
Expand Down
2 changes: 1 addition & 1 deletion examples/06.Sensors/Knock/Knock.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Knock
https://docs.arduino.cc/built-in-examples/sensors/Knock/
*/


Expand Down
2 changes: 1 addition & 1 deletion examples/06.Sensors/Memsic2125/Memsic2125.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Memsic2125
https://docs.arduino.cc/built-in-examples/sensors/Memsic2125/
*/

// these constants won't change:
Expand Down
2 changes: 1 addition & 1 deletion examples/06.Sensors/Ping/Ping.ino
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

This example code is in the public domain.

https://www.arduino.cc/en/Tutorial/BuiltInExamples/Ping
https://docs.arduino.cc/built-in-examples/sensors/Ping/
*/

// this constant won't change. It's the pin number of the sensor's output:
Expand Down
Loading