

The 24V DC to 12V DC Converter (Manufacturer: Swengao, Part ID: WG-24S1205) is a compact and efficient device designed to step down a 24V direct current (DC) voltage to a stable 12V DC output. This converter is widely used in power supply applications to ensure compatibility with devices that operate on 12V DC, such as automotive electronics, LED lighting systems, and industrial equipment.








The following table outlines the key technical details of the WG-24S1205 converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 18V DC to 36V DC |
| Output Voltage | 12V DC |
| Output Current | Up to 5A |
| Output Power | 60W |
| Efficiency | ≥ 95% |
| Operating Temperature | -40°C to +85°C |
| Protection Features | Overload, Overvoltage, Short Circuit |
| Dimensions | 70mm x 40mm x 20mm |
| Weight | 80g |
The WG-24S1205 converter has four pins for input and output connections. The pin configuration is as follows:
| Pin Number | Label | Description |
|---|---|---|
| 1 | VIN+ | Positive input terminal (24V DC) |
| 2 | VIN- | Negative input terminal (Ground) |
| 3 | VOUT+ | Positive output terminal (12V DC) |
| 4 | VOUT- | Negative output terminal (Ground) |
VIN+ and VIN- pins of the converter. Ensure the input voltage is within the specified range (18V to 36V DC).VOUT+ and VOUT- pins. Verify that the load does not exceed the maximum output current of 5A.The WG-24S1205 can be used to power an Arduino UNO from a 24V DC source. Below is an example wiring diagram and Arduino code to blink an LED:
VIN+ and VIN- pins of the converter to the 24V DC power source.VOUT+ and VOUT- pins to the Arduino UNO's VIN and GND pins, respectively.// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered via the 12V output of the WG-24S1205 converter.
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect input connections or polarity | Verify input connections and polarity. |
| Output voltage is unstable | Input voltage is outside the specified range | Ensure input voltage is between 18V and 36V DC. |
| Converter overheats | Insufficient ventilation or excessive load | Improve airflow or reduce the load. |
| Load does not power on | Load exceeds maximum output current | Use a load within the 5A limit. |
Can I use this converter with a 12V battery as the input?
What happens if the input voltage exceeds 36V?
Is the converter waterproof?
Can I connect multiple converters in parallel for higher current?
By following this documentation, users can effectively integrate the WG-24S1205 into their projects and ensure reliable operation.