

The Transformer 3 - 12v is a step-down transformer designed to convert higher AC voltage levels (e.g., 110V or 220V) to a lower AC voltage of 12 volts. This component is widely used in power supply circuits to provide the necessary voltage for various electronic devices, such as LED lighting systems, low-power appliances, and embedded systems. Its robust design ensures reliable performance in both residential and industrial applications.








| Parameter | Value |
|---|---|
| Manufacturer | Transformer 3 - 12v |
| Part ID | Transformer 3 - 12v |
| Input Voltage Range | 110V AC or 220V AC (depending on model) |
| Output Voltage | 12V AC |
| Output Current Rating | 1A to 5A (depending on model) |
| Frequency | 50Hz / 60Hz |
| Efficiency | ≥ 90% |
| Insulation Resistance | ≥ 100MΩ |
| Operating Temperature | -10°C to 50°C |
| Dimensions | Varies by model |
| Weight | Varies by model |
| Pin Number | Label | Description |
|---|---|---|
| 1 | Primary Input 1 | Connect to the live wire of the AC mains input. |
| 2 | Primary Input 2 | Connect to the neutral wire of the AC mains input. |
| 3 | Secondary Output 1 | Provides 12V AC output. |
| 4 | Secondary Output 2 | Provides 12V AC output (complementary to Pin 3). |
Note: Ensure proper insulation and safety precautions when handling the primary side of the transformer, as it is connected to high-voltage AC mains.
Connect the Primary Side:
Connect the Secondary Side:
Optional Rectification:
Grounding:
To power an Arduino UNO using the Transformer 3 - 12v, you will need to convert the 12V AC output to 12V DC using a rectifier and voltage regulator. Below is an example circuit and Arduino code:
// Example code to blink an LED using Arduino UNO powered by Transformer 3 - 12v
// Ensure the transformer output is rectified and regulated to 12V DC before use.
const int ledPin = 13; // Pin connected to the onboard LED
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
}
Warning: Ensure the rectified and regulated DC voltage does not exceed the Arduino UNO's input voltage range (7-12V recommended).
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage on the secondary side | Incorrect wiring on the primary side | Verify the primary connections and input voltage. |
| Transformer overheating | Overloaded secondary side | Reduce the load to within the transformer's rating. |
| High noise or hum in the output | Poor grounding or loose connections | Ensure proper grounding and secure all connections. |
| Output voltage too low | Input voltage too low or high load on secondary | Check the input voltage and reduce the load. |
Can I use this transformer for DC output?
What happens if I exceed the current rating?
Can I use this transformer with a 50Hz or 60Hz mains supply?
Is the transformer waterproof?
By following this documentation, you can safely and effectively use the Transformer 3 - 12v in your electronic projects.