Pam8403 Mini 5V Digital Amplifier Board With Switch Potentiometer
Rs. 50.00 Rs. 58.00
- Brand: https://www.diodes.com/design/support/inactive-datasheet-archive
- Product Code: SEN-AUDIO-AMP
- 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 is PAM8403 Mini 5V Digital Amplifier Board With Switch Potentiometer. PAM8403 is a small digital amplifier chip, high-definition sound quality highlights the advantages of digital chips, the circuit using the most reasonable peripheral configuration, power supply filtering is upgraded to 470uf (some sellers are less did not even 100uf capacitance).
- 1.6mm glass sheet, the real amplifier board did the most detailed, high-fidelity sound output 3W + 3W, is a rare good product enthusiasts amplifier, potentiometer using the original anti-meter body, potentiometer with the switch can cut off the power supply directly counterclockwise.
SPECIFICATIONS | |
Operating Voltage(VDC) | 2.5 to 5.5 |
Maximum Output Power(W) | 3Wx2 |
Shipment Weight | 0.095 kg |
Shipment Dimensions | 5 × 4 × 3 cm |
OVERVIEW:
-Operating voltage: 2.5V-5.5V
-Maximum output power: 3W x 2
-PCB size is about: length 30mm width 22mm overall height after installed is about 16mm
-Built with switch Potentiometer, can adjust the volume & control power switch freely!
-Flexible assembly usage.
-₹ 99.00 (inc GST)
-₹ 83.9 (+18% GST extra)
PACKAGE INCLUDES:
1 PCS x Pam8403 Mini 5V Digital Amplifier Board With Switch Potentiometer
https://www.diodes.com/design/support/inactive-datasheet-archive/?filterable=PAM8403
//SOURCE CODE TAKEN FORM BELOW LINK
//https://forum.arduino.cc/index.php?topic=607805.0
#include <SD.h> // need to include the SD library
#define SD_ChipSelectPin 4 //using digital pin 4 on arduino nano 328
#include <TMRpcm.h> // also need to include this library...
TMRpcm tmrpcm; // create an object for use in this sketch
int SW1;
int SW2;
int SW3;
int SW4;
void setup(){
pinMode(A0,INPUT); //Define A0 as digital input.
pinMode(A1,INPUT); //Define A1 as digital input.
pinMode(A2,INPUT); //Define A2 as digital input.
pinMode(A3,INPUT); //Define A3 as digital input.
digitalWrite(A0, HIGH);
digitalWrite(A1, HIGH);
digitalWrite(A2, HIGH);
digitalWrite(A3, HIGH);
Serial.begin(9600);
tmrpcm.speakerPin = 9; //11 on Mega, 9 on Uno, Nano, etc
if (!SD.begin(SD_ChipSelectPin)) { // see if the card is present and can be initialized:
Serial.println("SD card not initiated");
}
tmrpcm.setVolume(5); // 0-7
}
void loop(){
SW1=digitalRead(A0);
SW2=digitalRead(A1);
SW3=digitalRead(A2);
SW4=digitalRead(A3);
if (SW1 == LOW) {
tmrpcm.play("1.wav");
Serial.println("A0 low");
} else if(SW2 == LOW){
tmrpcm.play("2.wav");
Serial.println("A1 low");
} else if(SW3 == LOW){
tmrpcm.play("3.wav");
Serial.println("A2 low");
} else if(SW4 == LOW){
tmrpcm.play("4.wav");
Serial.println("A3 low");
}
}
15 days