diff --git a/build/shared/examples/01.Basics/AnalogReadSerial/AnalogReadSerial.txt b/build/shared/examples/01.Basics/AnalogReadSerial/AnalogReadSerial.txt new file mode 100644 index 000000000..95a731d56 --- /dev/null +++ b/build/shared/examples/01.Basics/AnalogReadSerial/AnalogReadSerial.txt @@ -0,0 +1 @@ +Read a potentiometer, print its state out to the Arduino Serial Monitor. \ No newline at end of file diff --git a/build/shared/examples/01.Basics/AnalogReadSerial/layout.png b/build/shared/examples/01.Basics/AnalogReadSerial/layout.png new file mode 100644 index 000000000..89df38dc0 Binary files /dev/null and b/build/shared/examples/01.Basics/AnalogReadSerial/layout.png differ diff --git a/build/shared/examples/01.Basics/AnalogReadSerial/schematic.png b/build/shared/examples/01.Basics/AnalogReadSerial/schematic.png new file mode 100644 index 000000000..2529acd32 Binary files /dev/null and b/build/shared/examples/01.Basics/AnalogReadSerial/schematic.png differ diff --git a/build/shared/examples/01.Basics/BareMinimum/BareMinimum.txt b/build/shared/examples/01.Basics/BareMinimum/BareMinimum.txt new file mode 100644 index 000000000..522b5cd5e --- /dev/null +++ b/build/shared/examples/01.Basics/BareMinimum/BareMinimum.txt @@ -0,0 +1 @@ +The bare minimum of code needed to start an Arduino sketch. \ No newline at end of file diff --git a/build/shared/examples/01.Basics/Blink/Blink.txt b/build/shared/examples/01.Basics/Blink/Blink.txt new file mode 100644 index 000000000..06263345d --- /dev/null +++ b/build/shared/examples/01.Basics/Blink/Blink.txt @@ -0,0 +1 @@ +Turn an LED on and off. \ No newline at end of file diff --git a/build/shared/examples/01.Basics/DigitalReadSerial/DigitalReadSerial.txt b/build/shared/examples/01.Basics/DigitalReadSerial/DigitalReadSerial.txt new file mode 100644 index 000000000..a330ffe01 --- /dev/null +++ b/build/shared/examples/01.Basics/DigitalReadSerial/DigitalReadSerial.txt @@ -0,0 +1 @@ +Read a switch, print the state out to the Arduino Serial Monitor. \ No newline at end of file diff --git a/build/shared/examples/01.Basics/DigitalReadSerial/layout.png b/build/shared/examples/01.Basics/DigitalReadSerial/layout.png new file mode 100644 index 000000000..1a312f2f0 Binary files /dev/null and b/build/shared/examples/01.Basics/DigitalReadSerial/layout.png differ diff --git a/build/shared/examples/01.Basics/DigitalReadSerial/schematic.png b/build/shared/examples/01.Basics/DigitalReadSerial/schematic.png new file mode 100644 index 000000000..3d05fe903 Binary files /dev/null and b/build/shared/examples/01.Basics/DigitalReadSerial/schematic.png differ diff --git a/build/shared/examples/01.Basics/Fade/Fade.txt b/build/shared/examples/01.Basics/Fade/Fade.txt new file mode 100644 index 000000000..32d4d2890 --- /dev/null +++ b/build/shared/examples/01.Basics/Fade/Fade.txt @@ -0,0 +1 @@ +Demonstrates the use of analog output to fade an LED. \ No newline at end of file diff --git a/build/shared/examples/01.Basics/Fade/layout.png b/build/shared/examples/01.Basics/Fade/layout.png new file mode 100644 index 000000000..5a6db3e35 Binary files /dev/null and b/build/shared/examples/01.Basics/Fade/layout.png differ diff --git a/build/shared/examples/01.Basics/Fade/schematic.png b/build/shared/examples/01.Basics/Fade/schematic.png new file mode 100644 index 000000000..6dd229492 Binary files /dev/null and b/build/shared/examples/01.Basics/Fade/schematic.png differ diff --git a/build/shared/examples/01.Basics/ReadAnalogVoltage/ReadAnalogVoltage.txt b/build/shared/examples/01.Basics/ReadAnalogVoltage/ReadAnalogVoltage.txt new file mode 100644 index 000000000..d71a63d6a --- /dev/null +++ b/build/shared/examples/01.Basics/ReadAnalogVoltage/ReadAnalogVoltage.txt @@ -0,0 +1 @@ +Reads an analog input and prints the voltage to the serial monitor. \ No newline at end of file diff --git a/build/shared/examples/01.Basics/ReadAnalogVoltage/layout.png b/build/shared/examples/01.Basics/ReadAnalogVoltage/layout.png new file mode 100644 index 000000000..89df38dc0 Binary files /dev/null and b/build/shared/examples/01.Basics/ReadAnalogVoltage/layout.png differ diff --git a/build/shared/examples/01.Basics/ReadAnalogVoltage/schematic.png b/build/shared/examples/01.Basics/ReadAnalogVoltage/schematic.png new file mode 100644 index 000000000..2529acd32 Binary files /dev/null and b/build/shared/examples/01.Basics/ReadAnalogVoltage/schematic.png differ diff --git a/build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.txt b/build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.txt new file mode 100644 index 000000000..569c6b6e3 --- /dev/null +++ b/build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.txt @@ -0,0 +1 @@ +Blinking an LED without using the delay() function. \ No newline at end of file diff --git a/build/shared/examples/02.Digital/BlinkWithoutDelay/layout.png b/build/shared/examples/02.Digital/BlinkWithoutDelay/layout.png new file mode 100644 index 000000000..b35c5436a Binary files /dev/null and b/build/shared/examples/02.Digital/BlinkWithoutDelay/layout.png differ diff --git a/build/shared/examples/02.Digital/BlinkWithoutDelay/schematic.png b/build/shared/examples/02.Digital/BlinkWithoutDelay/schematic.png new file mode 100644 index 000000000..ad7848d19 Binary files /dev/null and b/build/shared/examples/02.Digital/BlinkWithoutDelay/schematic.png differ diff --git a/build/shared/examples/02.Digital/Button/Button.txt b/build/shared/examples/02.Digital/Button/Button.txt new file mode 100644 index 000000000..c5b3123b5 --- /dev/null +++ b/build/shared/examples/02.Digital/Button/Button.txt @@ -0,0 +1 @@ +Use a pushbutton to control an LED. \ No newline at end of file diff --git a/build/shared/examples/02.Digital/Button/layout.png b/build/shared/examples/02.Digital/Button/layout.png new file mode 100644 index 000000000..1a312f2f0 Binary files /dev/null and b/build/shared/examples/02.Digital/Button/layout.png differ diff --git a/build/shared/examples/02.Digital/Button/schematic.png b/build/shared/examples/02.Digital/Button/schematic.png new file mode 100644 index 000000000..12964ff98 Binary files /dev/null and b/build/shared/examples/02.Digital/Button/schematic.png differ diff --git a/build/shared/examples/02.Digital/Debounce/Debounce.txt b/build/shared/examples/02.Digital/Debounce/Debounce.txt new file mode 100644 index 000000000..e6bd88044 --- /dev/null +++ b/build/shared/examples/02.Digital/Debounce/Debounce.txt @@ -0,0 +1 @@ +Read a pushbutton, filtering noise. \ No newline at end of file diff --git a/build/shared/examples/02.Digital/Debounce/button.png b/build/shared/examples/02.Digital/Debounce/button.png new file mode 100644 index 000000000..1a312f2f0 Binary files /dev/null and b/build/shared/examples/02.Digital/Debounce/button.png differ diff --git a/build/shared/examples/02.Digital/Debounce/schematic.png b/build/shared/examples/02.Digital/Debounce/schematic.png new file mode 100644 index 000000000..3d05fe903 Binary files /dev/null and b/build/shared/examples/02.Digital/Debounce/schematic.png differ diff --git a/build/shared/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.txt b/build/shared/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.txt new file mode 100644 index 000000000..170363b86 --- /dev/null +++ b/build/shared/examples/02.Digital/DigitalInputPullup/DigitalInputPullup.txt @@ -0,0 +1 @@ +Demonstrates the use of INPUT_PULLUP with pinMode(). \ No newline at end of file diff --git a/build/shared/examples/02.Digital/DigitalInputPullup/layout.png b/build/shared/examples/02.Digital/DigitalInputPullup/layout.png new file mode 100644 index 000000000..f057b8d95 Binary files /dev/null and b/build/shared/examples/02.Digital/DigitalInputPullup/layout.png differ diff --git a/build/shared/examples/02.Digital/DigitalInputPullup/schematic.png b/build/shared/examples/02.Digital/DigitalInputPullup/schematic.png new file mode 100644 index 000000000..22d0e2666 Binary files /dev/null and b/build/shared/examples/02.Digital/DigitalInputPullup/schematic.png differ diff --git a/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.txt b/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.txt new file mode 100644 index 000000000..7ec60fea8 --- /dev/null +++ b/build/shared/examples/02.Digital/StateChangeDetection/StateChangeDetection.txt @@ -0,0 +1 @@ +Counting the number of button pushes. \ No newline at end of file diff --git a/build/shared/examples/02.Digital/StateChangeDetection/layout.png b/build/shared/examples/02.Digital/StateChangeDetection/layout.png new file mode 100644 index 000000000..1a312f2f0 Binary files /dev/null and b/build/shared/examples/02.Digital/StateChangeDetection/layout.png differ diff --git a/build/shared/examples/02.Digital/StateChangeDetection/schematic.png b/build/shared/examples/02.Digital/StateChangeDetection/schematic.png new file mode 100644 index 000000000..3d05fe903 Binary files /dev/null and b/build/shared/examples/02.Digital/StateChangeDetection/schematic.png differ diff --git a/build/shared/examples/02.Digital/toneKeyboard/layout.png b/build/shared/examples/02.Digital/toneKeyboard/layout.png new file mode 100644 index 000000000..8be1d9f32 Binary files /dev/null and b/build/shared/examples/02.Digital/toneKeyboard/layout.png differ diff --git a/build/shared/examples/02.Digital/toneKeyboard/schematic.png b/build/shared/examples/02.Digital/toneKeyboard/schematic.png new file mode 100644 index 000000000..4aba04d49 Binary files /dev/null and b/build/shared/examples/02.Digital/toneKeyboard/schematic.png differ diff --git a/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.txt b/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.txt new file mode 100644 index 000000000..007ef7ba6 --- /dev/null +++ b/build/shared/examples/02.Digital/toneKeyboard/toneKeyboard.txt @@ -0,0 +1 @@ +A three-key musical keyboard using force sensors and a piezo speaker. \ No newline at end of file diff --git a/build/shared/examples/02.Digital/toneMelody/layout.png b/build/shared/examples/02.Digital/toneMelody/layout.png new file mode 100644 index 000000000..6e480b21c Binary files /dev/null and b/build/shared/examples/02.Digital/toneMelody/layout.png differ diff --git a/build/shared/examples/02.Digital/toneMelody/schematic.png b/build/shared/examples/02.Digital/toneMelody/schematic.png new file mode 100644 index 000000000..5baf5c6e6 Binary files /dev/null and b/build/shared/examples/02.Digital/toneMelody/schematic.png differ diff --git a/build/shared/examples/02.Digital/toneMelody/toneMelody.txt b/build/shared/examples/02.Digital/toneMelody/toneMelody.txt new file mode 100644 index 000000000..10aea41d6 --- /dev/null +++ b/build/shared/examples/02.Digital/toneMelody/toneMelody.txt @@ -0,0 +1 @@ +Play a melody with a Piezo speaker. \ No newline at end of file diff --git a/build/shared/examples/02.Digital/toneMultiple/layout.png b/build/shared/examples/02.Digital/toneMultiple/layout.png new file mode 100644 index 000000000..f64fe205d Binary files /dev/null and b/build/shared/examples/02.Digital/toneMultiple/layout.png differ diff --git a/build/shared/examples/02.Digital/toneMultiple/schematic.png b/build/shared/examples/02.Digital/toneMultiple/schematic.png new file mode 100644 index 000000000..b4fc8ab20 Binary files /dev/null and b/build/shared/examples/02.Digital/toneMultiple/schematic.png differ diff --git a/build/shared/examples/02.Digital/toneMultiple/toneMultiple.txt b/build/shared/examples/02.Digital/toneMultiple/toneMultiple.txt new file mode 100644 index 000000000..b94bb85a3 --- /dev/null +++ b/build/shared/examples/02.Digital/toneMultiple/toneMultiple.txt @@ -0,0 +1 @@ +Play tones on multiple speakers sequentially using the tone() command. \ No newline at end of file diff --git a/build/shared/examples/02.Digital/tonePitchFollower/layout.png b/build/shared/examples/02.Digital/tonePitchFollower/layout.png new file mode 100644 index 000000000..45d11b833 Binary files /dev/null and b/build/shared/examples/02.Digital/tonePitchFollower/layout.png differ diff --git a/build/shared/examples/02.Digital/tonePitchFollower/schematic.png b/build/shared/examples/02.Digital/tonePitchFollower/schematic.png new file mode 100644 index 000000000..1ba83cdc6 Binary files /dev/null and b/build/shared/examples/02.Digital/tonePitchFollower/schematic.png differ diff --git a/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.txt b/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.txt new file mode 100644 index 000000000..7899464b8 --- /dev/null +++ b/build/shared/examples/02.Digital/tonePitchFollower/tonePitchFollower.txt @@ -0,0 +1 @@ +Play a pitch on a piezo speaker depending on an analog input. \ No newline at end of file diff --git a/build/shared/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.txt b/build/shared/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.txt new file mode 100644 index 000000000..445119a4a --- /dev/null +++ b/build/shared/examples/03.Analog/AnalogInOutSerial/AnalogInOutSerial.txt @@ -0,0 +1 @@ +Read an analog input pin, map the result, and then use that data to dim or brighten an LED. \ No newline at end of file diff --git a/build/shared/examples/03.Analog/AnalogInOutSerial/layout.png b/build/shared/examples/03.Analog/AnalogInOutSerial/layout.png new file mode 100644 index 000000000..6aa3d2044 Binary files /dev/null and b/build/shared/examples/03.Analog/AnalogInOutSerial/layout.png differ diff --git a/build/shared/examples/03.Analog/AnalogInOutSerial/schematic.png b/build/shared/examples/03.Analog/AnalogInOutSerial/schematic.png new file mode 100644 index 000000000..e93207079 Binary files /dev/null and b/build/shared/examples/03.Analog/AnalogInOutSerial/schematic.png differ diff --git a/build/shared/examples/03.Analog/AnalogInput/AnalogInput.txt b/build/shared/examples/03.Analog/AnalogInput/AnalogInput.txt new file mode 100644 index 000000000..3f681a52e --- /dev/null +++ b/build/shared/examples/03.Analog/AnalogInput/AnalogInput.txt @@ -0,0 +1 @@ +Use a potentiometer to control the blinking of an LED. \ No newline at end of file diff --git a/build/shared/examples/03.Analog/AnalogInput/layout.png b/build/shared/examples/03.Analog/AnalogInput/layout.png new file mode 100644 index 000000000..8486b2afc Binary files /dev/null and b/build/shared/examples/03.Analog/AnalogInput/layout.png differ diff --git a/build/shared/examples/03.Analog/AnalogInput/schematic.png b/build/shared/examples/03.Analog/AnalogInput/schematic.png new file mode 100644 index 000000000..2529acd32 Binary files /dev/null and b/build/shared/examples/03.Analog/AnalogInput/schematic.png differ diff --git a/build/shared/examples/03.Analog/AnalogWriteMega/AnalogWriteMega.txt b/build/shared/examples/03.Analog/AnalogWriteMega/AnalogWriteMega.txt new file mode 100644 index 000000000..9fc0e2af4 --- /dev/null +++ b/build/shared/examples/03.Analog/AnalogWriteMega/AnalogWriteMega.txt @@ -0,0 +1 @@ +Fade 12 LEDs on and off, one by one, using an Arduino Mega board. \ No newline at end of file diff --git a/build/shared/examples/03.Analog/AnalogWriteMega/layout.png b/build/shared/examples/03.Analog/AnalogWriteMega/layout.png new file mode 100644 index 000000000..f1a92a477 Binary files /dev/null and b/build/shared/examples/03.Analog/AnalogWriteMega/layout.png differ diff --git a/build/shared/examples/03.Analog/AnalogWriteMega/schematic.png b/build/shared/examples/03.Analog/AnalogWriteMega/schematic.png new file mode 100644 index 000000000..2f0fa28f5 Binary files /dev/null and b/build/shared/examples/03.Analog/AnalogWriteMega/schematic.png differ diff --git a/build/shared/examples/03.Analog/Calibration/Calibration.txt b/build/shared/examples/03.Analog/Calibration/Calibration.txt new file mode 100644 index 000000000..dcdeb7100 --- /dev/null +++ b/build/shared/examples/03.Analog/Calibration/Calibration.txt @@ -0,0 +1 @@ +Define a maximum and minimum for expected analog sensor values. \ No newline at end of file diff --git a/build/shared/examples/03.Analog/Calibration/layout.png b/build/shared/examples/03.Analog/Calibration/layout.png new file mode 100644 index 000000000..2e6cb4276 Binary files /dev/null and b/build/shared/examples/03.Analog/Calibration/layout.png differ diff --git a/build/shared/examples/03.Analog/Calibration/schematic.png b/build/shared/examples/03.Analog/Calibration/schematic.png new file mode 100644 index 000000000..915668438 Binary files /dev/null and b/build/shared/examples/03.Analog/Calibration/schematic.png differ diff --git a/build/shared/examples/03.Analog/Fading/Fading.txt b/build/shared/examples/03.Analog/Fading/Fading.txt new file mode 100644 index 000000000..4f7998584 --- /dev/null +++ b/build/shared/examples/03.Analog/Fading/Fading.txt @@ -0,0 +1 @@ +Use an analog output (PWM pin) to fade an LED. \ No newline at end of file diff --git a/build/shared/examples/03.Analog/Fading/layout.png b/build/shared/examples/03.Analog/Fading/layout.png new file mode 100644 index 000000000..e1330feaf Binary files /dev/null and b/build/shared/examples/03.Analog/Fading/layout.png differ diff --git a/build/shared/examples/03.Analog/Fading/schematic.png b/build/shared/examples/03.Analog/Fading/schematic.png new file mode 100644 index 000000000..a89de3733 Binary files /dev/null and b/build/shared/examples/03.Analog/Fading/schematic.png differ diff --git a/build/shared/examples/03.Analog/Smoothing/Smoothing.txt b/build/shared/examples/03.Analog/Smoothing/Smoothing.txt new file mode 100644 index 000000000..64c82a05f --- /dev/null +++ b/build/shared/examples/03.Analog/Smoothing/Smoothing.txt @@ -0,0 +1 @@ +Smooth multiple readings of an analog input. \ No newline at end of file diff --git a/build/shared/examples/03.Analog/Smoothing/layout.png b/build/shared/examples/03.Analog/Smoothing/layout.png new file mode 100644 index 000000000..8486b2afc Binary files /dev/null and b/build/shared/examples/03.Analog/Smoothing/layout.png differ diff --git a/build/shared/examples/03.Analog/Smoothing/schematic.png b/build/shared/examples/03.Analog/Smoothing/schematic.png new file mode 100644 index 000000000..2529acd32 Binary files /dev/null and b/build/shared/examples/03.Analog/Smoothing/schematic.png differ diff --git a/build/shared/examples/04.Communication/ASCIITable/ASCIITable.txt b/build/shared/examples/04.Communication/ASCIITable/ASCIITable.txt new file mode 100644 index 000000000..dc492ef13 --- /dev/null +++ b/build/shared/examples/04.Communication/ASCIITable/ASCIITable.txt @@ -0,0 +1 @@ +Demonstrates Arduino's advanced serial output functions. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/Dimmer/Dimmer.txt b/build/shared/examples/04.Communication/Dimmer/Dimmer.txt new file mode 100644 index 000000000..c71de2bb3 --- /dev/null +++ b/build/shared/examples/04.Communication/Dimmer/Dimmer.txt @@ -0,0 +1 @@ +Move the mouse to change the brightness of an LED. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/Dimmer/layout.png b/build/shared/examples/04.Communication/Dimmer/layout.png new file mode 100644 index 000000000..e1330feaf Binary files /dev/null and b/build/shared/examples/04.Communication/Dimmer/layout.png differ diff --git a/build/shared/examples/04.Communication/Dimmer/schematic.png b/build/shared/examples/04.Communication/Dimmer/schematic.png new file mode 100644 index 000000000..6dd229492 Binary files /dev/null and b/build/shared/examples/04.Communication/Dimmer/schematic.png differ diff --git a/build/shared/examples/04.Communication/Graph/Graph.txt b/build/shared/examples/04.Communication/Graph/Graph.txt new file mode 100644 index 000000000..9ca77a31a --- /dev/null +++ b/build/shared/examples/04.Communication/Graph/Graph.txt @@ -0,0 +1 @@ +Send data to the computer and graph it in Processing. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/Graph/layout.png b/build/shared/examples/04.Communication/Graph/layout.png new file mode 100644 index 000000000..8486b2afc Binary files /dev/null and b/build/shared/examples/04.Communication/Graph/layout.png differ diff --git a/build/shared/examples/04.Communication/Graph/schematic.png b/build/shared/examples/04.Communication/Graph/schematic.png new file mode 100644 index 000000000..2529acd32 Binary files /dev/null and b/build/shared/examples/04.Communication/Graph/schematic.png differ diff --git a/build/shared/examples/04.Communication/Midi/MIDI.txt b/build/shared/examples/04.Communication/Midi/MIDI.txt new file mode 100644 index 000000000..6c4bb5e66 --- /dev/null +++ b/build/shared/examples/04.Communication/Midi/MIDI.txt @@ -0,0 +1 @@ +Send MIDI note messages serially. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/Midi/layout.png b/build/shared/examples/04.Communication/Midi/layout.png new file mode 100644 index 000000000..5fa9bd5f6 Binary files /dev/null and b/build/shared/examples/04.Communication/Midi/layout.png differ diff --git a/build/shared/examples/04.Communication/Midi/schematic.png b/build/shared/examples/04.Communication/Midi/schematic.png new file mode 100644 index 000000000..aebd8b28b Binary files /dev/null and b/build/shared/examples/04.Communication/Midi/schematic.png differ diff --git a/build/shared/examples/04.Communication/MultiSerialMega/MultiSerialMega.txt b/build/shared/examples/04.Communication/MultiSerialMega/MultiSerialMega.txt new file mode 100644 index 000000000..3383c9026 --- /dev/null +++ b/build/shared/examples/04.Communication/MultiSerialMega/MultiSerialMega.txt @@ -0,0 +1 @@ +Use two of the serial ports available on the Arduino Mega. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/PhysicalPixel/PhysicalPixel.txt b/build/shared/examples/04.Communication/PhysicalPixel/PhysicalPixel.txt new file mode 100644 index 000000000..ad6c2991e --- /dev/null +++ b/build/shared/examples/04.Communication/PhysicalPixel/PhysicalPixel.txt @@ -0,0 +1 @@ +Turn a LED on and off by sending data to your Arduino from Processing or Max/MSP. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/PhysicalPixel/layout.png b/build/shared/examples/04.Communication/PhysicalPixel/layout.png new file mode 100644 index 000000000..b35c5436a Binary files /dev/null and b/build/shared/examples/04.Communication/PhysicalPixel/layout.png differ diff --git a/build/shared/examples/04.Communication/PhysicalPixel/schematic.png b/build/shared/examples/04.Communication/PhysicalPixel/schematic.png new file mode 100644 index 000000000..ad7848d19 Binary files /dev/null and b/build/shared/examples/04.Communication/PhysicalPixel/schematic.png differ diff --git a/build/shared/examples/04.Communication/ReadASCIIString/ReadASCIIString.txt b/build/shared/examples/04.Communication/ReadASCIIString/ReadASCIIString.txt new file mode 100644 index 000000000..b2862c9b3 --- /dev/null +++ b/build/shared/examples/04.Communication/ReadASCIIString/ReadASCIIString.txt @@ -0,0 +1 @@ +Parse a comma-separated string of ints to fade an LED. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/ReadASCIIString/layout.png b/build/shared/examples/04.Communication/ReadASCIIString/layout.png new file mode 100644 index 000000000..56d2b70d0 Binary files /dev/null and b/build/shared/examples/04.Communication/ReadASCIIString/layout.png differ diff --git a/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.txt b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.txt new file mode 100644 index 000000000..4eae05f9d --- /dev/null +++ b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.txt @@ -0,0 +1 @@ +Send multiple variables using a call-and-response (handshaking) method. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/SerialCallResponse/layout.png b/build/shared/examples/04.Communication/SerialCallResponse/layout.png new file mode 100644 index 000000000..336b2dad9 Binary files /dev/null and b/build/shared/examples/04.Communication/SerialCallResponse/layout.png differ diff --git a/build/shared/examples/04.Communication/SerialCallResponse/schematic.png b/build/shared/examples/04.Communication/SerialCallResponse/schematic.png new file mode 100644 index 000000000..eacdf44ef Binary files /dev/null and b/build/shared/examples/04.Communication/SerialCallResponse/schematic.png differ diff --git a/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.txt b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.txt new file mode 100644 index 000000000..e86764500 --- /dev/null +++ b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.txt @@ -0,0 +1 @@ +Send multiple variables using a call-and-response (handshaking) method, and ASCII-encode the values before sending. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/SerialCallResponseASCII/layout.png b/build/shared/examples/04.Communication/SerialCallResponseASCII/layout.png new file mode 100644 index 000000000..336b2dad9 Binary files /dev/null and b/build/shared/examples/04.Communication/SerialCallResponseASCII/layout.png differ diff --git a/build/shared/examples/04.Communication/SerialCallResponseASCII/schematic.png b/build/shared/examples/04.Communication/SerialCallResponseASCII/schematic.png new file mode 100644 index 000000000..eacdf44ef Binary files /dev/null and b/build/shared/examples/04.Communication/SerialCallResponseASCII/schematic.png differ diff --git a/build/shared/examples/04.Communication/SerialEvent/SerialEvent.txt b/build/shared/examples/04.Communication/SerialEvent/SerialEvent.txt new file mode 100644 index 000000000..c02db65b4 --- /dev/null +++ b/build/shared/examples/04.Communication/SerialEvent/SerialEvent.txt @@ -0,0 +1 @@ +Demonstrates the use of SerialEvent(). \ No newline at end of file diff --git a/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.txt b/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.txt new file mode 100644 index 000000000..e7d85c113 --- /dev/null +++ b/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.txt @@ -0,0 +1 @@ +Send multiple variables from Arduino to your computer and read them in Processing or Max/MSP. \ No newline at end of file diff --git a/build/shared/examples/04.Communication/VirtualColorMixer/layout.png b/build/shared/examples/04.Communication/VirtualColorMixer/layout.png new file mode 100644 index 000000000..cb5b7280c Binary files /dev/null and b/build/shared/examples/04.Communication/VirtualColorMixer/layout.png differ diff --git a/build/shared/examples/04.Communication/VirtualColorMixer/schematic.png b/build/shared/examples/04.Communication/VirtualColorMixer/schematic.png new file mode 100644 index 000000000..acf35b32e Binary files /dev/null and b/build/shared/examples/04.Communication/VirtualColorMixer/schematic.png differ diff --git a/build/shared/examples/05.Control/Arrays/Arrays.txt b/build/shared/examples/05.Control/Arrays/Arrays.txt new file mode 100644 index 000000000..106d99173 --- /dev/null +++ b/build/shared/examples/05.Control/Arrays/Arrays.txt @@ -0,0 +1 @@ +A variation on the For Loop example that demonstrates how to use an array. \ No newline at end of file diff --git a/build/shared/examples/05.Control/Arrays/layout.png b/build/shared/examples/05.Control/Arrays/layout.png new file mode 100644 index 000000000..c2c01516a Binary files /dev/null and b/build/shared/examples/05.Control/Arrays/layout.png differ diff --git a/build/shared/examples/05.Control/Arrays/schematic.png b/build/shared/examples/05.Control/Arrays/schematic.png new file mode 100644 index 000000000..ed9b31502 Binary files /dev/null and b/build/shared/examples/05.Control/Arrays/schematic.png differ diff --git a/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.txt b/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.txt new file mode 100644 index 000000000..8c6a729f9 --- /dev/null +++ b/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.txt @@ -0,0 +1 @@ +Controlling multiple LEDs with a for loop and. \ No newline at end of file diff --git a/build/shared/examples/05.Control/ForLoopIteration/layout.png b/build/shared/examples/05.Control/ForLoopIteration/layout.png new file mode 100644 index 000000000..c2c01516a Binary files /dev/null and b/build/shared/examples/05.Control/ForLoopIteration/layout.png differ diff --git a/build/shared/examples/05.Control/ForLoopIteration/schematic.png b/build/shared/examples/05.Control/ForLoopIteration/schematic.png new file mode 100644 index 000000000..ed9b31502 Binary files /dev/null and b/build/shared/examples/05.Control/ForLoopIteration/schematic.png differ diff --git a/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.txt b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.txt new file mode 100644 index 000000000..e1cdaa8f5 --- /dev/null +++ b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.txt @@ -0,0 +1 @@ +How to use an if statement to change output conditions based on changing input conditions. \ No newline at end of file diff --git a/build/shared/examples/05.Control/IfStatementConditional/layout.png b/build/shared/examples/05.Control/IfStatementConditional/layout.png new file mode 100644 index 000000000..6071705e4 Binary files /dev/null and b/build/shared/examples/05.Control/IfStatementConditional/layout.png differ diff --git a/build/shared/examples/05.Control/IfStatementConditional/schematic.png b/build/shared/examples/05.Control/IfStatementConditional/schematic.png new file mode 100644 index 000000000..ea56b636a Binary files /dev/null and b/build/shared/examples/05.Control/IfStatementConditional/schematic.png differ diff --git a/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.txt b/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.txt new file mode 100644 index 000000000..233877c59 --- /dev/null +++ b/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.txt @@ -0,0 +1 @@ +How to use a while loop to calibrate a sensor while a button is being read. \ No newline at end of file diff --git a/build/shared/examples/05.Control/WhileStatementConditional/layout.png b/build/shared/examples/05.Control/WhileStatementConditional/layout.png new file mode 100644 index 000000000..8f9aab85f Binary files /dev/null and b/build/shared/examples/05.Control/WhileStatementConditional/layout.png differ diff --git a/build/shared/examples/05.Control/WhileStatementConditional/schematic.png b/build/shared/examples/05.Control/WhileStatementConditional/schematic.png new file mode 100644 index 000000000..d62dc15bc Binary files /dev/null and b/build/shared/examples/05.Control/WhileStatementConditional/schematic.png differ diff --git a/build/shared/examples/05.Control/switchCase/layout.png b/build/shared/examples/05.Control/switchCase/layout.png new file mode 100644 index 000000000..b7718079c Binary files /dev/null and b/build/shared/examples/05.Control/switchCase/layout.png differ diff --git a/build/shared/examples/05.Control/switchCase/schematic.png b/build/shared/examples/05.Control/switchCase/schematic.png new file mode 100644 index 000000000..bcd0c3dff Binary files /dev/null and b/build/shared/examples/05.Control/switchCase/schematic.png differ diff --git a/build/shared/examples/05.Control/switchCase/switchCase.txt b/build/shared/examples/05.Control/switchCase/switchCase.txt new file mode 100644 index 000000000..38568a82e --- /dev/null +++ b/build/shared/examples/05.Control/switchCase/switchCase.txt @@ -0,0 +1 @@ +How to choose between a discrete number of values. \ No newline at end of file diff --git a/build/shared/examples/05.Control/switchCase2/layout.png b/build/shared/examples/05.Control/switchCase2/layout.png new file mode 100644 index 000000000..cd9675715 Binary files /dev/null and b/build/shared/examples/05.Control/switchCase2/layout.png differ diff --git a/build/shared/examples/05.Control/switchCase2/schematic.png b/build/shared/examples/05.Control/switchCase2/schematic.png new file mode 100644 index 000000000..ed9b31502 Binary files /dev/null and b/build/shared/examples/05.Control/switchCase2/schematic.png differ diff --git a/build/shared/examples/05.Control/switchCase2/switchCase2.txt b/build/shared/examples/05.Control/switchCase2/switchCase2.txt new file mode 100644 index 000000000..fddc826bf --- /dev/null +++ b/build/shared/examples/05.Control/switchCase2/switchCase2.txt @@ -0,0 +1 @@ +A second switch-case example, showing how to take different actions based in characters received in the serial port. \ No newline at end of file diff --git a/build/shared/examples/06.Sensors/ADXL3xx/ADXL3xx.txt b/build/shared/examples/06.Sensors/ADXL3xx/ADXL3xx.txt new file mode 100644 index 000000000..a13994aba --- /dev/null +++ b/build/shared/examples/06.Sensors/ADXL3xx/ADXL3xx.txt @@ -0,0 +1 @@ +Read an ADXL3xx accelerometer. \ No newline at end of file diff --git a/build/shared/examples/06.Sensors/ADXL3xx/layout.png b/build/shared/examples/06.Sensors/ADXL3xx/layout.png new file mode 100644 index 000000000..3e35d533d Binary files /dev/null and b/build/shared/examples/06.Sensors/ADXL3xx/layout.png differ diff --git a/build/shared/examples/06.Sensors/ADXL3xx/schematic.png b/build/shared/examples/06.Sensors/ADXL3xx/schematic.png new file mode 100644 index 000000000..b3081b78c Binary files /dev/null and b/build/shared/examples/06.Sensors/ADXL3xx/schematic.png differ diff --git a/build/shared/examples/06.Sensors/Knock/Knock.txt b/build/shared/examples/06.Sensors/Knock/Knock.txt new file mode 100644 index 000000000..d93677ef4 --- /dev/null +++ b/build/shared/examples/06.Sensors/Knock/Knock.txt @@ -0,0 +1 @@ +Detect knocks with a piezo element. \ No newline at end of file diff --git a/build/shared/examples/06.Sensors/Knock/layout.png b/build/shared/examples/06.Sensors/Knock/layout.png new file mode 100644 index 000000000..d962757bc Binary files /dev/null and b/build/shared/examples/06.Sensors/Knock/layout.png differ diff --git a/build/shared/examples/06.Sensors/Knock/schematic.png b/build/shared/examples/06.Sensors/Knock/schematic.png new file mode 100644 index 000000000..6e18bf11e Binary files /dev/null and b/build/shared/examples/06.Sensors/Knock/schematic.png differ diff --git a/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.txt b/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.txt new file mode 100644 index 000000000..04bd5ece6 --- /dev/null +++ b/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.txt @@ -0,0 +1 @@ +Two-axis acceleromoter. \ No newline at end of file diff --git a/build/shared/examples/06.Sensors/Memsic2125/layout.png b/build/shared/examples/06.Sensors/Memsic2125/layout.png new file mode 100644 index 000000000..645f792b0 Binary files /dev/null and b/build/shared/examples/06.Sensors/Memsic2125/layout.png differ diff --git a/build/shared/examples/06.Sensors/Memsic2125/schematic.png b/build/shared/examples/06.Sensors/Memsic2125/schematic.png new file mode 100644 index 000000000..df26fe929 Binary files /dev/null and b/build/shared/examples/06.Sensors/Memsic2125/schematic.png differ diff --git a/build/shared/examples/06.Sensors/Ping/Ping.txt b/build/shared/examples/06.Sensors/Ping/Ping.txt new file mode 100644 index 000000000..9746c7568 --- /dev/null +++ b/build/shared/examples/06.Sensors/Ping/Ping.txt @@ -0,0 +1 @@ +Detecting objects with an ultrasonic range finder. \ No newline at end of file diff --git a/build/shared/examples/06.Sensors/Ping/layout.png b/build/shared/examples/06.Sensors/Ping/layout.png new file mode 100644 index 000000000..0c93f0132 Binary files /dev/null and b/build/shared/examples/06.Sensors/Ping/layout.png differ diff --git a/build/shared/examples/06.Sensors/Ping/schematic.png b/build/shared/examples/06.Sensors/Ping/schematic.png new file mode 100644 index 000000000..ca4ebc405 Binary files /dev/null and b/build/shared/examples/06.Sensors/Ping/schematic.png differ diff --git a/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.txt b/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.txt new file mode 100644 index 000000000..d7cebdce2 --- /dev/null +++ b/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.txt @@ -0,0 +1 @@ +How to control an 8x8 matrix of LEDs. \ No newline at end of file diff --git a/build/shared/examples/07.Display/RowColumnScanning/layout.png b/build/shared/examples/07.Display/RowColumnScanning/layout.png new file mode 100644 index 000000000..3187fbe20 Binary files /dev/null and b/build/shared/examples/07.Display/RowColumnScanning/layout.png differ diff --git a/build/shared/examples/07.Display/RowColumnScanning/schematic.png b/build/shared/examples/07.Display/RowColumnScanning/schematic.png new file mode 100644 index 000000000..238d251c7 Binary files /dev/null and b/build/shared/examples/07.Display/RowColumnScanning/schematic.png differ diff --git a/build/shared/examples/07.Display/barGraph/LEDBarGraph.txt b/build/shared/examples/07.Display/barGraph/LEDBarGraph.txt new file mode 100644 index 000000000..969634a66 --- /dev/null +++ b/build/shared/examples/07.Display/barGraph/LEDBarGraph.txt @@ -0,0 +1 @@ +How to make an LED bar graph. \ No newline at end of file diff --git a/build/shared/examples/07.Display/barGraph/layout.png b/build/shared/examples/07.Display/barGraph/layout.png new file mode 100644 index 000000000..cf676835f Binary files /dev/null and b/build/shared/examples/07.Display/barGraph/layout.png differ diff --git a/build/shared/examples/07.Display/barGraph/schematic.png b/build/shared/examples/07.Display/barGraph/schematic.png new file mode 100644 index 000000000..dfc051342 Binary files /dev/null and b/build/shared/examples/07.Display/barGraph/schematic.png differ diff --git a/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.txt b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.txt new file mode 100644 index 000000000..c93c9f83a --- /dev/null +++ b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.txt @@ -0,0 +1 @@ +Add strings together in a variety of ways. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.txt b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.txt new file mode 100644 index 000000000..75d11af3f --- /dev/null +++ b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.txt @@ -0,0 +1 @@ +Change the case of a string. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringCharacters/StringCharacters.txt b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.txt new file mode 100644 index 000000000..d43da1f02 --- /dev/null +++ b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.txt @@ -0,0 +1 @@ +Get/set the value of a specific character in a string. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.txt b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.txt new file mode 100644 index 000000000..aa622c764 --- /dev/null +++ b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.txt @@ -0,0 +1 @@ +Compare strings alphabetically. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringConstructors/StringConstructors.txt b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.txt new file mode 100644 index 000000000..777082fb7 --- /dev/null +++ b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.txt @@ -0,0 +1 @@ +How to initialize string objects. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.txt b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.txt new file mode 100644 index 000000000..cd9722953 --- /dev/null +++ b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.txt @@ -0,0 +1 @@ +Look for the first/last instance of a character in a string. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringLength/StringLength.txt b/build/shared/examples/08.Strings/StringLength/StringLength.txt new file mode 100644 index 000000000..862d0476e --- /dev/null +++ b/build/shared/examples/08.Strings/StringLength/StringLength.txt @@ -0,0 +1 @@ +Get and trim the length of a string. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.txt b/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.txt new file mode 100644 index 000000000..862d0476e --- /dev/null +++ b/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.txt @@ -0,0 +1 @@ +Get and trim the length of a string. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringReplace/StringReplace.txt b/build/shared/examples/08.Strings/StringReplace/StringReplace.txt new file mode 100644 index 000000000..f4034a756 --- /dev/null +++ b/build/shared/examples/08.Strings/StringReplace/StringReplace.txt @@ -0,0 +1 @@ +Replace individual characters in a string. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.txt b/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.txt new file mode 100644 index 000000000..dac7903a9 --- /dev/null +++ b/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.txt @@ -0,0 +1 @@ +Check which characters/substrings a given string starts or ends with. \ No newline at end of file diff --git a/build/shared/examples/08.Strings/StringSubstring/StringSubstring.txt b/build/shared/examples/08.Strings/StringSubstring/StringSubstring.txt new file mode 100644 index 000000000..357db4d05 --- /dev/null +++ b/build/shared/examples/08.Strings/StringSubstring/StringSubstring.txt @@ -0,0 +1 @@ +Look for "phrases" within a given string. \ No newline at end of file diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.txt b/build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.txt new file mode 100644 index 000000000..6d1900b13 --- /dev/null +++ b/build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.txt @@ -0,0 +1 @@ +Logs out the current user with key commands. \ No newline at end of file diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardMessage/KeyboardMessage.txt b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/KeyboardMessage.txt new file mode 100644 index 000000000..86fc2be23 --- /dev/null +++ b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/KeyboardMessage.txt @@ -0,0 +1 @@ +Sends a text string when a button is pressed. \ No newline at end of file diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardMessage/layout.png b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/layout.png new file mode 100644 index 000000000..622a9a5b0 Binary files /dev/null and b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/layout.png differ diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardMessage/schematic.png b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/schematic.png new file mode 100644 index 000000000..ef19b85a6 Binary files /dev/null and b/build/shared/examples/09.USB/Keyboard/KeyboardMessage/schematic.png differ diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.txt b/build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.txt new file mode 100644 index 000000000..0ccbf5fc3 --- /dev/null +++ b/build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.txt @@ -0,0 +1 @@ +Opens a new window in the Arduino IDE and reprograms the Leonardo with a simple blink program. \ No newline at end of file diff --git a/build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.txt b/build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.txt new file mode 100644 index 000000000..e4e3f91d4 --- /dev/null +++ b/build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.txt @@ -0,0 +1 @@ +Reads a byte from the serial port, and sends back a keystroke. \ No newline at end of file diff --git a/build/shared/examples/09.USB/KeyboardAndMouseControl/KeyboardAndMouseControl.txt b/build/shared/examples/09.USB/KeyboardAndMouseControl/KeyboardAndMouseControl.txt new file mode 100644 index 000000000..64745d318 --- /dev/null +++ b/build/shared/examples/09.USB/KeyboardAndMouseControl/KeyboardAndMouseControl.txt @@ -0,0 +1 @@ +Demonstrates the Mouse and Keyboard commands in one program. \ No newline at end of file diff --git a/build/shared/examples/09.USB/KeyboardAndMouseControl/layout.png b/build/shared/examples/09.USB/KeyboardAndMouseControl/layout.png new file mode 100644 index 000000000..45fdc9c07 Binary files /dev/null and b/build/shared/examples/09.USB/KeyboardAndMouseControl/layout.png differ diff --git a/build/shared/examples/09.USB/KeyboardAndMouseControl/schematic.png b/build/shared/examples/09.USB/KeyboardAndMouseControl/schematic.png new file mode 100644 index 000000000..09998b07b Binary files /dev/null and b/build/shared/examples/09.USB/KeyboardAndMouseControl/schematic.png differ diff --git a/build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.txt b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.txt new file mode 100644 index 000000000..20355589b --- /dev/null +++ b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.txt @@ -0,0 +1 @@ +Control cursor movement with 5 pushbuttons. \ No newline at end of file diff --git a/build/shared/examples/09.USB/Mouse/ButtonMouseControl/layout.png b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/layout.png new file mode 100644 index 000000000..45fdc9c07 Binary files /dev/null and b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/layout.png differ diff --git a/build/shared/examples/09.USB/Mouse/ButtonMouseControl/schematic.png b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/schematic.png new file mode 100644 index 000000000..09998b07b Binary files /dev/null and b/build/shared/examples/09.USB/Mouse/ButtonMouseControl/schematic.png differ diff --git a/build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.txt b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.txt new file mode 100644 index 000000000..55fa2bc4c --- /dev/null +++ b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.txt @@ -0,0 +1 @@ +Controls a computer's cursor movement with a Joystick when a button is pressed. \ No newline at end of file diff --git a/build/shared/examples/09.USB/Mouse/JoystickMouseControl/layout.png b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/layout.png new file mode 100644 index 000000000..95a4e9529 Binary files /dev/null and b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/layout.png differ diff --git a/build/shared/examples/09.USB/Mouse/JoystickMouseControl/schematic.png b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/schematic.png new file mode 100644 index 000000000..ae4ecf122 Binary files /dev/null and b/build/shared/examples/09.USB/Mouse/JoystickMouseControl/schematic.png differ