Преглед на файлове

more teensy audio board settings

Adds more comments on how to use sd on teensy audio board
main
Frank Bösing преди 8 години
родител
ревизия
039b7ed20d
променени са 6 файла, в които са добавени 40 реда и са изтрити 18 реда
  1. +6
    -3
      examples/CardInfo/CardInfo.ino
  2. +7
    -3
      examples/Datalogger/Datalogger.ino
  3. +6
    -3
      examples/DumpFile/DumpFile.ino
  4. +7
    -3
      examples/Files/Files.ino
  5. +7
    -3
      examples/ReadWrite/ReadWrite.ino
  6. +7
    -3
      examples/listfiles/listfiles.ino

+ 6
- 3
examples/CardInfo/CardInfo.ino Целия файл

@@ -7,10 +7,10 @@
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11 on Arduino Uno/Duemilanove/Diecimila
** MOSI - pin 11 on Arduino Uno/Duemilanove/Diecimila, pin 7 on Teensy with audio board
** MISO - pin 12 on Arduino Uno/Duemilanove/Diecimila
** CLK - pin 13 on Arduino Uno/Duemilanove/Diecimila
** CS - depends on your SD card shield or module.
** CLK - pin 13 on Arduino Uno/Duemilanove/Diecimila, pin 14 on Teensy with audio board
** CS - depends on your SD card shield or module - pin 10 on Teensy with audio board
Pin 4 used here for consistency with other Arduino examples

@@ -40,6 +40,9 @@ const int chipSelect = 4;

void setup()
{
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7
//SPI.setSCK(14); // Audio shield has SCK on pin 14
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {

+ 7
- 3
examples/Datalogger/Datalogger.ino Целия файл

@@ -7,10 +7,10 @@
The circuit:
* analog sensors on analog ins 0, 1, and 2
* SD card attached to SPI bus as follows:
** MOSI - pin 11
** MOSI - pin 11, pin 7 on Teensy with audio board
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
** CLK - pin 13, pin 14 on Teensy with audio board
** CS - pin 4, pin 10 on Teensy with audio board
created 24 Nov 2010
modified 9 Apr 2012
@@ -40,6 +40,10 @@ const int chipSelect = 4;

void setup()
{
//UNCOMMENT THESE TWO LINES FOR TEENSY AUDIO BOARD:
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7
//SPI.setSCK(14); // Audio shield has SCK on pin 14
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {

+ 6
- 3
examples/DumpFile/DumpFile.ino Целия файл

@@ -6,10 +6,9 @@
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11
** MOSI - pin 11, pin 7 on Teensy with audio board
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
** CLK - pin 13, pin 14 on Teensy with audio board
created 22 December 2010
by Limor Fried
@@ -40,6 +39,10 @@ const int chipSelect = 4;

void setup()
{
//UNCOMMENT THESE TWO LINES FOR TEENSY AUDIO BOARD:
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7
//SPI.setSCK(14); // Audio shield has SCK on pin 14
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {

+ 7
- 3
examples/Files/Files.ino Целия файл

@@ -4,10 +4,10 @@
This example shows how to create and destroy an SD card file
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11
** MOSI - pin 11, pin 7 on Teensy with audio board
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
** CLK - pin 13, pin 14 on Teensy with audio board
** CS - pin 4, pin 10 on Teensy with audio board
created Nov 2010
by David A. Mellis
@@ -34,6 +34,10 @@ const int chipSelect = 4;

void setup()
{
//UNCOMMENT THESE TWO LINES FOR TEENSY AUDIO BOARD:
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7
//SPI.setSCK(14); // Audio shield has SCK on pin 14
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {

+ 7
- 3
examples/ReadWrite/ReadWrite.ino Целия файл

@@ -4,10 +4,10 @@
This example shows how to read and write data to and from an SD card file
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11
** MOSI - pin 11, pin 7 on Teensy with audio board
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
** CLK - pin 13, pin 14 on Teensy with audio board
** CS - pin 4, pin 10 on Teensy with audio board
created Nov 2010
by David A. Mellis
@@ -35,6 +35,10 @@ const int chipSelect = 4;

void setup()
{
//UNCOMMENT THESE TWO LINES FOR TEENSY AUDIO BOARD:
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7
//SPI.setSCK(14); // Audio shield has SCK on pin 14
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {

+ 7
- 3
examples/listfiles/listfiles.ino Целия файл

@@ -4,10 +4,10 @@
This example shows how to create and destroy an SD card file
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11
** MOSI - pin 11, pin 7 on Teensy with audio board
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
** CLK - pin 13, pin 14 on Teensy with audio board
** CS - pin 4, pin 10 on Teensy with audio board
created Nov 2010
by David A. Mellis
@@ -34,6 +34,10 @@ const int chipSelect = 4;

void setup()
{
//UNCOMMENT THESE TWO LINES FOR TEENSY AUDIO BOARD:
//SPI.setMOSI(7); // Audio shield has MOSI on pin 7
//SPI.setSCK(14); // Audio shield has SCK on pin 14
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {

Loading…
Отказ
Запис