

The SSR - 40DA Pequeño is a compact solid-state relay (SSR) designed for switching electrical loads without the use of mechanical components. Unlike traditional electromechanical relays, the SSR - 40DA offers faster operation, silent switching, and a significantly longer lifespan due to the absence of moving parts. This makes it ideal for applications requiring high reliability and frequent switching.








The SSR - 40DA Pequeño has four terminals, divided into two sections: the input (control) side and the output (load) side.
| Pin 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 | AC Load (1) | One terminal of the AC load to be switched. |
| 4 | AC Load (2) | The other terminal of the AC load to be switched. |
Connect the Control Side:
+ pin.- pin.Connect the Load Side:
AC Load (1) pin.AC Load (2) pin.Power the Circuit:
Below is an example of how to control the SSR - 40DA using an Arduino UNO to switch an AC load.
+ pin of the SSR to an Arduino digital output pin (e.g., pin 9).- pin of the SSR to the Arduino GND.AC Load (1) and AC Load (2) pins of the SSR.// Define the pin connected to the SSR control input
const int ssrPin = 9;
void setup() {
// Set the SSR pin as an output
pinMode(ssrPin, OUTPUT);
}
void loop() {
// Turn the SSR (and the connected AC load) ON
digitalWrite(ssrPin, HIGH);
delay(5000); // Keep the load ON for 5 seconds
// Turn the SSR (and the connected AC load) OFF
digitalWrite(ssrPin, LOW);
delay(5000); // Keep the load OFF for 5 seconds
}
The SSR does not switch the load:
The SSR overheats:
The load flickers or does not stay on:
The SSR is damaged or not functioning:
Q: Can I use the SSR - 40DA Pequeño with a DC load?
A: No, this SSR is designed specifically for AC loads. For DC loads, use a DC-specific SSR.
Q: Is the SSR - 40DA optically isolated?
A: Yes, the control and load sides are optically isolated to protect the control circuit from high voltages.
Q: Can I use the SSR with an inductive load like a motor?
A: Yes, but you must use a snubber circuit to protect the SSR from voltage spikes caused by the inductive load.
Q: What happens if I exceed the rated current or voltage?
A: Exceeding the rated limits can damage the SSR permanently. Always ensure the load is within the specified range.
Q: Does the SSR make any noise during operation?
A: No, the SSR operates silently as it has no moving parts.