

The DC-DC 12V 5V 3.3V converter, manufactured by ESP32 (Part ID: 477215632t31), is a versatile and efficient power management component. It is designed to step down or step up input voltage levels to provide stable output voltages of 12V, 5V, and 3.3V. This makes it an essential component for powering a wide range of electronic devices and circuits.








| Parameter | Value | 
|---|---|
| Input Voltage Range | 6V to 24V | 
| Output Voltages | 12V, 5V, 3.3V | 
| Output Current (Max) | 2A (12V), 3A (5V), 3A (3.3V) | 
| Efficiency | Up to 95% | 
| Switching Frequency | 150 kHz | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | 45mm x 25mm x 15mm | 
| Pin Name | Pin Type | Description | 
|---|---|---|
| VIN | Power Input | Connect to the input voltage source (6V to 24V). | 
| GND | Ground | Common ground for input and output. | 
| VOUT_12V | Power Output | Provides a stable 12V output. | 
| VOUT_5V | Power Output | Provides a stable 5V output. | 
| VOUT_3.3V | Power Output | Provides a stable 3.3V output. | 
| EN | Enable Input | Active-high pin to enable the converter. | 
Connect the Input Voltage:
VIN pin.GND pin.Select the Desired Output Voltage:
VOUT_12V, VOUT_5V, or VOUT_3.3V pins to power your devices.Enable the Converter:
EN pin.EN pin is left floating or connected to ground, the converter will remain disabled.Connect the Load:
GND pin.EN pin is not used, connect it to VIN to keep the converter enabled by default.Below is an example of how to use the DC-DC converter to power an Arduino UNO with 5V output:
VIN and GND pins of the converter.VOUT_5V pin to the Arduino's 5V pin.GND pin to the Arduino's GND pin.// Example code to blink an LED using Arduino UNO powered by the DC-DC converter
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
  pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
  digitalWrite(ledPin, HIGH); // Turn the LED on
  delay(1000);                // Wait for 1 second
  digitalWrite(ledPin, LOW);  // Turn the LED off
  delay(1000);                // Wait for 1 second
}
| Issue | Possible Cause | Solution | 
|---|---|---|
| No output voltage | Input voltage is not connected properly | Verify the input voltage and connections. | 
| Output voltage is unstable | Insufficient decoupling capacitors | Add capacitors near the output pins. | 
| Converter overheats | Load exceeds maximum current rating | Reduce the load or improve cooling. | 
| Converter does not turn on | ENpin is not connected or is low | Connect ENpin toVINor a high signal. | 
Can I use this converter with a 24V input?
What happens if I connect a load that exceeds the current rating?
Is it safe to use all three output voltages simultaneously?
Can I use this converter with a lithium-ion battery?
By following this documentation, you can effectively integrate the DC-DC 12V 5V 3.3V converter into your projects and ensure reliable performance.