

The LS35-12 is a compact, low-profile switching power supply designed to deliver a stable 12V DC output with a maximum current of 2.9A. Its robust design includes built-in over-voltage and short-circuit protection, ensuring reliable operation and safeguarding connected devices. This power supply is ideal for powering LED strips, small motors, sensors, and other low-power electronic devices. Its compact size and high efficiency make it a popular choice for both hobbyist and professional applications.








| Parameter | Value |
|---|---|
| Input Voltage Range | 85-264V AC or 120-370V DC |
| Output Voltage | 12V DC |
| Maximum Output Current | 2.9A |
| Output Power | 35W |
| Efficiency | Up to 85% |
| Protection Features | Over-voltage, short-circuit |
| Operating Temperature | -20°C to +70°C |
| Dimensions | 99mm x 82mm x 30mm |
| Weight | ~200g |
The LS35-12 has a simple terminal block for input and output connections. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| L | Live AC input (85-264V AC) |
| N | Neutral AC input |
| FG | Frame Ground (Earth connection) |
| Pin Name | Description |
|---|---|
| V+ | Positive DC output (12V) |
| V- | Negative DC output (Ground) |
Input Connection:
L (Live) and N (Neutral) terminals.FG (Frame Ground) terminal is connected to the earth ground for safety.Output Connection:
V+ and V- terminals.Power On:
The LS35-12 can be used to power an Arduino UNO via its DC barrel jack or VIN pin. Below is an example setup:
V+ terminal of the LS35-12 to the Arduino's VIN pin or DC barrel jack (center pin).V- terminal of the LS35-12 to the Arduino's GND pin or barrel jack outer sleeve.// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the LS35-12 is properly connected to the Arduino's VIN and GND pins.
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect input wiring | Verify AC input connections to L and N. |
| Output voltage fluctuates | Overloaded power supply | Reduce the load to within 35W limit. |
| Power supply overheats | Poor ventilation or excessive load | Ensure proper airflow and reduce load. |
| Connected device not working | Incorrect polarity on output terminals | Verify V+ and V- connections. |
Can the LS35-12 be used with a 24V device?
What happens if the load exceeds 2.9A?
Is the LS35-12 suitable for outdoor use?
Can I use the LS35-12 to charge a 12V battery?
By following these guidelines and best practices, the LS35-12 can provide reliable and efficient power for a wide range of electronic applications.