Stufin
Home Quick Cart Profile

Digital Power Amplifier Board, TPA3116D2 chip, Dual 50W, high Definition Sound, 12-24V

Buy Now on Stufin

Component Name

Digital Power Amplifier Board, TPA3116D2 chip, Dual 50W, High Definition Sound, 12-24V

Overview

The Digital Power Amplifier Board is a high-performance audio amplifier module designed to deliver high-quality, high-power sound reproduction. Equipped with the TPA3116D2 chip, this amplifier board is capable of producing 50W of power per channel, making it an ideal solution for various audio applications.

Functionality

The Digital Power Amplifier Board is designed to amplify audio signals from a variety of sources, such as microcontrollers, audio codecs, or other audio devices. The board takes in a digital audio signal, converts it to an analog signal, and amplifies it to drive speakers or other audio transducers. The amplifier's high power rating and high-definition sound capability make it suitable for applications that require clear and powerful audio reproduction.

Key Features

### Amplifier Specifications

Power Output

Dual 50W per channel (100W total)

Supply Voltage

12-24V DC

Operating Frequency

20Hz to 20kHz

Signal-to-Noise Ratio (SNR)102 dB
Total Harmonic Distortion (THD)0.1% (at 1 kHz, 20W output)
### TPA3116D2 Chip Features

High-Efficiency Class-D Amplifier

Low Noise and Distortion

High-Speed MOSFET Switching

Built-in Over-Temperature Protection

Short-Circuit Protection

Under-Voltage Lockout

### Board Features

Compact Design

45mm x 34mm (1.77" x 1.34")

PCB Material

High-quality FR4 glass epoxy

Components

High-reliability, surface-mount components

Connectors

Screw terminals for easy speaker connection

### Additional Features

Standby Mode

Reduces power consumption when not in use

Low Heat Generation

High-efficiency design minimizes heat generation

Easy to Use

Simple connection and operation, no complicated setup required

Applications

The Digital Power Amplifier Board is suitable for various applications, including

Home Audio Systems

Car Audio Systems

Portable Speakers

PA Systems

Audio Devices for IoT Projects

Industrial Audio Applications

The Digital Power Amplifier Board comes with

1 x TPA3116D2 Chip-based Amplifier Board

1 x User Manual

Warranty and Support

The Digital Power Amplifier Board comes with a one-year warranty and dedicated technical support for any inquiries or issues.

By providing high-quality audio amplification and robust feature set, the Digital Power Amplifier Board is an ideal solution for a wide range of audio applications.

Pin Configuration

  • Digital Power Amplifier Board, TPA3116D2 chip, Dual 50W, High Definition Sound, 12-24V
  • The Digital Power Amplifier Board, featuring the TPA3116D2 chip, is a high-performance dual-channel audio amplifier designed for high-fidelity sound applications. The board operates on a power supply between 12V to 24V and is capable of delivering up to 50W of power per channel. Below is a detailed explanation of each pin on the board, including their functions and connection guidelines.
  • Pinout:
  • 1. VIN (Input Voltage):
  • Function: Power supply input (12V to 24V)
  • Connection: Connect to a power source (e.g., battery, wall adapter) within the specified voltage range
  • 2. GND (Ground):
  • Function: System ground
  • Connection: Connect to the negative terminal of the power source and to other components' ground pins
  • 3. BYPASS (Bypass Capacitor):
  • Function: Decoupling capacitor for power supply noise filtering
  • Connection: Connect a 10uF to 100uF ceramic capacitor between this pin and GND
  • 4. FLT (Fault):
  • Function: Fault detection output (active low)
  • Connection: Connect to a microcontroller or external circuit to monitor amplifier faults (e.g., overcurrent, overtemperature)
  • 5. SD (Shutdown):
  • Function: Amplifier shutdown input (active low)
  • Connection: Connect to a microcontroller or switch to enable/disable the amplifier
  • 6. L_IN (Left Channel Input):
  • Function: Analog audio input for the left channel
  • Connection: Connect to a line-level audio source (e.g., audio codec, DAC) or a potentiometer to adjust the input level
  • 7. L_OUT (Left Channel Output):
  • Function: Amplified audio output for the left channel
  • Connection: Connect to a speaker, headphone, or other audio device
  • 8. R_IN (Right Channel Input):
  • Function: Analog audio input for the right channel
  • Connection: Connect to a line-level audio source (e.g., audio codec, DAC) or a potentiometer to adjust the input level
  • 9. R_OUT (Right Channel Output):
  • Function: Amplified audio output for the right channel
  • Connection: Connect to a speaker, headphone, or other audio device
  • 10. JP1 (Jumpers):
  • Function: Mode selection (e.g., gain, mute)
  • Connection: Short the relevant jumper pins to select the desired mode ( consult the datasheet for specific configurations)
  • Important Notes:
  • Ensure proper decoupling by connecting a capacitor between VIN and GND as close to the power input as possible.
  • Use adequate heat dissipation measures (e.g., heat sink, thermal tape) to prevent overheating.
  • Follow proper PCB layout and wiring techniques to minimize electrical noise and EMI.
  • Consult the TPA3116D2 datasheet for detailed information on amplifier operation, configuration, and safety precautions.
  • By following these guidelines, you can successfully integrate the Digital Power Amplifier Board into your audio project, ensuring high-quality sound reproduction and reliable operation.

