Skip to content

Commit 07a0a08

Browse files
committed
Readme
1 parent 84cb7f8 commit 07a0a08

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/examples-vs1053/basic-a2dp-vs1053/basic-a2dp-vs1053.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void setup() {
3737
cfg.sample_rate = a2dp_sink.sample_rate();
3838
cfg.channels = 2;
3939
cfg.bits_per_sample = 16;
40-
// Use your custom pins
40+
// Use your custom pins or define in AudioCodnfig.h
4141
//cfg.cs_pin = VS1053_CS;
4242
//cfg.dcs_pin = VS1053_DCS;
4343
//cfg.dreq_pin = VS1053_DREQ;

examples/examples-vs1053/player-sd-vs1053/player-sd-vs1053.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void setup() {
3232
// setup output
3333
auto cfg = vs1053.defaultConfig();
3434
cfg.is_encoded_data = true; // vs1053 is accepting encoded data
35-
// Use your custom pins
35+
// Use your custom pins or define in AudioCodnfig.h
3636
//cfg.cs_pin = VS1053_CS;
3737
//cfg.dcs_pin = VS1053_DCS;
3838
//cfg.dreq_pin = VS1053_DREQ;

examples/examples-vs1053/streams-generator-vs1053/streams-generator-vs1053.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void setup(){
3535
cfg.sample_rate = sample_rate;
3636
cfg.channels = channels;
3737
cfg.bits_per_sample = bits_per_sample;
38-
// Use your custom pins
38+
// Use your custom pins or define in AudioCodnfig.h
3939
//cfg.cs_pin = VS1053_CS;
4040
//cfg.dcs_pin = VS1053_DCS;
4141
//cfg.dreq_pin = VS1053_DREQ;

examples/examples-vs1053/streams-url_mp3-vs1053/streams-url_mp3-vs1053.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ void setup(){
2424
// setup vs1053
2525
auto cfg = vs1053.defaultConfig();
2626
cfg.is_encoded_data = true; // vs1053 is accepting encoded data
27-
// Use your custom pins
27+
// Use your custom pins or define in AudioCodnfig.h
2828
//cfg.cs_pin = VS1053_CS;
2929
//cfg.dcs_pin = VS1053_DCS;
3030
//cfg.dreq_pin = VS1053_DREQ;

0 commit comments

Comments
 (0)