The 5V Switch Mode Power Supply (SMPS), manufactured by Ashish Tech Guruji (Part ID: Power Supply), is a compact and efficient power supply unit designed to deliver a stable 5V DC output. Utilizing switching regulators, this SMPS ensures high efficiency and minimal heat generation, making it ideal for powering a wide range of electronic devices and circuits.
The following table outlines the key technical details of the 5V SMPS:
Parameter | Specification |
---|---|
Input Voltage Range | 100V - 240V AC, 50/60Hz |
Output Voltage | 5V DC ± 5% |
Output Current | Up to 2A |
Efficiency | ≥ 80% |
Ripple and Noise | ≤ 50mV |
Operating Temperature | -10°C to +50°C |
Storage Temperature | -20°C to +85°C |
Dimensions | 50mm x 25mm x 20mm |
Weight | Approximately 30g |
Protection Features | Overload, Short Circuit, Overvoltage |
The 5V SMPS typically has four pins or terminals for input and output connections. The table below describes each pin:
Pin/Terminal | Label | Description |
---|---|---|
1 | AC IN (L) | Live input for AC mains (100V - 240V AC) |
2 | AC IN (N) | Neutral input for AC mains |
3 | DC OUT (+) | Positive 5V DC output |
4 | DC OUT (-) | Ground (GND) for 5V DC output |
Connect the Input Terminals:
Connect the Output Terminals:
Verify Connections:
Power On:
The 5V SMPS can be used to power an Arduino UNO by connecting its output terminals to the Arduino's power input. Below is an example Arduino sketch to blink an LED when powered by the SMPS:
// Example: Blink an LED using Arduino UNO powered by 5V SMPS
// Connect the 5V SMPS output 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
}
No Output Voltage:
Output Voltage Too Low or Unstable:
Excessive Heat Generation:
Buzzing Noise from the SMPS:
Q1: Can the 5V SMPS power a Raspberry Pi?
A1: Yes, the 5V SMPS can power a Raspberry Pi, provided the total current draw (including peripherals) does not exceed 2A.
Q2: Is the SMPS safe to use with sensitive electronics?
A2: Yes, the SMPS provides a stable 5V output with low ripple and noise, making it suitable for sensitive devices.
Q3: Can I use the SMPS in outdoor applications?
A3: The SMPS is not weatherproof. For outdoor use, ensure it is enclosed in a weatherproof housing.
Q4: What happens if I reverse the output polarity?
A4: Reversing the output polarity can damage your circuit. Always double-check connections before powering on.
Q5: How do I know if the SMPS is overloaded?
A5: If the SMPS shuts down or the output voltage drops significantly, it may be overloaded. Reduce the load to resolve the issue.