









| Pin Name | Description |
|---|---|
| +V | Positive 5V output |
| GND | Ground (0V reference) |
| Pin Name | Description |
|---|---|
| VIN | Input voltage (e.g., 6-12V DC) |
| GND | Ground (shared for input and output) |
| VOUT | Regulated 5V output |
| Pin Name | Description |
|---|---|
| VBUS | Positive 5V output |
| GND | Ground (0V reference) |
Connecting the PSU:
Important Considerations:
Using with Arduino UNO:
// Example: Blink an LED using a 5V PSU and Arduino UNO
// Connect the 5V PSU to the Arduino's 5V and GND pins.
// Connect an LED to pin 13 with a 220-ohm resistor.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Output Voltage is Unstable:
PSU Overheating:
Can I use a 5V PSU to power multiple devices? Yes, as long as the total current draw of all devices does not exceed the PSU's maximum current rating.
What happens if I connect a higher input voltage than specified? This may damage the PSU or cause it to shut down. Always stay within the recommended input voltage range.
Can I use a 5V PSU with a battery-powered circuit? Yes, but ensure the PSU's ground is connected to the circuit's ground for proper operation.
How do I know if my PSU is working correctly? Use a multimeter to measure the output voltage. It should be close to 5V (±5%).