

The SSR-40 DA is a Solid State Relay (SSR) manufactured by FQFER, designed for switching AC loads with a maximum current rating of 40A. Unlike traditional electromechanical relays, the SSR-40 DA uses semiconductor devices to achieve fast, silent, and reliable switching without mechanical wear. This makes it ideal for applications requiring high switching frequency and long operational life.








The SSR-40 DA is designed to handle high-power AC loads efficiently. Below are its key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | FQFER |
| Part ID | Relay |
| Type | Solid State Relay (SSR) |
| Input Control Voltage | 3-32V DC |
| Output Load Voltage | 24-380V AC |
| Maximum Load Current | 40A |
| Trigger Current | ≤7.5mA |
| Isolation Voltage | ≥2500V AC |
| Switching Speed | ≤10ms |
| Operating Temperature | -30°C to +75°C |
| Mounting Type | Panel Mount |
| Weight | Approx. 110g |
The SSR-40 DA has four terminals, as described below:
| Pin Number | Label | Description |
|---|---|---|
| 1 | Input (+) | Positive DC control signal input (3-32V DC) |
| 2 | Input (-) | Negative DC control signal input (ground) |
| 3 | Output (L1) | AC load terminal (connect to AC live wire) |
| 4 | Output (L2) | AC load terminal (connect to AC load or neutral) |
Input Side (Control Signal):
Input (+) terminal.Input (-) terminal.Output Side (Load Connection):
Output (L1) terminal.Output (L2) terminal.Mounting:
Power On:
Below is an example of how to control the SSR-40 DA using an Arduino UNO to switch an AC load:
// Define the pin connected to the SSR control input
const int ssrPin = 7;
void setup() {
pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(ssrPin, HIGH); // Turn on the SSR (AC load ON)
delay(5000); // Keep the load ON for 5 seconds
digitalWrite(ssrPin, LOW); // Turn off the SSR (AC load OFF)
delay(5000); // Keep the load OFF for 5 seconds
}
Note: Ensure the Arduino's ground is connected to the SSR's Input (-) terminal.
Relay Not Switching:
Overheating:
Load Not Turning Off:
Flickering Load:
Q1: Can the SSR-40 DA switch DC loads?
A1: No, the SSR-40 DA is designed specifically for AC loads. For DC loads, use a DC-specific SSR.
Q2: What is the maximum switching frequency?
A2: The SSR-40 DA can switch loads at a frequency of up to 10ms per cycle, making it suitable for most applications.
Q3: Is electrical isolation provided between the input and output?
A3: Yes, the SSR-40 DA provides electrical isolation with an isolation voltage of ≥2500V AC.
Q4: Can I use the SSR-40 DA without a heat sink?
A4: It is not recommended. Without proper heat dissipation, the relay may overheat and fail.
By following this documentation, users can effectively integrate the SSR-40 DA into their projects and ensure reliable operation.