The DC-DC Step-down Buck Converter Mini 560 PRO 3.3V by Tinytronics is a high-efficiency voltage regulator designed to step down input voltages ranging from 5.5V to 32V to a stable 3.3V output. With a maximum output current of 5A, this converter is ideal for powering low-voltage devices such as microcontrollers, sensors, and other 3.3V electronics from higher voltage sources like batteries or power supplies.
Parameter | Value |
---|---|
Manufacturer | Tinytronics |
Part ID | Mini 560 PRO 3.3V |
Input Voltage Range | 5.5V to 32V |
Output Voltage | 3.3V (fixed) |
Maximum Output Current | 5A |
Efficiency | Up to 95% |
Switching Frequency | 150 kHz |
Operating Temperature | -40°C to +85°C |
Dimensions | 22mm x 17mm x 4mm |
Pin Name | Description |
---|---|
VIN+ | Positive input voltage (5.5V to 32V). Connect to the positive terminal of the power source. |
VIN- | Negative input voltage (GND). Connect to the ground of the power source. |
VOUT+ | Positive output voltage (3.3V). Connect to the load's positive terminal. |
VOUT- | Negative output voltage (GND). Connect to the load's ground terminal. |
Connect the Input Voltage:
VIN+
pin.VIN-
pin.Connect the Output Voltage:
VOUT+
pin to the positive terminal of your load (e.g., microcontroller, sensor).VOUT-
pin to the ground terminal of your load.Verify Connections:
Power On:
While the Arduino UNO operates at 5V, you can use the Mini 560 PRO 3.3V to power 3.3V peripherals connected to the Arduino. Below is an example of connecting a 3.3V sensor to the Arduino using the buck converter.
VIN+
and VIN-
to a 12V power source.VOUT+
and VOUT-
to the sensor's power pins.// Example code to read data from a 3.3V sensor connected via the Mini 560 PRO
// Ensure the sensor's data pin is connected to Arduino pin A0
const int sensorPin = A0; // Analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(1000); // Wait for 1 second before the next reading
}
Issue | Possible Cause | Solution |
---|---|---|
No output voltage | Incorrect input connections | Verify VIN+ and VIN- connections. |
Output voltage is unstable | Input voltage is too low or noisy | Ensure input voltage is within range and use a capacitor to filter noise. |
Converter overheats | Excessive load current | Reduce the load or improve heat dissipation with a heatsink. |
Connected device not working | Load exceeds 5A or incorrect wiring | Check load current and verify wiring. |
Can I adjust the output voltage?
What happens if I exceed the input voltage range?
Can I use this converter with a battery?
Is reverse polarity protection included?
This concludes the documentation for the DC-DC Step-down Buck Converter Mini 560 PRO 3.3V. For further assistance, refer to the manufacturer's datasheet or contact Tinytronics support.