

The CG SSR-25DD is a solid state relay (SSR) designed for reliable and efficient switching of DC loads. Unlike mechanical relays, the SSR-25DD uses semiconductor components to provide electrical isolation and control, ensuring fast and silent operation with no moving parts. This relay is capable of handling up to 25A of current and operates with a low control voltage, making it ideal for automation, industrial control systems, and other high-performance applications.








| Parameter | Value |
|---|---|
| Manufacturer | CG |
| Part Number | SSR-25DD |
| Load Voltage Range | 5V DC to 60V DC |
| Load Current Rating | Up to 25A |
| Control Voltage Range | 3V DC to 32V DC |
| Control Current | 7.5mA to 12mA |
| Isolation Voltage | ≥ 2500V AC |
| Switching Speed | ≤ 10ms |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | Panel Mount |
| Weight | ~110g |
The SSR-25DD has four terminals, as described below:
| Pin Number | Label | Description |
|---|---|---|
| 1 | Input (+) | Positive control signal input (3V DC to 32V DC) |
| 2 | Input (-) | Negative control signal input (ground) |
| 3 | Output (+) | Positive load terminal (5V DC to 60V DC) |
| 4 | Output (-) | Negative load terminal (ground) |
Below is an example of how to control the SSR-25DD using an Arduino UNO to switch a DC motor.
// Define the pin connected to the SSR input
const int ssrPin = 9;
void setup() {
pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(ssrPin, HIGH); // Turn on the SSR (motor ON)
delay(5000); // Keep the motor ON for 5 seconds
digitalWrite(ssrPin, LOW); // Turn off the SSR (motor OFF)
delay(5000); // Keep the motor OFF for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Relay does not switch the load | Control voltage is too low | Ensure the control voltage is between 3V DC and 32V DC. |
| Load does not turn off | Leakage current in the SSR | Verify the load's minimum operating current and use a bleeder resistor if necessary. |
| Overheating during operation | Insufficient heat dissipation | Attach a heat sink or cooling fan to the relay. |
| Load voltage or current exceeds rating | Incorrect load specifications | Ensure the load voltage is between 5V DC and 60V DC, and current is ≤ 25A. |
| Inductive load causes relay failure | Voltage spikes from inductive load | Add a flyback diode across the load to suppress voltage spikes. |
Can the SSR-25DD switch AC loads?
What happens if the control voltage exceeds 32V DC?
Is the SSR-25DD polarity-sensitive?
Can I use the SSR-25DD without a heat sink?
By following this documentation, users can effectively integrate the CG SSR-25DD into their projects for reliable and efficient DC load switching.