The Switched-Mode Power Supply (SMPS) is an electronic power supply that incorporates a switching regulator to convert electrical power efficiently. Unlike traditional linear power supplies, SMPS uses a high-frequency switching element to regulate the output voltage, resulting in higher efficiency and reduced heat dissipation. This makes SMPS ideal for applications where energy efficiency and compact size are critical.
Parameter | Value |
---|---|
Input Voltage | 90-264V AC |
Output Voltage | 5V, 12V, 24V DC (varies by model) |
Output Current | 0.5A to 20A (varies by model) |
Efficiency | Up to 95% |
Switching Frequency | 20kHz to 1MHz |
Operating Temperature | -20°C to 70°C |
Protection Features | Over-voltage, Over-current, Short-circuit |
Pin Number | Pin Name | Description |
---|---|---|
1 | AC_L | AC Line Input |
2 | AC_N | AC Neutral Input |
3 | GND | Ground |
4 | Vout+ | Positive DC Output |
5 | Vout- | Negative DC Output |
6 | Remote On/Off | Remote Control for On/Off Switching |
7 | PG (Power Good) | Power Good Signal |
Connect the AC Input:
Connect the DC Output:
Grounding:
Remote On/Off Control:
Power Good Signal:
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Power Good Signal Not Active:
If you are using the SMPS with an Arduino UNO to control the Remote On/Off functionality, you can use the following example code:
// Define the pin connected to the Remote On/Off of the SMPS
const int remotePin = 7;
void setup() {
// Initialize the remotePin as an output
pinMode(remotePin, OUTPUT);
// Turn on the SMPS
digitalWrite(remotePin, HIGH);
}
void loop() {
// Example: Toggle the SMPS on and off every 5 seconds
// Turn off the SMPS
digitalWrite(remotePin, LOW);
delay(5000); // Wait for 5 seconds
// Turn on the SMPS
digitalWrite(remotePin, HIGH);
delay(5000); // Wait for 5 seconds
}
This code initializes the remote control pin as an output and toggles the SMPS on and off every 5 seconds. Adjust the pin number and delay times as needed for your specific application.
This documentation provides a comprehensive overview of the Switched-Mode Power Supply (SMPS), including its technical specifications, usage instructions, and troubleshooting tips. Whether you are a beginner or an experienced user, this guide will help you effectively utilize the SMPS in your projects.