Browse Source

Add documentation links to all tutorial examples

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

+ 3
- 0
examples/Tutorial/Part_1_02_Hardware_Test/Part_1_02_Hardware_Test.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 1-2: Test Hardware // Part 1-2: Test Hardware
// //

+ 3
- 0
examples/Tutorial/Part_1_03_Playing_Music/Part_1_03_Playing_Music.ino View File

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

+ 3
- 0
examples/Tutorial/Part_1_04_Blink_While_Playing/Part_1_04_Blink_While_Playing.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 1-4: Blink LED while Playing Music // Part 1-4: Blink LED while Playing Music
// //

+ 3
- 0
examples/Tutorial/Part_1_05_Do_More_While_Playing/Part_1_05_Do_More_While_Playing.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 1-5: Respond to Pushbuttons & Volume Knob // Part 1-5: Respond to Pushbuttons & Volume Knob
// //

+ 4
- 0
examples/Tutorial/Part_2_01_First_Design_Tool_Use/Part_2_01_First_Design_Tool_Use.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-1: First Design Tool Use // Part 2-1: First Design Tool Use



/////////////////////////////////// ///////////////////////////////////
// copy the Design Tool code here // copy the Design Tool code here
/////////////////////////////////// ///////////////////////////////////

+ 4
- 0
examples/Tutorial/Part_2_02_Mixers/Part_2_02_Mixers.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-2: Mixers & Playing Multiple Sounds // Part 2-2: Mixers & Playing Multiple Sounds



/////////////////////////////////// ///////////////////////////////////
// copy the Design Tool code here // copy the Design Tool code here
/////////////////////////////////// ///////////////////////////////////

+ 3
- 0
examples/Tutorial/Part_2_03_Samples/Part_2_03_Samples.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-3: Playing Samples // Part 2-3: Playing Samples



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

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-1: Using the Microphone
// Part 2-4: Using The Microphone




/////////////////////////////////// ///////////////////////////////////

+ 4
- 0
examples/Tutorial/Part_2_05_Simple_Delay/Part_2_05_Simple_Delay.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-5: Simple Delay // Part 2-5: Simple Delay



/////////////////////////////////// ///////////////////////////////////
// copy the Design Tool code here // copy the Design Tool code here
/////////////////////////////////// ///////////////////////////////////

+ 3
- 0
examples/Tutorial/Part_2_06_Feedback_Delay/Part_2_06_Feedback_Delay.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-6: Feedback (Echo) Delay // Part 2-6: Feedback (Echo) Delay



+ 3
- 0
examples/Tutorial/Part_2_07_Filters/Part_2_07_Filters.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-7: Filters // Part 2-7: Filters



+ 3
- 0
examples/Tutorial/Part_2_08_Oscillators/Part_2_08_Oscillators.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 2-8: Oscillators // Part 2-8: Oscillators



+ 3
- 0
examples/Tutorial/Part_3_01_Peak_Detection/Part_3_01_Peak_Detection.ino View File

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 3-1: Peak Detection // Part 3-1: Peak Detection



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

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 3-1: Fourier Transform
// Part 3-2: Fourier Transform


#include <Bounce.h> #include <Bounce.h>
#include "AudioSampleGuitar.h" #include "AudioSampleGuitar.h"

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

// Advanced Microcontroller-based Audio Workshop // Advanced Microcontroller-based Audio Workshop
//
// https://github.com/PaulStoffregen/AudioWorkshop2015/raw/master/workshop.pdf
// https://hackaday.io/project/8292-microcontroller-audio-workshop-had-supercon-2015
// //
// Part 3-3: TFT Display
// Part 3-3: Add a TFT Display


#include <ILI9341_t3.h> #include <ILI9341_t3.h>
#include <font_Arial.h> // from ILI9341_t3 #include <font_Arial.h> // from ILI9341_t3

Loading…
Cancel
Save