The SSR - 40DA is a Solid State Relay (SSR) designed for high-performance switching applications. Unlike traditional electromechanical relays, the SSR - 40DA uses semiconductor devices to switch loads, offering faster response times, silent operation, and extended durability. This relay is capable of handling loads up to 40 amps, making it suitable for industrial, commercial, and home automation applications.
Parameter | Value |
---|---|
Model | SSR - 40DA |
Load Voltage Range | 24V AC to 380V AC |
Load Current Rating | Up to 40A |
Control Voltage Range | 3V DC to 32V DC |
Trigger Current | ≤ 7.5mA |
On-State Voltage Drop | ≤ 1.6V |
Isolation Voltage | ≥ 2500V AC |
Response Time | ≤ 10ms |
Operating Temperature | -30°C to +80°C |
Mounting Type | Panel Mount |
Pin Number | Name | Description |
---|---|---|
1 | Input (+) | Positive control signal input (3V DC to 32V DC) |
2 | Input (-) | Negative control signal input (ground) |
3 | Load (AC1) | AC load terminal 1 (connect to one side of the AC load) |
4 | Load (AC2) | AC load terminal 2 (connect to the other side of the AC load or AC supply) |
Control Signal Connection:
Input (+)
pin.Input (-)
pin.Load Connection:
Load (AC1)
pin.Load (AC2)
pin or the AC power supply.Power Supply:
Mounting:
The SSR - 40DA can be controlled using an Arduino UNO. Below is an example circuit and code to toggle an AC load using the relay.
Input (+)
pin of the SSR to Arduino digital pin 9.Input (-)
pin of the SSR to the Arduino GND.Load (AC1)
and Load (AC2)
pins of the SSR.// Define the SSR control pin
const int ssrPin = 9;
void setup() {
// Set the SSR pin as an output
pinMode(ssrPin, OUTPUT);
}
void loop() {
// Turn the SSR on (AC load ON)
digitalWrite(ssrPin, HIGH);
delay(5000); // Keep the load ON for 5 seconds
// Turn the SSR off (AC load OFF)
digitalWrite(ssrPin, LOW);
delay(5000); // Keep the load OFF for 5 seconds
}
SSR Not Switching the Load:
Excessive Heat Generation:
Load Not Turning Off Completely:
SSR Fails Prematurely:
Q1: Can the SSR - 40DA be used with DC loads?
A1: No, the SSR - 40DA is designed for AC loads only. For DC loads, use a DC-specific SSR.
Q2: Is the SSR - 40DA polarity-sensitive on the load side?
A2: No, the load side terminals (AC1
and AC2
) are not polarity-sensitive.
Q3: Can I control the SSR - 40DA with a 3.3V microcontroller?
A3: Yes, the SSR - 40DA can be triggered with a control voltage as low as 3V DC, making it compatible with 3.3V logic.
Q4: Do I need an external power supply for the SSR?
A4: No, the SSR - 40DA does not require an external power supply. It operates directly from the control signal and load connections.