

The SSR-40DA is a solid-state relay (SSR) designed for switching AC loads with high efficiency and reliability. Unlike mechanical relays, the SSR-40DA uses semiconductor components to perform switching operations, ensuring fast response times and long operational life. It is manufactured by Arduino and has the part ID "Nano."
This relay is commonly used in industrial automation, temperature control systems, motor control, and other applications requiring high-current AC switching. Its ability to handle up to 40A at 240V AC makes it suitable for heavy-duty applications.








| Parameter | Value |
|---|---|
| Manufacturer | Arduino |
| Part ID | Nano |
| Input Control Voltage | 3-32V DC |
| Output Voltage Range | 24-380V AC |
| Maximum Output Current | 40A |
| Trigger Current | 7.5mA (minimum) |
| Isolation Voltage | ≥2500V AC |
| Switching Speed | ≤10ms |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | Panel Mount |
The SSR-40DA has four terminals, as described below:
| Terminal Number | Label | Description |
|---|---|---|
| 1 | Input (+) | Positive terminal for the DC control signal (3-32V DC). |
| 2 | Input (-) | Negative terminal for the DC control signal (ground). |
| 3 | Output (L1) | AC load terminal 1 (connect to one side of the AC load). |
| 4 | Output (L2) | AC load terminal 2 (connect to the other side of the AC load or AC supply). |
The SSR-40DA can be controlled using an Arduino UNO to switch an AC load. Below is an example circuit and code:
// Example code to control the SSR-40DA with an Arduino UNO
// This code toggles the relay ON and OFF every 2 seconds.
#define RELAY_PIN 9 // Define the Arduino pin connected to the SSR-40DA input
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(2000); // Wait for 2 seconds
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(2000); // Wait for 2 seconds
}
Relay Not Switching the Load
Overheating
Load Not Turning Off Completely
AC Load Flickering
Q1: Can the SSR-40DA switch DC loads?
A1: No, the SSR-40DA is designed specifically for AC loads. For DC loads, use a DC-specific solid-state relay.
Q2: What is the minimum load current required for proper operation?
A2: The SSR-40DA does not require a minimum load current, but ensure the load is within the rated range for optimal performance.
Q3: Can I use the SSR-40DA without a heat sink?
A3: It is not recommended for high-current applications. A heat sink is essential to prevent overheating and ensure reliable operation.
Q4: Is the SSR-40DA suitable for switching inductive loads?
A4: Yes, but a snubber circuit is recommended to protect the relay from voltage spikes caused by inductive loads.