Browse Source

Update tutorial links

dds
PaulStoffregen 8 years ago
parent
commit
377ff928f5
16 changed files with 16 additions and 16 deletions
  1. +1
    -1
      examples/Tutorial/Part_1_02_Hardware_Test/Part_1_02_Hardware_Test.ino
  2. +1
    -1
      examples/Tutorial/Part_1_03_Playing_Music/Part_1_03_Playing_Music.ino
  3. +1
    -1
      examples/Tutorial/Part_1_04_Blink_While_Playing/Part_1_04_Blink_While_Playing.ino
  4. +1
    -1
      examples/Tutorial/Part_1_05_Do_More_While_Playing/Part_1_05_Do_More_While_Playing.ino
  5. +1
    -1
      examples/Tutorial/Part_2_01_First_Design_Tool_Use/Part_2_01_First_Design_Tool_Use.ino
  6. +1
    -1
      examples/Tutorial/Part_2_02_Mixers/Part_2_02_Mixers.ino
  7. +1
    -1
      examples/Tutorial/Part_2_03_Samples/Part_2_03_Samples.ino
  8. +1
    -1
      examples/Tutorial/Part_2_04_Microphone_Check/Part_2_04_Microphone_Check.ino
  9. +1
    -1
      examples/Tutorial/Part_2_05_Simple_Delay/Part_2_05_Simple_Delay.ino
  10. +1
    -1
      examples/Tutorial/Part_2_06_Feedback_Delay/Part_2_06_Feedback_Delay.ino
  11. +1
    -1
      examples/Tutorial/Part_2_07_Filters/Part_2_07_Filters.ino
  12. +1
    -1
      examples/Tutorial/Part_2_08_Oscillators/Part_2_08_Oscillators.ino
  13. +1
    -1
      examples/Tutorial/Part_3_01_Peak_Detection/Part_3_01_Peak_Detection.ino
  14. +1
    -1
      examples/Tutorial/Part_3_02_Fourier_Transform/Part_3_02_Fourier_Transform.ino
  15. +1
    -1
      examples/Tutorial/Part_3_03_TFT_Display/Part_3_03_TFT_Display.ino
  16. +1
    -1
      examples/Tutorial/Reference/Reference.ino

+ 1
- 1
examples/Tutorial/Part_1_02_Hardware_Test/Part_1_02_Hardware_Test.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 1-2: Test Hardware

+ 1
- 1
examples/Tutorial/Part_1_03_Playing_Music/Part_1_03_Playing_Music.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 1-3: First "Hello World" program, play a music file

+ 1
- 1
examples/Tutorial/Part_1_04_Blink_While_Playing/Part_1_04_Blink_While_Playing.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 1-4: Blink LED while Playing Music

+ 1
- 1
examples/Tutorial/Part_1_05_Do_More_While_Playing/Part_1_05_Do_More_While_Playing.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 1-5: Respond to Pushbuttons & Volume Knob

+ 1
- 1
examples/Tutorial/Part_2_01_First_Design_Tool_Use/Part_2_01_First_Design_Tool_Use.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-1: First Design Tool Use

+ 1
- 1
examples/Tutorial/Part_2_02_Mixers/Part_2_02_Mixers.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-2: Mixers & Playing Multiple Sounds

+ 1
- 1
examples/Tutorial/Part_2_03_Samples/Part_2_03_Samples.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-3: Playing Samples

+ 1
- 1
examples/Tutorial/Part_2_04_Microphone_Check/Part_2_04_Microphone_Check.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-4: Using The Microphone

+ 1
- 1
examples/Tutorial/Part_2_05_Simple_Delay/Part_2_05_Simple_Delay.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-5: Simple Delay

+ 1
- 1
examples/Tutorial/Part_2_06_Feedback_Delay/Part_2_06_Feedback_Delay.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-6: Feedback (Echo) Delay

+ 1
- 1
examples/Tutorial/Part_2_07_Filters/Part_2_07_Filters.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-7: Filters

+ 1
- 1
examples/Tutorial/Part_2_08_Oscillators/Part_2_08_Oscillators.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 2-8: Oscillators

+ 1
- 1
examples/Tutorial/Part_3_01_Peak_Detection/Part_3_01_Peak_Detection.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 3-1: Peak Detection

+ 1
- 1
examples/Tutorial/Part_3_02_Fourier_Transform/Part_3_02_Fourier_Transform.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 3-2: Fourier Transform

+ 1
- 1
examples/Tutorial/Part_3_03_TFT_Display/Part_3_03_TFT_Display.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// Part 3-3: Add a TFT Display

+ 1
- 1
examples/Tutorial/Reference/Reference.ino View File

@@ -1,6 +1,6 @@
// Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// http://www.pjrc.com/store/audio_tutorial_kit.html
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
//
// This reference file has all the design tool output. If you are

Loading…
Cancel
Save