Wish List 0

Gpd2846A Tf Card Mp3 Decoder Board 2W Amplifier Module

Rs. 69.00 Rs. 79.00

  • Product Code: SEN-PLAYBACK
  • SKU -
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-This TF card MP3 decoder board utilises the GPD2856A MP3 decoder IC and has an onboard 2-watt L/R blended mono audio amplifier IC (8002).
-This module is the updated model of the sooner GPD2846A TF card MP3 decoder board, and on this modern-day version, there's a TF card slot for a micro-SD reminiscence card and an LED electricity indicator.
-The board measures 35-mm × 22-mm and calls for simplest a electricity supply, direct speaker connection, and switches.
-The producer recommends a working voltage of 3.7 to 5-V.

Specifications and Features:
1. Working Voltage: 3.7V Lithium Battery 600MA or 5V USB Power Supply
2. Main Chip:GPD2846A
3. Chip Footprint: SOP16
4. PCB Size(LxWxH)mm :35 x 23 x 1
5. With 2W Mixed Mono
6. With Power supply, it can play Automatically
7. With Multifunction LED indicator
8. Supports MP3 format playback
9. Supports USB audio mode
10. Supports 3 types FM radio chip: RDA5807, BK1080 and RTC6207E.
11. Does not support infrared remote control.
12. Does not support USB device mode.


SPECIFICATIONS:
Operating voltage (v)   5
Chip                    GPD2846A
Chip Footprint          SOP16

OVERVIEW:

-Working Voltage: 3.7V Lithium Battery 600MA or 5V USB Power Supply

-With Power supply, it can play Automatically

-With Multifunction LED indicator

-Supports MP3 format playback

-Supports USB audio mode

PACKAGE INCLUDES:

1 PCS x Gpd2846A Tf Card Mp3 Decoder Board 2W Amplifier Module


PACKAGE INCLUDES:

1 PCS x Gpd2846A Tf Card Mp3 Decoder Board 2W Amplifier Module


//SOURCE CODE TAKEN FROM BELOWLINK

//https://github.com/SteveAmor/GPD2846/blob/master/examples/MP3_Serial_Control/MP3_Serial_Control.ino

/*

  MP3_Serial_Control.ino - Example to control GPD2846 MP3 player.

  Created by Stephen Amor, August 16, 2017.

  Released into the public domain.

  Connect S1, S2 and S3 pads direct to Arduino pins (D2, D3, D4 in this example).

  Also need a common ground between the Arduino and MP3 player so connect GND between the two.

  You can also power the MP3 player via the Arduino 5v (BAT+ on MP3 player).

  Run the serial monitor and use single character commands to change volume, skip tracks and play / pause.

*/


#include <GPD2846.h>


GPD2846 mp3(2,3,4); // Arduino pins D2 = S1, D3 = S2, D4 = S3 on MP3 player


void setup() {

  Serial.begin(115200);

}


void loop() {

  checkForSerialCommand();

}


void checkForSerialCommand() {

  char serialCommand=' ';

  if(Serial.available()>0) {

    serialCommand=Serial.read();

    Serial.flush();

  }

  switch(serialCommand) {

    case 'f': // skip forward

      mp3.next();  

      break;

    case 'd': // volume down

      mp3.volumeDown();

      break;

    case 'p': // pause on or off

      mp3.pause();  // could use mp3.play();

      break;

    case 'b': // skip back

      mp3.previous();

      break;

    case 'u': // volume up

      mp3.volumeUp();

      break;

    default:

      break;    

  }

}

15 days

Write a review

Please login or register to review