

Load Switching Automatic Transfer Switch (ATS) points are critical components in electrical systems designed to ensure uninterrupted power supply. These points facilitate the automatic transfer of electrical loads between two power sources, such as a primary utility grid and a backup generator. When the primary power source fails or requires maintenance, the ATS points seamlessly switch the load to the secondary power source, minimizing downtime and maintaining operational continuity.








Below are the general technical specifications for load switching ATS points. Specific values may vary depending on the manufacturer and model.
The pin configuration of ATS points depends on the specific design. Below is a general example of a 4-pin ATS point:
| Pin Number | Label | Description |
|---|---|---|
| 1 | Primary Input | Connects to the primary power source (e.g., utility grid). |
| 2 | Secondary Input | Connects to the secondary power source (e.g., generator or backup power). |
| 3 | Load Output | Connects to the electrical load (e.g., appliances, equipment, or circuits). |
| 4 | Control Signal | Receives the control signal to trigger the switching mechanism. |
Connect the Power Sources:
Primary Input pin.Secondary Input pin.Connect the Load:
Load Output pin.Control Signal Wiring:
Control Signal pin. This signal determines when the ATS switches between power sources.Test the System:
Monitor Performance:
If you are using an Arduino UNO to control the ATS points, you can use a digital output pin to send the control signal. Below is an example code snippet:
// Example code to control ATS points using Arduino UNO
const int controlPin = 7; // Pin connected to the ATS control signal
void setup() {
pinMode(controlPin, OUTPUT); // Set the control pin as an output
}
void loop() {
// Simulate switching to the secondary power source
digitalWrite(controlPin, HIGH); // Send HIGH signal to ATS
delay(5000); // Keep the secondary source active for 5 seconds
// Switch back to the primary power source
digitalWrite(controlPin, LOW); // Send LOW signal to ATS
delay(5000); // Keep the primary source active for 5 seconds
}
ATS Fails to Switch:
Delayed Switching:
Frequent Switching:
Overheating:
By following this documentation, users can effectively integrate and maintain load switching ATS points in their electrical systems.