

The ATS DC (Automatic Transfer Switch for Direct Current) is a critical component designed to ensure uninterrupted power supply by automatically switching between multiple DC power sources. It is commonly used in systems where reliability is paramount, such as renewable energy setups, telecommunications, data centers, and industrial automation. The ATS DC monitors the availability and quality of power from the primary source and seamlessly switches to a backup source when necessary, minimizing downtime and protecting connected equipment.








| Parameter | Value |
|---|---|
| Operating Voltage Range | 12V DC to 48V DC |
| Maximum Current Rating | 50A |
| Switching Time | < 10ms |
| Power Source Inputs | 2 (Primary and Backup) |
| Output Channels | 1 |
| Control Method | Automatic |
| Operating Temperature | -20°C to 60°C |
| Dimensions | 120mm x 80mm x 40mm |
| Weight | 300g |
| Pin Name | Description |
|---|---|
| IN1+ | Positive terminal for the primary DC power source |
| IN1- | Negative terminal for the primary DC power source |
| IN2+ | Positive terminal for the backup DC power source |
| IN2- | Negative terminal for the backup DC power source |
| OUT+ | Positive terminal for the output load |
| OUT- | Negative terminal for the output load |
| GND | Ground connection for the ATS DC circuit |
| STATUS | Status output pin (provides a signal indicating the active power source) |
IN1+ and IN1- terminals.IN2+ and IN2- terminals.OUT+ and OUT- terminals.GND pin is connected to the common ground of the system.STATUS pin to a microcontroller or indicator circuit to monitor which power source is active.The STATUS pin can be connected to an Arduino UNO to monitor the active power source. Below is an example code snippet:
// ATS DC Status Monitoring with Arduino UNO
const int statusPin = 2; // Connect the STATUS pin of ATS DC to digital pin 2
void setup() {
pinMode(statusPin, INPUT); // Set the STATUS pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int status = digitalRead(statusPin); // Read the STATUS pin
if (status == HIGH) {
// If HIGH, primary power source is active
Serial.println("Primary power source is active.");
} else {
// If LOW, backup power source is active
Serial.println("Backup power source is active.");
}
delay(1000); // Wait for 1 second before checking again
}
| Issue | Possible Cause | Solution |
|---|---|---|
| ATS DC does not switch to backup | Backup power source is not connected | Verify the connection and voltage of the backup power source. |
| Load does not receive power | Incorrect wiring or polarity | Double-check all connections and ensure correct polarity. |
| Overheating during operation | Exceeding current rating | Reduce the load current or use a higher-rated ATS DC. |
| STATUS pin not providing signal | Faulty connection or damaged pin | Check the wiring and ensure the STATUS pin is properly connected. |
Can the ATS DC handle AC power sources?
No, the ATS DC is specifically designed for direct current (DC) applications. Using it with AC power sources may damage the component.
What happens if both power sources fail?
If both the primary and backup power sources are unavailable, the ATS DC will not provide power to the load.
Can I use the ATS DC with a solar panel and battery?
Yes, the ATS DC is ideal for such applications. Connect the solar panel as the primary source and the battery as the backup source.
Is the ATS DC suitable for outdoor use?
The ATS DC is not weatherproof. If used outdoors, it must be housed in a weather-resistant enclosure.
By following this documentation, users can effectively integrate the ATS DC into their systems and ensure reliable power management.