

The OEP50Wx2 is a dual-channel audio transformer designed for high-fidelity audio applications. Manufactured by Sunhokey, this component provides excellent isolation and impedance matching between audio devices, ensuring minimal signal distortion and optimal audio quality. It is particularly suited for use in audio amplifiers, mixers, and other professional audio equipment.








Below are the key technical details for the OEP50Wx2:
| Parameter | Value |
|---|---|
| Manufacturer | Sunhokey |
| Part ID | 50W+50W Dual Channel Class D Digital Audio Power Amplifier Board |
| Channels | 2 (Dual Channel) |
| Power Output | 50W per channel |
| Frequency Response | 20 Hz – 20 kHz |
| Impedance | 4–8 Ω |
| Signal-to-Noise Ratio (SNR) | ≥ 90 dB |
| Total Harmonic Distortion | ≤ 0.1% |
| Input Voltage | 12V–24V DC |
| Dimensions | 100 mm x 60 mm x 20 mm |
| Weight | 80 g |
The OEP50Wx2 features the following pin configuration:
| Pin Name | Description |
|---|---|
| VIN+ | Positive DC power input (12V–24V) |
| GND | Ground connection |
| L_IN | Left channel audio input |
| R_IN | Right channel audio input |
| L_OUT+ | Positive output for the left audio channel |
| L_OUT- | Negative output for the left audio channel |
| R_OUT+ | Positive output for the right audio channel |
| R_OUT- | Negative output for the right audio channel |
VIN+ and GND pins. Ensure the power supply can provide sufficient current for the amplifier's operation.L_IN and R_IN pins, respectively. Use shielded cables to minimize noise.L_OUT+, L_OUT-, R_OUT+, and R_OUT- pins. Ensure the speakers have an impedance of 4–8 Ω.The OEP50Wx2 can be used with an Arduino UNO to create a simple audio playback system. Below is an example of how to generate a PWM audio signal using the Arduino and feed it into the amplifier:
/*
Example: Generating a PWM audio signal for the OEP50Wx2 amplifier
This code generates a simple square wave audio signal on pin 9.
Connect pin 9 to the L_IN or R_IN pin of the amplifier.
*/
const int audioPin = 9; // PWM output pin for audio signal
void setup() {
pinMode(audioPin, OUTPUT); // Set the audio pin as an output
}
void loop() {
// Generate a square wave at 1 kHz
digitalWrite(audioPin, HIGH); // Set the pin HIGH
delayMicroseconds(500); // Wait for 500 microseconds (1 kHz frequency)
digitalWrite(audioPin, LOW); // Set the pin LOW
delayMicroseconds(500); // Wait for 500 microseconds
}
Note: This example generates a basic square wave signal. For high-quality audio playback, consider using an external DAC or audio shield with the Arduino.
No Audio Output:
Distorted Audio:
Overheating:
Noise or Hum:
VIN+ and GND pins.By following this documentation, users can effectively integrate the OEP50Wx2 into their audio systems and troubleshoot common issues with ease.