A Fonte de Alimentação (Power Supply Unit) is an essential electronic component that converts electrical energy from a source (e.g., AC mains or batteries) into a stable and usable form of power for electronic circuits. It ensures that connected devices receive the correct voltage and current required for their operation. Power supplies are available in various types, such as linear, switching, and programmable, to suit different applications.
Below are the general technical specifications for a typical power supply unit. Specifications may vary depending on the specific model and type.
The pin configuration of a power supply depends on its type. Below is an example of a DC-DC power supply module with adjustable output.
Pin Name | Description |
---|---|
VIN | Input voltage pin (connect to the power source, e.g., 12V DC) |
GND | Ground pin (common ground for input and output) |
VOUT | Output voltage pin (provides the regulated voltage, e.g., 5V DC) |
ADJ | Adjustment pin (used to set the output voltage, typically with a potentiometer) |
A 5V DC power supply can be used to power an Arduino UNO. Below is an example of how to connect it and a simple Arduino sketch to blink an LED.
// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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 Too Low or Unstable:
Overheating:
Excessive Noise or Ripple:
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: How do I know if my power supply is overloaded?
A: Symptoms of overloading include voltage drops, overheating, or the power supply shutting down.
Q: Can I connect multiple devices to a single power supply?
A: Yes, but ensure the total current draw of all devices does not exceed the power supply's maximum current rating.
Q: What is the difference between linear and switching power supplies?
A: Linear power supplies are simpler and produce less noise but are less efficient. Switching power supplies are more efficient and compact but may introduce electrical noise.