The SMPS_LRS-100-12 is a high-efficiency Switch Mode Power Supply (SMPS) designed to convert AC mains voltage to a regulated 12V DC output. This power supply unit (PSU) is commonly used in a wide range of applications, including LED lighting systems, CCTV camera setups, industrial control systems, and other electronics that require a stable 12V DC power source.
Pin No. | Description | Notes |
---|---|---|
1 | AC L (Live) | Input voltage (Live) |
2 | AC N (Neutral) | Input voltage (Neutral) |
3 | FG (Frame Ground) | Protective earth ground |
4 | V- (DC Output -) | Negative output terminal |
5 | V+ (DC Output +) | Positive output terminal |
AC Input Connection:
Grounding:
DC Output Connection:
Power Supply Does Not Start:
Output Voltage Fluctuations:
Overheating:
Q: Can the SMPS_LRS-100-12 be used with an Arduino UNO? A: Yes, it can power an Arduino UNO and other peripherals as long as the total current draw is within the power supply's limits.
Q: What should I do if the power supply is making noise? A: Some noise can be normal, but excessive noise may indicate an overload or a failing component. Reduce the load and check for any signs of damage.
Q: Is it possible to adjust the output voltage? A: The LRS-100-12 model typically has a fixed output voltage of 12V DC. Refer to the manufacturer's datasheet for models with adjustable output.
// No specific code is required for powering an Arduino UNO with the SMPS_LRS-100-12.
// Simply connect the 12V output from the power supply to the VIN and GND pins on the Arduino.
void setup() {
// Initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
// Turn the LED on (HIGH is the voltage level)
digitalWrite(LED_BUILTIN, HIGH);
// Wait for a second
delay(1000);
// Turn the LED off by making the voltage LOW
digitalWrite(LED_BUILTIN, LOW);
// Wait for a second
delay(1000);
}
Note: When using the SMPS_LRS-100-12 to power an Arduino UNO, ensure that the input voltage to the VIN pin does not exceed the recommended maximum for the board (6-20V). The 12V output from the SMPS is within this range.
For further assistance or more detailed information, please refer to the manufacturer's datasheet or contact technical support.