Code Examples

Digital Power Amplifier Board, TPA3116D2 chip, Dual 50W, High Definition Sound, 12-24V
Overview
The Digital Power Amplifier Board, TPA3116D2 chip, Dual 50W, High Definition Sound, 12-24V is a high-performance digital power amplifier module designed for audio applications. It features the Texas Instruments TPA3116D2 audio power amplifier chip, which provides high-fidelity audio amplification with low distortion and noise. The board is capable of delivering up to 50W of power per channel, making it suitable for a wide range of applications, including home audio systems, automotive audio systems, and professional audio equipment.
Pinout and Connections
The Digital Power Amplifier Board has the following pinout and connections:
VIN: Input voltage (12-24V)
 GND: Ground
 LCH: Left channel audio input
 RCH: Right channel audio input
 LSPK+: Left speaker positive output
 LSPK-: Left speaker negative output
 RSPK+: Right speaker positive output
 RSPK-: Right speaker negative output
Code Examples
### Example 1: Basic Audio Amplification using Arduino
In this example, we will use the Digital Power Amplifier Board with an Arduino board to amplify an audio signal from a microphone.
```c++
const int micPin = A0;  // Microphone pin
const int leftChanPin = 2;  // Left channel audio output pin
const int rightChanPin = 3;  // Right channel audio output pin
void setup() {
  pinMode(micPin, INPUT);
  pinMode(leftChanPin, OUTPUT);
  pinMode(rightChanPin, OUTPUT);
}
void loop() {
  int micValue = analogRead(micPin);
  int leftValue = map(micValue, 0, 1023, 0, 255);
  int rightValue = leftValue;  // Mono audio, duplicate left channel to right channel
analogWrite(leftChanPin, leftValue);
  analogWrite(rightChanPin, rightValue);
  delay(1);
}
```
### Example 2: Audio Amplification with I2S Encoded Audio using ESP32
In this example, we will use the Digital Power Amplifier Board with an ESP32 board to amplify an I2S encoded audio signal from a codec.
```c++
#include <WiFi.h>
#include <I2S.h>
#define I2S_CLK 22  // I2S clock pin
#define I2S_WS 23  // I2S word select pin
#define I2S_SD 24  // I2S serial data pin
#define AMP_LEFT 25  // Left channel audio output pin
#define AMP_RIGHT 26  // Right channel audio output pin
void setup() {
  I2S.begin(I2S_CLK, I2S_WS, I2S_SD);
  pinMode(AMP_LEFT, OUTPUT);
  pinMode(AMP_RIGHT, OUTPUT);
}
void loop() {
  int16_t leftSample, rightSample;
  I2S.read(leftSample, rightSample);
// Scale I2S samples to 0-255 range for amplifier
  leftSample = map(leftSample, -32768, 32767, 0, 255);
  rightSample = map(rightSample, -32768, 32767, 0, 255);
analogWrite(AMP_LEFT, leftSample);
  analogWrite(AMP_RIGHT, rightSample);
  delayMicroseconds(10);
}
```
Note: The above examples assume that the Digital Power Amplifier Board is properly connected to the corresponding pins on the microcontroller board, and that the audio inputs are properly configured. The examples provided are for illustration purposes only, and may require modifications to work with specific hardware configurations.
Additional Information
The Digital Power Amplifier Board can operate from a 12-24V power supply, and can deliver up to 50W of power per channel.
 The board features overcurrent protection, overvoltage protection, and thermal protection to ensure safe operation.
 The TPA3116D2 chip features a high signal-to-noise ratio (SNR) of 102dB, and a total harmonic distortion (THD) of 0.1%.
 The board is suitable for a wide range of audio applications, including home audio systems, automotive audio systems, and professional audio equipment.