

The Step Down Converter USB module is an electronic device designed to convert higher DC input voltages, typically in the range of 12-24V, to a lower, stable DC output voltage suitable for charging USB devices. This module is commonly used in automotive applications, where the electrical system provides a nominal 12V or 24V, which needs to be stepped down to the 5V required by USB-powered devices such as smartphones, tablets, and GPS units.








| Pin Number | Description | Notes |
|---|---|---|
| 1 | Input Voltage (VIN) | Connect to 12-24V power source |
| 2 | Ground (GND) | Common ground for input/output |
| 3 | USB Output (+5V) | Connect to USB device VCC |
| 4 | USB Output (GND) | Connect to USB device GND |
Q: Can I use this module to power non-USB devices? A: Yes, as long as the device operates at 5V and does not draw more current than the module's rating.
Q: Is the output voltage adjustable? A: No, this module provides a fixed 5V output suitable for USB devices.
Q: Does this module offer protection against reverse polarity? A: This varies by model. Check the specific model's datasheet for protection features.
// No specific code is required for the Step Down Converter USB module
// as it is a power supply component. However, you can monitor the
// output voltage using an Arduino UNO by connecting an analog pin
// to the USB output and reading the voltage.
const int analogPin = A0; // Connect to the USB output (+5V) through a voltage divider
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(analogPin);
float voltage = sensorValue * (5.0 / 1023.0); // Convert the reading to voltage
Serial.print("USB Output Voltage: ");
Serial.println(voltage);
delay(1000); // Wait for a second between readings
}
Note: When connecting the USB output to an analog pin, ensure you use a voltage divider to bring the voltage within the safe range for the Arduino analog input (0-5V).