MP3-TF-16P SD Card MP3 Module with Serial Port

  1. Supports sampling rates (KHz): 8 / 11.025 / 12/16 / 22.05 / 24/32 / 44.1 / 48
  2. 24-bit DAC output, dynamic range support: 90dB, SNR support: 85dB
  3. Fully supports FAT16, FAT32 file system
  4. Maximum support 32G TF card
  5. Support U disk to 32G, 64M bytes of NORFLASH
  6. A variety of control modes are available. IO control mode, serial mode, AD key control mode

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

150,00 EGP

10 People watching this product now!

Payment Methods:

Description

MP3-TF-16P MP3 Disk TF Card Module Serial Port is a compact and inexpensive MP3 module that can be connected directly to the speaker. Module with battery power supply, speaker, the keypad can be used alone, or through the serial port control, as the Arduino UNO or any microcontroller with a serial port module. The module itself perfectly integrated hardware decode MP3, WAV, WMA.

While the software supports TF card driver to support FAT16, FAT32 file system. It can be done by simple serial command plays the specified music, as well as how to play music and other functions, without tedious low-level, easy to use, stable and reliable.


Application
  1. Car navigation voice broadcast
  2. Road transport inspectors, toll voice prompts
  3. The train station, bus station voice prompts security check
  4. Electric power, telecommunications, financial operating room voice prompts
  5. The vehicle into or out of the channel to verify the voice prompts
  6. Border control channel voice prompts
  7. Multi-channel voice alarm or voice guidance equipment operation
  8. Electric sightseeing bus safety with voice notices
  9. Electrical and mechanical equipment failure alarm
  10. Fire alarm voice prompts
  11. Automatic broadcasting equipment, regular broadcast.

Specifications and Features :

  1. Supports sampling rates (kHz): 8 / 11.025 / 12/16 / 22.05 / 24/32 / 44.1 / 48.
  2. 24-bit DAC output, dynamic range support: 90dB, SNR support: 85dB.
  3. Fully supports FAT16, FAT32 file system, maximum support 32G TF card, support U disk to 32G, 64M bytes of NOR FLASH.
  4. A variety of control modes are available. IO control mode, serial mode, AD key control mode.
  5. The broadcast language spots feature, you can pause the background music being played. Advertising finished playing back background sound to continue playing.
  6. The audio data is sorted by folder, supports up to 100 folders, folders can assign every 255 Tracks
    7,30 level adjustable volume, adjustable EQ 6.

Package Includes:

