File tree 2 files changed +12
-10
lines changed
2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 10
10
with a serial menu to control the various aspects of the IC.
11
11
12
12
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
14
15
15
16
Hardware Connections:
16
17
MY1690 Pin -> Arduino Pin
17
18
-------------------------------------
18
- TXO -> 6
19
- RXI -> 4
20
- 3.3V -> 3.3V
19
+ TXO -> 8
20
+ RXI -> 9
21
+ VIN -> 5V
21
22
GND -> GND
22
23
23
24
Don't forget to load some MP3s on your sdCard and plug it in too!
28
29
29
30
// For boards that support software serial
30
31
#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
32
33
33
34
// For boards that have multiple hardware serial ports
34
35
// HardwareSerial serialMP3(2); //Create serial port on ESP32: TX on 17, RX on 16
Original file line number Diff line number Diff line change 10
10
with a serial menu to control the various aspects of the IC.
11
11
12
12
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
14
15
15
16
Hardware Connections:
16
17
MY1690 Pin -> Arduino Pin
17
18
-------------------------------------
18
- TXO -> 6
19
- RXI -> 4
20
- 3.3V -> 3.3V
19
+ TXO -> 8
20
+ RXI -> 9
21
+ VIN -> 5V
21
22
GND -> GND
22
23
23
24
Don't forget to load some MP3s on your sdCard and plug it in too!
28
29
29
30
// For boards that support software serial
30
31
#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
32
33
33
34
// For boards that have multiple hardware serial ports
34
35
// HardwareSerial serialMP3(2); //Create serial port on ESP32: TX on 17, RX on 16
You can’t perform that action at this time.
0 commit comments