diff --git a/extras/ml_pcm5102a.md b/extras/ml_pcm5102a.md
index ff780b9..577b4f2 100644
--- a/extras/ml_pcm5102a.md
+++ b/extras/ml_pcm5102a.md
@@ -1,28 +1,63 @@
-
-| PIN | Description | Connection |
-| VCC | Power Supply | 3V3 output of ESP32 |
-| 3.3V | Power output | can be left open / connected to XMT |
-| GND | Power Supply | GND of ESP32 |
-| FLT | Filter select : Normal latency (Low) / Low latency (High) | can be connected to GND |
-| DMP | e-emphasis control for 44.1-kHz sampling rate(1): Off (Low) / On (High) | can be connected to GND |
-| SCL | System clock input | can be connected to GND |
-| BCK | Audio data bit clock input | Connect to pin number defined by I2S_BCLK_PIN |
-| DIN | Audio data input | Connect to pin number defined by I2S_DOUT_PIN |
-| LCK | Audio data word clock input | Connect to pin number defined by I2S_WCLK_PIN |
-| FMT | Audio format selection : I2S (Low) / Left-justified (High) | Should be connected to GND |
-| XMT | Soft mute control(1): Soft mute (Low) / soft un-mute (High) | Should be to connected 3.3V |
-
-
-Definitions of I2S_BCLK_PIN, I2S_DOUT_PIN, I2S_WCLK_PIN can be found in the selected board or could be placed in the config.h.
-Please ensure that all defined PINs are capable being used as output. Some PINs of the ESP32 can be used as input only.
-I2S_DOUT_PIN refers to the digital output of the ESP32 which shall be connected to DIN of the codec (like tx and rx).
-
-In case ml_boards.h is included you would find there some define depended specific board include which might contain the defines of the I2S PINs.
-
-To drive speakers or headphones an additional amplifier would be recommended.
-
-To test the connection of the DAC I would recommend to enable the audio testmode which can be activated by defining: OUTPUT_SAW_TEST
\ No newline at end of file
+# PCM5102A Breakout Board
+
+This breakout board utilizes the PCM5102A DAC (Digital-to-Analog Converter) to deliver high-quality audio output from digital I2S input. It is particularly well-suited for projects requiring high-resolution audio, providing low-distortion and minimal phase noise. Below, you’ll find an overview of the PCM5102A's features, essential pin configurations, and connection guidelines for stable operation.
+
+---
+
+## Features of the PCM5102A
+
+- **High-Performance Audio DAC**: 24-bit/192kHz PCM audio playback.
+- **Low Distortion and High SNR**: Achieves a signal-to-noise ratio of 112 dB.
+- **Advanced Filtering**: Built-in digital filters for minimizing audio distortion.
+- **Flexible Audio Formats**: Supports I2S and other serial audio formats.
+- **Pop-Noise Free Operation**: Integrated design reduces unwanted audio artifacts.
+
+---
+
+## Signal and Pin Overview
+
+| Signal | Function | Suggested Connection |
+|-----------|-----------------------------------------------------------------------------------------------|----------------------|
+| **VIN** | Power input. Connect to 3.3V to power the PCM5102A. | 3.3V |
+| **GND** | Ground connection | Ground |
+| **LRCK** | Left-Right Clock, also known as Word Clock (WCK). Synchronizes left and right audio channels. | Required for I2S |
+| **DIN** | Digital Input, receives serial data | Required for I2S |
+| **BCK** | Bit Clock, clocks each data bit | Required for I2S |
+| **SCK** | System clock (if unused, connect to ground) | Ground or use bridge |
+| **FLT** | Filter setting | Ground or bridge 1L |
+| **DEMP** | De-emphasis control | Ground or bridge 2L |
+| **XSMT** | Mute control, high to enable audio output | High or bridge H3 |
+| **FMT** | Format selection, low for I2S audio format | Ground or bridge 4L |
+
+
+
+
+
+---
+
+## Connecting the PCM5102A for Stable Operation
+
+For a quick and stable setup of the PCM5102A breakout board:
+
+1. **Power Supply (VIN and GND)**:
+ - Connect **VIN** to 3.3V to power the breakout board and **GND** to the ground of your power source.
+
+2. **System Clock (SCK)**:
+ - This clock can either be connected to a low signal or, if unused, you can bridge the solder pads marked on the top of the board to ground SCK. This simplifies setup for cases where an external clock isn’t required.
+
+3. **Connecting Control Pins**:
+ - For the most stable operation, it’s recommended to ground **FLT**, **DEMP**, and **FMT**.
+ - **XSMT** should be held high to unmute the DAC and allow audio output.
+
+4. **Bottom Solder Pads (H1L, H2L, H3L, H4L)**:
+ These pads allow flexible control by connecting the following pins directly to either high or low signals:
+ - **H1L** - Controls **FLT**
+ - **H2L** - Controls **DEMP**
+ - **H3L** - Controls **XSMT**
+ - **H4L** - Controls **FMT**
+
+Refer to the picture below for these solder pad markings and pin locations on the board.
+
+---
+
+With these setup instructions, your PCM5102A DAC should be properly configured for high-quality audio playback in any project requiring precise and stable DAC operation.