No sound PCM5102A

Hello

I'm trying to make an internet radio from this link:

I have a problem that there is no sound on the output in the PCM5102A, I have already tried everything, I changed the load, pins to see if it will work,and I looked at 3 different dac and esp32, but it not help. I have ideas already out , maybe one of you could help me? what else can be checked, where to do next.

Please post schematics. The video is useless in the English speaking section of forum.3

1 Like

That is a nice picture of your hands but not much of your project. Hint: Most of the people on this forum speak English, I am one of them and the video was not understandable.

How to Get the Right Help Faster:

You can spend weeks spinning your wheels, or you might get lucky and solve your problem quickly. To avoid unnecessary delays, it’s crucial to provide an annotated schematic of your circuit as you have it wired, showing all connections, including power, ground, and power supplies. I recommend it be in English, you can translate before posting if needed.`

**Why Detailed Information Matters:

*** Annotated Schematics: These are essential because they show exactly how your circuit is set up. Without them, it's difficult for anyone to understand what you’ve done, which makes troubleshooting nearly impossible. Fritzing diagrams or unclear pictures are not enough.**

*** Technical Information: Many modules look similar and may even have the same name, but they can function differently. This is why we always ask for links to detailed technical information—not just sales pages like those on Amazon, which often lack the specifics we need.**

*** Post your Software Without that we do not have a clue as to how it is expected to operate.**

*** Show All Connections: It’s important to include every connection, especially power and ground, in your schematic. Missing these details makes it hard to determine if a setup issue might be causing your problem.**

My Process:

When I see a question, I spend a moment assessing it. If it’s missing critical information, I might ask for it. However, if it's repeatedly lacking important details, I may assume the questioner is not serious and move on to another query.

What You Need to Consider:

We don’t know your skill level or what resources you have available. If you’re missing key technical details or seem unprepared, it may indicate that you need to spend more time learning the basics before starting your project.

Providing the right information upfront will help you get the best possible assistance and avoid the frustration of running into dead ends. Let us help you by sharing what you have clearly and completely!

Try reading this: How to get the best out of this forum

You're right, I approached it very immaturely and quickly wanted to get something without giving any relevant information. Sorry for this. My English is weak to write I use a tlanslator, please be understanding. I am not experienced, but I started my adventure with it. I saw the construction of this radio on youtube, I wanted to do something similar, later I wanted to add other options. I bought my first time and this.
This board from ESP32 MICRO USB 38-PIN WROOM-32 - Diamond Circuits

It's simple and works for other people, unfortunately it doesn't work for me :frowning:

If there is anything I haven't written about yet, please let me know.

Esp32. Dac PCM5102A

P2 is to Din
P15 is to BCK
P4 is to LCK
3.3v go to vvc
Gnd go to gnd

Power is from Computer or from power supply 5v2A , Samsung charger

Jumper cofiguration on PCM5102A
H1L low
H2L low
H3L high
H4L low

#include <WiFi.h>
#include <Audio.h>

Audio audio;

const char* ssid = "Ssid";
const char* password = "password";

void setup() {
Serial.begin(115200);
delay(1000);

Serial.println("Start");
WiFi.begin(ssid, password);
Serial.println(" Connection with WiFi...");

while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}

Serial.println("\connected with WiFi!");

// PCM5102A – standarts pins I2S
audio.setPinout(27, 26, 25);
audio.setVolume(10);
Serial.println("out DAC setup");

// work STREAM (MP3)
audio.connecttohost("http://stream.radioparadise.com/mp3-192");
Serial.println(" stream start ");
}

void loop() {
audio.loop();
}

How about the schematic? Your description does notwork for me, I do not have the hardware to reference.

Please check the PCM5102A separately. I mean only the PCM5102 with an Arduino or ESP with a minimal code.

I also checked with the code "sound generator" in rhyme helped me gpt , there still silence , nothing can be heard .as far as the scheme is concerned, I will send a diagram exactly which is connected and a picture " jampers"


datasheet - https://www.ti.com/product/PCM5102A