Skip to content

Commit 477eea1

Browse files
committed
Comments
1 parent df0680f commit 477eea1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/examples-stream/streams-generator-csv/streams-generator-csv.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ uint8_t channels = 2; // The stream will ha
1313
SineWaveGenerator<int16_t> sineWave(32000); // subclass of SoundGenerator with max amplitude of 32000
1414
GeneratedSoundStream<int16_t> sound(sineWave); // Stream generated from sine wave
1515
CsvStream<int16_t> out(Serial);
16-
StreamCopy copier(out, sound); // copies sound into i2s
16+
StreamCopy copier(out, sound); // copies sound to out
1717

1818
// Arduino Setup
1919
void setup(void) {
2020
// Open Serial
2121
Serial.begin(115200);
2222
AudioLogger::instance().begin(Serial, AudioLogger::Warning);
2323

24-
// start the bluetooth
24+
// Define CSV Output
2525
auto config = out.defaultConfig();
2626
config.sample_rate = sample_rate;
2727
config.channels = channels;

0 commit comments

Comments
 (0)