

The SSR-25DA is a solid state relay (SSR) manufactured by HiLetgo (Part ID: 3-01-1247-25A). This relay is designed to switch AC loads of up to 25A at 250V using a low-voltage DC control signal. Unlike traditional mechanical relays, the SSR-25DA uses semiconductor devices for switching, offering faster response times, silent operation, and a longer lifespan.








| Parameter | Value |
|---|---|
| Manufacturer | HiLetgo |
| Part ID | 3-01-1247-25A |
| Load Voltage Range | 24V AC to 250V AC |
| Load Current Rating | 25A |
| Control Voltage Range | 3V DC to 32V DC |
| Control Current | ≤ 25mA |
| Trigger Voltage (ON) | ≥ 3V DC |
| Trigger Voltage (OFF) | ≤ 1V DC |
| Isolation Voltage | 2500V AC |
| Switching Type | Zero-crossing |
| Operating Temperature | -30°C to +75°C |
| Dimensions | 58mm x 45mm x 23mm |
| Weight | ~110g |
The SSR-25DA has four terminals, divided into two sections: the control side and the load side.
| Pin | Label | Description |
|---|---|---|
| 1 | + | Positive DC control signal (3V to 32V DC) |
| 2 | - | Negative DC control signal (ground) |
| Pin | Label | Description |
|---|---|---|
| 3 | ~ | AC load terminal 1 (connect to AC load) |
| 4 | ~ | AC load terminal 2 (connect to AC load) |
Control Side Connection:
+ terminal.- terminal.Load Side Connection:
~ terminals on the SSR.~ terminal to the AC power source.Powering the Circuit:
Below is an example of how to control an AC light bulb using the SSR-25DA and an Arduino UNO.
+ terminal of the SSR.- terminal of the SSR.// Define the pin connected to the SSR control terminal
const int ssrPin = 9;
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 proper safety precautions when working with AC mains voltage. Disconnect power before making any connections.
| Issue | Possible Cause | Solution |
|---|---|---|
| SSR does not turn ON | Control voltage is too low | Ensure control voltage is ≥ 3V DC |
| SSR remains ON even without signal | Faulty SSR or incorrect wiring | Check wiring and replace the SSR if needed |
| Excessive heat during operation | High load current or poor heat dissipation | Use a heatsink or reduce load current |
| Load does not turn OFF | Inductive load causing voltage spikes | Add a snubber circuit across the load |
Can the SSR-25DA be used with DC loads?
What happens if the load exceeds 25A?
Is the SSR-25DA suitable for dimming applications?
Can I use the SSR-25DA without a heatsink?
By following this documentation, you can safely and effectively use the SSR-25DA in your projects.