Skip to content

Commit a83b187

Browse files
authored
Merge pull request #4 from sparkfun/pinchanges
Example Pin Changes
2 parents af3bfba + c630952 commit a83b187

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

examples/Example1_PlayFile/Example1_PlayFile.ino

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
with a serial menu to control the various aspects of the IC.
1111
1212
Feel like supporting our work? Buy a board from SparkFun!
13-
https://www.sparkfun.com/products/18642
13+
MY1690X Serial MP3 Player Shield: https://www.sparkfun.com/sparkfun-serial-mp3-player-shield-my1690x.html
14+
MY1690X Audio Player Breakout: https://www.sparkfun.com/sparkfun-audio-player-breakout-my1690x-16s.html
1415
1516
Hardware Connections:
1617
MY1690 Pin -> Arduino Pin
1718
-------------------------------------
18-
TXO -> 6
19-
RXI -> 4
20-
3.3V -> 3.3V
19+
TXO -> 8
20+
RXI -> 9
21+
VIN -> 5V
2122
GND -> GND
2223
2324
Don't forget to load some MP3s on your sdCard and plug it in too!
@@ -28,7 +29,7 @@
2829

2930
//For boards that support software serial
3031
#include "SoftwareSerial.h"
31-
SoftwareSerial serialMP3(2, 3); //RX on Arduino connected to TX on MY1690's, TX on Arduino connected to the MY1690's RX pin
32+
SoftwareSerial serialMP3(8, 9); //RX on Arduino connected to TX on MY1690's, TX on Arduino connected to the MY1690's RX pin
3233

3334
//For boards that have multiple hardware serial ports
3435
//HardwareSerial serialMP3(2); //Create serial port on ESP32: TX on 17, RX on 16

examples/Example2_KitchenSink/Example2_KitchenSink.ino

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
with a serial menu to control the various aspects of the IC.
1111
1212
Feel like supporting our work? Buy a board from SparkFun!
13-
https://www.sparkfun.com/products/18642
13+
MY1690X Serial MP3 Player Shield: https://www.sparkfun.com/sparkfun-serial-mp3-player-shield-my1690x.html
14+
MY1690X Audio Player Breakout: https://www.sparkfun.com/sparkfun-audio-player-breakout-my1690x-16s.html
1415
1516
Hardware Connections:
1617
MY1690 Pin -> Arduino Pin
1718
-------------------------------------
18-
TXO -> 6
19-
RXI -> 4
20-
3.3V -> 3.3V
19+
TXO -> 8
20+
RXI -> 9
21+
VIN -> 5V
2122
GND -> GND
2223
2324
Don't forget to load some MP3s on your sdCard and plug it in too!
@@ -28,7 +29,7 @@
2829

2930
//For boards that support software serial
3031
#include "SoftwareSerial.h"
31-
SoftwareSerial serialMP3(2, 3); //RX on Arduino connected to TX on MY1690's, TX on Arduino connected to the MY1690's RX pin
32+
SoftwareSerial serialMP3(8, 9); //RX on Arduino connected to TX on MY1690's, TX on Arduino connected to the MY1690's RX pin
3233

3334
//For boards that have multiple hardware serial ports
3435
//HardwareSerial serialMP3(2); //Create serial port on ESP32: TX on 17, RX on 16

0 commit comments

Comments
 (0)