

A Power Supply Unit (PSU) is an essential electronic component that converts electrical power from an outlet into usable power for a computer or other electronic devices. It ensures the delivery of the correct voltage and current required by the connected components, protecting them from power surges and fluctuations. PSUs are available in various configurations to meet the needs of different devices and systems.








Below are the general technical specifications for a standard PSU. Specifications may vary depending on the model and manufacturer.
The pin configuration of a PSU depends on its type. Below is an example of the pinout for a standard ATX PSU used in computers:
| Pin Number | Signal Name | Description |
|---|---|---|
| 1 | +3.3V | 3.3V DC output |
| 2 | +5V | 5V DC output |
| 3 | +12V | 12V DC output |
| 4 | GND | Ground |
| 5 | PS_ON | Power supply on/off control (active low) |
| 6 | PWR_OK | Power good signal |
| 7 | -12V | -12V DC output |
| 8 | +5VSB | 5V standby power |
PS_ON pin to ground to turn on the power supply.PWR_OK signal to ensure the PSU is functioning correctly.+5VSB pin for low-power standby applications.To power an Arduino UNO using a PSU, follow these steps:
5V pin and the ground to the GND pin.Here is an example Arduino sketch to test the setup:
// Simple LED Blink Test for Arduino UNO
// Ensure the PSU is providing 5V to the Arduino's 5V and GND pins.
const int ledPin = 13; // Built-in LED pin on Arduino UNO
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
}
PS_ON pin is connected to ground.PWR_OK signal to ensure the PSU is functioning correctly.Q: Can I use a PSU with a higher wattage than my device requires?
A: Yes, a PSU with a higher wattage rating can be used as long as the voltage matches the device's requirements. The device will only draw the power it needs.
Q: How do I test a PSU without connecting it to a device?
A: For ATX PSUs, you can use a paperclip or jumper wire to connect the PS_ON pin to ground. This will turn on the PSU, allowing you to measure the output voltages with a multimeter.
Q: What is the purpose of the +5VSB pin?
A: The +5VSB pin provides standby power, which is useful for powering low-power circuits or maintaining certain functions (e.g., wake-on-LAN) when the PSU is off.
Q: Can I repair a faulty PSU?
A: Repairing a PSU is not recommended unless you have expertise in electronics. Faulty PSUs can be dangerous due to high voltages and stored energy in capacitors.
By following this documentation, you can safely and effectively use a PSU in your projects and troubleshoot common issues.