

The PowerTran M 2170C is a step-down transformer designed to convert a 240V AC input into two isolated secondary outputs of 12-15V AC. This transformer is ideal for applications requiring low-voltage AC power, such as power supplies, audio amplifiers, and low-voltage lighting systems. Its dual secondary windings provide flexibility for series or parallel configurations, enabling a range of output voltage and current options.








| Parameter | Value |
|---|---|
| Manufacturer | PowerTran |
| Part Number | M 2170C |
| Input Voltage | 240V AC |
| Output Voltage (Secondary) | Dual 12-15V AC |
| Output Current (Max) | 1.5A per secondary winding |
| Frequency | 50/60 Hz |
| Power Rating | 36VA |
| Insulation Class | Class B (130°C max) |
The transformer has six terminals: two for the primary winding and four for the dual secondary windings.
| Terminal Number | Description |
|---|---|
| 1, 2 | Primary winding (240V AC input) |
| 3, 4 | Secondary winding 1 (12-15V AC) |
| 5, 6 | Secondary winding 2 (12-15V AC) |
Primary Connection:
Secondary Connection:
Rectification and Regulation:
To power an Arduino UNO, the transformer’s AC output must first be converted to DC. Below is an example circuit and code for using the transformer with an Arduino UNO:
// Example code to blink an LED connected to pin 13
// Ensure the Arduino is powered via the transformer circuit
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
}
No Output Voltage:
Overheating:
Incorrect Output Voltage:
Humming Noise:
Q: Can I use this transformer for DC applications?
A: The transformer itself provides AC output. To use it for DC applications, you need to add a rectifier, smoothing capacitor, and voltage regulator.
Q: What happens if I connect the secondary windings incorrectly?
A: Incorrect wiring (e.g., wrong polarity in series or parallel connections) can result in no output or damage to the transformer. Double-check the wiring before powering the circuit.
Q: Can I use this transformer with a 120V AC input?
A: No, this transformer is designed specifically for 240V AC input. Using it with 120V AC will result in reduced output voltage.
Q: Is the transformer suitable for outdoor use?
A: No, the transformer is not weatherproof. It should be used in a dry, indoor environment.
This concludes the documentation for the PowerTran M 2170C Transformer. Always follow safety guidelines and manufacturer recommendations when using this component.