

The ATS 1 Phase is an Automatic Transfer Switch designed for single-phase electrical systems. It ensures uninterrupted power supply by automatically switching between a primary power source (e.g., utility grid) and a backup power source (e.g., generator or inverter) during power outages or fluctuations. This component is widely used in residential, commercial, and industrial applications where continuous power is critical.








The ATS 1 Phase is designed to handle single-phase power systems with the following specifications:
| Parameter | Value |
|---|---|
| Operating Voltage Range | 110V AC to 240V AC |
| Maximum Current Rating | 63A |
| Frequency | 50Hz / 60Hz |
| Switching Time | ≤ 10ms |
| Control Voltage | 12V DC or 24V DC (depending on model) |
| Operating Temperature | -20°C to 55°C |
| Enclosure Protection | IP30 (indoor use) |
| Dimensions | 200mm x 150mm x 100mm |
| Weight | 1.5kg |
The ATS 1 Phase has terminal connections for both the primary and backup power sources, as well as load output. Below is the pin configuration:
| Terminal Label | Description |
|---|---|
| L1 (Primary) | Live input from the primary power source |
| N1 (Primary) | Neutral input from the primary power source |
| L2 (Backup) | Live input from the backup power source |
| N2 (Backup) | Neutral input from the backup power source |
| L (Load) | Live output to the load |
| N (Load) | Neutral output to the load |
| GND | Ground connection for safety |
Power Source Connections:
Load Connection:
Grounding:
Control Voltage:
Testing:
The ATS 1 Phase can be monitored using an Arduino UNO to detect the active power source. Below is an example code snippet:
// Example code to monitor ATS status using Arduino UNO
// Connect ATS status output pins to Arduino digital pins 2 and 3
const int primaryStatusPin = 2; // Pin connected to primary source status
const int backupStatusPin = 3; // Pin connected to backup source status
void setup() {
pinMode(primaryStatusPin, INPUT); // Set primary status pin as input
pinMode(backupStatusPin, INPUT); // Set backup status pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int primaryStatus = digitalRead(primaryStatusPin); // Read primary status
int backupStatus = digitalRead(backupStatusPin); // Read backup status
if (primaryStatus == HIGH) {
Serial.println("Primary power source is active.");
} else if (backupStatus == HIGH) {
Serial.println("Backup power source is active.");
} else {
Serial.println("No power source is active.");
}
delay(1000); // Wait for 1 second before next reading
}
ATS Does Not Switch to Backup Power:
Frequent Switching Between Sources:
No Output to Load:
Control Circuit Not Responding:
Q1: Can the ATS 1 Phase be used outdoors?
A1: No, the ATS 1 Phase is rated for indoor use only (IP30). Use an enclosure for outdoor installations.
Q2: What happens if both power sources fail?
A2: The ATS will not provide output to the load if both sources are unavailable. Consider adding a UPS for critical systems.
Q3: Can the ATS handle three-phase systems?
A3: No, the ATS 1 Phase is specifically designed for single-phase systems. Use a three-phase ATS for such applications.
Q4: How often should the ATS be maintained?
A4: It is recommended to inspect and maintain the ATS every 6 to 12 months to ensure reliable operation.