

The ATS 230V 2P External Trigger is an Automatic Transfer Switch designed for 230V applications with a 2-pole configuration. This device ensures seamless switching between two power sources, such as a primary utility supply and a backup generator, to maintain continuous power during outages or scheduled maintenance. It is equipped with an external trigger mechanism for enhanced control and automation.








| Parameter | Specification |
|---|---|
| Rated Voltage | 230V AC |
| Rated Current | 63A (varies by model) |
| Poles | 2 (Double Pole) |
| Frequency | 50/60 Hz |
| Switching Time | ≤ 3 seconds |
| Control Method | External trigger |
| 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) | Line input from primary power source |
| N1 (Input) | Neutral input from primary power source |
| L2 (Input) | Line input from secondary (backup) power source |
| N2 (Input) | Neutral input from secondary (backup) power source |
| L (Output) | Line output to the load |
| N (Output) | Neutral output to the load |
| Trigger+ | Positive terminal for external trigger signal |
| Trigger- | Negative terminal for external trigger signal |
Wiring the ATS:
L1 and N1 terminals.L2 and N2 terminals.L and N output terminals.External Trigger Setup:
Trigger+ and Trigger- terminals.Power On:
The external trigger of the ATS can be controlled using an Arduino UNO. Below is an example code snippet to toggle the ATS using a digital output pin:
// Example code to control ATS external trigger using Arduino UNO
// Connect Arduino digital pin 7 to Trigger+ and GND to Trigger-
const int triggerPin = 7; // Define the pin connected to Trigger+
void setup() {
pinMode(triggerPin, OUTPUT); // Set triggerPin as an output
digitalWrite(triggerPin, LOW); // Ensure trigger is initially off
}
void loop() {
// Simulate switching to backup power
digitalWrite(triggerPin, HIGH); // Activate external trigger
delay(5000); // Keep trigger active for 5 seconds
// Simulate switching back to primary power
digitalWrite(triggerPin, LOW); // Deactivate external trigger
delay(10000); // Wait for 10 seconds before next cycle
}
Note: Ensure the external trigger voltage and current requirements are compatible with the Arduino's output.
| Issue | Possible Cause | Solution |
|---|---|---|
| ATS does not switch to backup power | Backup power source is not connected | Verify wiring and ensure backup source is active |
| Delayed switching | External trigger signal is unstable | Check the trigger signal and connections |
| Load does not receive power | Incorrect wiring or loose connections | Double-check all terminal connections |
| ATS overheats | Load exceeds rated current | Reduce load or use a higher-rated ATS |
Can the ATS handle inductive loads like motors?
What happens if both power sources fail?
Can I manually override the ATS?
Is the ATS compatible with solar inverters?
By following this documentation, users can effectively integrate and operate the ATS 230V 2P External Trigger in their power systems.