

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 unregulated, each suited for specific applications.








Below are the general technical specifications for a typical power supply. Note that specific models may vary in their ratings and features.
For a DC power supply with a barrel jack connector, the pin configuration is as follows:
| Pin Name | Description |
|---|---|
| Positive (+) | Supplies the positive DC voltage output. |
| Negative (-) | Ground connection for the circuit. |
For a power supply with screw terminals:
| Terminal Name | Description |
|---|---|
| V+ | Supplies the positive DC voltage output. |
| V- | Ground connection for the circuit. |
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:
Q: Can I use a power supply with a higher current rating than my device requires?
A: Yes, as long as the voltage matches, the device will only draw the current it needs.
Q: What happens if I reverse the polarity of the connections?
A: Reversing polarity can damage your circuit. Always double-check connections before powering on.
Q: How do I know if my power supply is regulated?
A: Regulated power supplies maintain a constant output voltage regardless of load changes. Check the product specifications or test the output with varying loads.
Q: Can I use a single power supply for multiple devices?
A: Yes, provided the total current draw of all devices does not exceed the power supply's maximum current rating.