

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 continuity is critical.








| Parameter | Specification |
|---|---|
| Rated Voltage | 230V AC |
| Rated Current | 16A, 32A, or 63A (model-specific) |
| Poles | 2 (Double Pole) |
| Frequency | 50/60 Hz |
| Switching Time | ≤ 3 seconds |
| Control Method | External trigger signal |
| Operating Temperature | -20°C to +55°C |
| Insulation Resistance | ≥ 2MΩ |
| Mechanical Life | ≥ 10,000 cycles |
| Electrical Life | ≥ 5,000 cycles |
The ATS 230V 2P External Trigger typically features the following terminal connections:
| Terminal Label | Description |
|---|---|
| L1 (Input) | Live input from primary power source |
| N1 (Input) | Neutral input from primary power source |
| L2 (Input) | Live input from secondary power source |
| N2 (Input) | Neutral input from secondary power source |
| L (Output) | Live output to the load |
| N (Output) | Neutral output to the load |
| Trigger+ | Positive terminal for external trigger |
| Trigger- | Negative terminal for external trigger |
Wiring the ATS:
L1 and N1.L2 and N2.L and N.Trigger+ and Trigger-.Power Source Selection:
External Trigger:
The ATS can be controlled using an Arduino UNO to send an external trigger signal. Below is an example code snippet:
// Example code to control ATS 230V 2P External Trigger using Arduino UNO
// This code sends a HIGH signal to the ATS trigger pin to switch power sources.
const int triggerPin = 7; // Pin connected to ATS Trigger+
void setup() {
pinMode(triggerPin, OUTPUT); // Set trigger pin as output
digitalWrite(triggerPin, LOW); // Initialize trigger pin to LOW
}
void loop() {
// Simulate switching to secondary power source
digitalWrite(triggerPin, HIGH); // Send HIGH signal to ATS
delay(5000); // Keep secondary source active for 5 seconds
// Switch back to primary power source
digitalWrite(triggerPin, LOW); // Send LOW signal to ATS
delay(5000); // Wait for 5 seconds before next cycle
}
Note: Ensure the Arduino's ground (GND) is connected to the ATS Trigger- terminal.
| Issue | Possible Cause | Solution |
|---|---|---|
| ATS does not switch power sources | Incorrect wiring or loose connections | Verify all connections and wiring. |
| Delayed switching | Faulty external trigger signal | Check the trigger signal source. |
| No output to the load | Power sources not supplying voltage | Ensure both power sources are active. |
| Frequent switching between sources | Unstable primary power source | Stabilize the primary power source. |
Can the ATS handle inductive loads?
What happens if both power sources fail?
Can I manually override the ATS?
Is the ATS compatible with renewable energy systems?
By following this documentation, users can effectively integrate the ATS 230V 2P External Trigger into their power systems for reliable and seamless operation.