

The SSR 40DD is a solid-state relay designed for switching high-power DC loads using low-voltage DC control signals. Unlike mechanical relays, the SSR 40DD operates without moving parts, ensuring high reliability, silent operation, and fast switching. Its compact design and robust performance make it ideal for applications in industrial automation, heating control systems, motor control, and other high-power DC switching scenarios.








| Parameter | Value |
|---|---|
| Input Control Voltage | 3-32 VDC |
| Input Current | 7.5-12 mA |
| Output Voltage Range | 5-220 VDC |
| Maximum Output Current | 40 A |
| Switching Speed | ≤ 10 ms |
| Isolation Voltage | ≥ 2500 V |
| Operating Temperature | -30°C to +75°C |
| Mounting Type | Panel mount |
| Pin Number | Name | Description |
|---|---|---|
| 1 | Input (+) | Positive terminal for the control signal |
| 2 | Input (-) | Negative terminal for the control signal |
| 3 | Output (+) | Positive terminal for the load |
| 4 | Output (-) | Negative terminal for the load |
The SSR 40DD can be controlled using an Arduino UNO to switch a DC load. Below is an example circuit and code:
// Example code to control SSR 40DD with Arduino UNO
// This code toggles the SSR on and off every 1 second
#define SSR_PIN 9 // Define the Arduino pin connected to SSR input
void setup() {
pinMode(SSR_PIN, OUTPUT); // Set SSR_PIN as an output
}
void loop() {
digitalWrite(SSR_PIN, HIGH); // Turn the SSR on
delay(1000); // Wait for 1 second
digitalWrite(SSR_PIN, LOW); // Turn the SSR off
delay(1000); // Wait for 1 second
}
Relay Not Switching the Load
Overheating
Load Not Turning Off
Control Signal Interference
Q1: Can the SSR 40DD switch AC loads?
A1: No, the SSR 40DD is designed specifically for DC loads. For AC loads, use an AC-rated solid-state relay.
Q2: What is the maximum switching speed of the SSR 40DD?
A2: The SSR 40DD has a switching speed of ≤ 10 ms, making it suitable for most applications requiring fast switching.
Q3: Do I need an external resistor for the control signal?
A3: No, the SSR 40DD has an internal resistor for current limiting. Ensure the control voltage is within the specified range.
Q4: Can I use the SSR 40DD without a heat sink?
A4: It is not recommended to use the SSR 40DD without a heat sink, especially for high-current loads, as it may overheat and fail.
By following this documentation, users can effectively integrate the SSR 40DD into their projects and troubleshoot common issues.