

The ATS 230V 2P External Trigger is an Automatic Transfer Switch designed for 230V applications with a 2-pole configuration. This device ensures uninterrupted power supply by automatically switching between two power sources, such as a primary utility grid and a backup generator. It is particularly useful in residential, commercial, and industrial settings where power reliability is critical. The external trigger feature allows for remote control or automation of the switching process, enhancing flexibility and ease of use.








| Parameter | Specification |
|---|---|
| Rated Voltage | 230V AC |
| Rated Current | 63A |
| Poles | 2 (Double Pole) |
| Frequency | 50/60 Hz |
| Switching Time | ≤ 3 seconds |
| Control Voltage | 12V DC (external trigger input) |
| Operating Temperature | -20°C to 55°C |
| Insulation Resistance | ≥ 100 MΩ |
| Mechanical Life | ≥ 10,000 cycles |
| Electrical Life | ≥ 5,000 cycles |
The ATS 230V 2P External Trigger has the following terminal connections:
| Terminal Label | Description |
|---|---|
| L1-IN | Line input from primary power source |
| N1-IN | Neutral input from primary power source |
| L2-IN | Line input from secondary power source |
| N2-IN | Neutral input from secondary power source |
| L-OUT | Line output to load |
| N-OUT | Neutral output to load |
| TRIG+ | Positive terminal for external trigger |
| TRIG- | Negative terminal for external trigger |
Wiring the Power Sources:
L1-IN and N1-IN terminals.L2-IN and N2-IN terminals.Connecting the Load:
L-OUT and N-OUT terminals.External Trigger Setup:
TRIG+ and TRIG- terminals.Power On:
The external trigger feature can be controlled using an Arduino UNO. Below is an example code to activate the ATS using a digital output pin:
// Example code to control ATS external trigger using Arduino UNO
// Connect Arduino digital pin 7 to TRIG+ and GND to TRIG-
const int triggerPin = 7; // Define the pin connected to TRIG+
void setup() {
pinMode(triggerPin, OUTPUT); // Set triggerPin as an output
digitalWrite(triggerPin, LOW); // Ensure trigger is initially off
}
void loop() {
// Simulate switching to secondary power source
digitalWrite(triggerPin, HIGH); // Activate external trigger
delay(5000); // Keep trigger active for 5 seconds
digitalWrite(triggerPin, LOW); // Deactivate external trigger
delay(10000); // Wait for 10 seconds before next activation
}
Note: Ensure the Arduino's 5V output is stepped up to 12V using a transistor or relay circuit to match the ATS trigger voltage requirement.
| Issue | Possible Cause | Solution |
|---|---|---|
| ATS does not switch to secondary source | Primary source is still active | Verify primary source status and wiring |
| External trigger signal not detected | Check trigger voltage and connections | |
| Load does not receive power | Incorrect wiring of load terminals | Verify connections to L-OUT and N-OUT |
| Faulty ATS | Inspect ATS for damage or defects | |
| External trigger not functioning | Trigger voltage is incorrect | Ensure 12V DC is supplied to TRIG+ |
| Arduino or control circuit malfunction | Test control circuit and replace if needed |
Can the ATS handle inductive loads like motors?
What happens if both power sources fail?
Can I use the ATS for DC power sources?
Is manual switching possible with this ATS?
How do I test the ATS functionality?
By following this documentation, users can effectively integrate the ATS 230V 2P External Trigger into their power systems for reliable and seamless operation.