1 x MP3-TF-16P MP3 Disk TF Card Module Serial Port.

 

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
MP3-TF-16PVCC/GND/TX/RX5V / GND / board RX pin / board TX pin
📟
MP3-TF-16P SD Card MP3 Module with Serial Port
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
MP3-TF-16P SD Card MP3 Module with Serial Port - Arduino Uno
MP3-TF-16P SD Card MP3 Module with Serial Port - Arduino Nano
MP3-TF-16P SD Card MP3 Module with Serial Port - Arduino Mega
MP3-TF-16P SD Card MP3 Module with Serial Port - ESP32
MP3-TF-16P SD Card MP3 Module with Serial Port - ESP8266
MP3-TF-16P SD Card MP3 Module with Serial Port - STM32
MP3-TF-16P SD Card MP3 Module with Serial Port - Raspberry Pi Pico
📄 File: mp3-tf-16p_sd_card_mp3_module_with_serial_port_-_arduino_uno.inoArduino Uno
571 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Uno. MP3 files must be named 0001.mp3, 0002.mp3 etc. in a /mp3 folder on the SD card.
6#include <SoftwareSerial.h>
7SoftwareSerial MP3_SERIAL(2, 3);
8
9#include <DFRobotDFPlayerMini.h>
10
11DFRobotDFPlayerMini mp3;
12
13void setup() {
14 Serial.begin(115200);
15 MP3_SERIAL.begin(9600);
16 if (!mp3.begin(MP3_SERIAL)) {
17 Serial.println("MP3 module not found - check SD card/wiring!");
18 while (1) delay(10);
19 }
20 mp3.volume(20); // 0-30
21 mp3.play(1); // plays 0001.mp3
22}
23
24void loop() {
25}
📄 File: mp3-tf-16p_sd_card_mp3_module_with_serial_port_-_arduino_nano.inoArduino Nano
572 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Nano. MP3 files must be named 0001.mp3, 0002.mp3 etc. in a /mp3 folder on the SD card.
6#include <SoftwareSerial.h>
7SoftwareSerial MP3_SERIAL(2, 3);
8
9#include <DFRobotDFPlayerMini.h>
10
11DFRobotDFPlayerMini mp3;
12
13void setup() {
14 Serial.begin(115200);
15 MP3_SERIAL.begin(9600);
16 if (!mp3.begin(MP3_SERIAL)) {
17 Serial.println("MP3 module not found - check SD card/wiring!");
18 while (1) delay(10);
19 }
20 mp3.volume(20); // 0-30
21 mp3.play(1); // plays 0001.mp3
22}
23
24void loop() {
25}
📄 File: mp3-tf-16p_sd_card_mp3_module_with_serial_port_-_arduino_mega.inoArduino Mega
540 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=19, TX=18 on Arduino Mega. MP3 files must be named 0001.mp3, 0002.mp3 etc. in a /mp3 folder on the SD card.
6#define MP3_SERIAL Serial1
7
8#include <DFRobotDFPlayerMini.h>
9
10DFRobotDFPlayerMini mp3;
11
12void setup() {
13 Serial.begin(115200);
14 MP3_SERIAL.begin(9600);
15 if (!mp3.begin(MP3_SERIAL)) {
16 Serial.println("MP3 module not found - check SD card/wiring!");
17 while (1) delay(10);
18 }
19 mp3.volume(20); // 0-30
20 mp3.play(1); // plays 0001.mp3
21}
22
23void loop() {
24}
📄 File: mp3-tf-16p_sd_card_mp3_module_with_serial_port_-_esp32.inoESP32
533 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=16, TX=17 on ESP32. MP3 files must be named 0001.mp3, 0002.mp3 etc. in a /mp3 folder on the SD card.
6#define MP3_SERIAL Serial1
7
8#include <DFRobotDFPlayerMini.h>
9
10DFRobotDFPlayerMini mp3;
11
12void setup() {
13 Serial.begin(115200);
14 MP3_SERIAL.begin(9600);
15 if (!mp3.begin(MP3_SERIAL)) {
16 Serial.println("MP3 module not found - check SD card/wiring!");
17 while (1) delay(10);
18 }
19 mp3.volume(20); // 0-30
20 mp3.play(1); // plays 0001.mp3
21}
22
23void loop() {
24}
📄 File: mp3-tf-16p_sd_card_mp3_module_with_serial_port_-_esp8266.inoESP8266
571 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=D7, TX=D8 on ESP8266. MP3 files must be named 0001.mp3, 0002.mp3 etc. in a /mp3 folder on the SD card.
6#include <SoftwareSerial.h>
7SoftwareSerial MP3_SERIAL(D7, D8);
8
9#include <DFRobotDFPlayerMini.h>
10
11DFRobotDFPlayerMini mp3;
12
13void setup() {
14 Serial.begin(115200);
15 MP3_SERIAL.begin(9600);
16 if (!mp3.begin(MP3_SERIAL)) {
17 Serial.println("MP3 module not found - check SD card/wiring!");
18 while (1) delay(10);
19 }
20 mp3.volume(20); // 0-30
21 mp3.play(1); // plays 0001.mp3
22}
23
24void loop() {
25}
📄 File: mp3-tf-16p_sd_card_mp3_module_with_serial_port_-_stm32.inoSTM32
536 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=PA10, TX=PA9 on STM32. MP3 files must be named 0001.mp3, 0002.mp3 etc. in a /mp3 folder on the SD card.
6#define MP3_SERIAL Serial1
7
8#include <DFRobotDFPlayerMini.h>
9
10DFRobotDFPlayerMini mp3;
11
12void setup() {
13 Serial.begin(115200);
14 MP3_SERIAL.begin(9600);
15 if (!mp3.begin(MP3_SERIAL)) {
16 Serial.println("MP3 module not found - check SD card/wiring!");
17 while (1) delay(10);
18 }
19 mp3.volume(20); // 0-30
20 mp3.play(1); // plays 0001.mp3
21}
22
23void loop() {
24}
📄 File: mp3-tf-16p_sd_card_mp3_module_with_serial_port_-_raspberry_pi_pico.inoRaspberry Pi Pico
543 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=1, TX=0 on Raspberry Pi Pico. MP3 files must be named 0001.mp3, 0002.mp3 etc. in a /mp3 folder on the SD card.
6#define MP3_SERIAL Serial1
7
8#include <DFRobotDFPlayerMini.h>
9
10DFRobotDFPlayerMini mp3;
11
12void setup() {
13 Serial.begin(115200);
14 MP3_SERIAL.begin(9600);
15 if (!mp3.begin(MP3_SERIAL)) {
16 Serial.println("MP3 module not found - check SD card/wiring!");
17 while (1) delay(10);
18 }
19 mp3.volume(20); // 0-30
20 mp3.play(1); // plays 0001.mp3
21}
22
23void loop() {
24}
UART MP3 player module - plays files off a microSD card.

Specification

Specification

WeightWeight5,0000 g
Dimensions21 × 21 × 10 cm
input-supply-voltage-v3.2 ~ 5
dac-output24-bit
snr85 dB
supports-sampling-rates-khz8 / 11.025 / 12/16 / 22.05 / 24/32 / 44.1 / 48
operating-temperature-c-40 ~ +70
humidity-range5% ~ 95%

Customer Reviews