

The TLV62569 3.3V Buck Converter Breakout (Adafruit Part ID: 4711) is a compact, high-efficiency DC-DC step-down (buck) converter module designed to provide a stable 3.3V output from a higher input voltage. This breakout board is based on the Texas Instruments TLV62569 chip and is ideal for powering low-voltage devices such as microcontrollers, sensors, and other 3.3V logic components.








The following table outlines the key technical details of the TLV62569 3.3V Buck Converter Breakout:
| Parameter | Value |
|---|---|
| Input Voltage Range | 3.0V to 17.0V |
| Output Voltage | 3.3V (fixed) |
| Maximum Output Current | 2A |
| Efficiency | Up to 95% (depending on input voltage/load) |
| Switching Frequency | 1.5 MHz |
| Operating Temperature | -40°C to +125°C |
| Dimensions | 17.8mm x 12.7mm x 4.5mm |
The breakout board has 5 pins, as described in the table below:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin (3.0V to 17.0V). Connect to the power source. |
| GND | Ground pin. Connect to the ground of your circuit. |
| VOUT | Regulated 3.3V output pin. Connect to the load or device requiring 3.3V power. |
| EN | Enable pin. Drive HIGH to enable the converter, or LOW to disable it. |
| PG | Power Good pin. Outputs HIGH when the output voltage is stable. |
Connect the Input Voltage (VIN):
Connect the Ground (GND):
Connect the Output Voltage (VOUT):
Enable the Converter (Optional):
Monitor Power Good (Optional):
The TLV62569 3.3V Buck Converter Breakout can be used to power 3.3V sensors or modules in an Arduino UNO project. Below is an example of connecting the breakout to an Arduino UNO and a 3.3V sensor:
// Example code for reading data from a 3.3V sensor powered by the TLV62569
// Buck Converter Breakout. This example assumes the sensor is connected
// to analog pin A0 of the Arduino UNO.
const int sensorPin = A0; // Analog pin connected to the sensor output
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as an input
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read the sensor value
float voltage = sensorValue * (3.3 / 1023.0); // Convert to voltage (3.3V reference)
// Print the sensor value and voltage to the Serial Monitor
Serial.print("Sensor Value: ");
Serial.print(sensorValue);
Serial.print(" | Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
No Output Voltage:
Output Voltage is Unstable:
Module Overheating:
PG Pin Not Outputting HIGH:
Q: Can I use this module to power a 5V device?
A: No, the TLV62569 breakout provides a fixed 3.3V output. For 5V devices, consider using a different buck converter with a 5V output.
Q: Is it safe to leave the EN pin unconnected?
A: Yes, the EN pin is internally pulled HIGH, so the module will operate normally if the pin is left unconnected.
Q: Can I use this module with a LiPo battery?
A: Yes, the module can step down the voltage from a LiPo battery (e.g., 7.4V or 11.1V) to 3.3V, as long as the input voltage is within the 3.0V to 17.0V range.
Q: Do I need additional capacitors for stable operation?
A: No, the breakout board includes onboard capacitors for stable operation. Additional capacitors are not typically required.