

A power supply is a device that provides electrical energy to a circuit, converting AC or DC voltage from a source into a usable form for electronic components. It is an essential component in virtually all electronic systems, ensuring that devices receive the correct voltage and current for proper operation. Power supplies come in various types, including linear, switching, and programmable models, each suited for specific applications.








Below are the general technical specifications for a typical DC power supply. Specifications may vary depending on the specific model or type.
The pin configuration for a power supply depends on its type. Below is an example for a DC barrel jack connector commonly used in power supplies:
| Pin | Description |
|---|---|
| Positive (+) | Supplies the positive DC voltage output. |
| Negative (-) | Provides the ground connection. |
For a more advanced power supply with screw terminals:
| Terminal | Description |
|---|---|
| V+ | Positive DC voltage output. |
| V- | Ground or negative terminal. |
| Earth (E) | Optional earth/ground connection. |
To power an Arduino UNO using a 9V DC power supply:
Here is an example Arduino sketch to blink an LED while powered by the external supply:
// Blink an LED connected to pin 13
// Ensure the Arduino is powered by a 9V DC power supply
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:
Overheating:
Voltage Fluctuations:
Device Not Powering On:
By following these guidelines and troubleshooting tips, you can ensure reliable operation of your power supply and connected devices.