

The SSR-10A is a solid-state relay (SSR) designed for switching AC loads. Unlike traditional mechanical relays, the SSR-10A uses semiconductor components to perform switching operations, ensuring faster response times, longer lifespan, and silent operation. It provides electrical isolation between the control circuit and the load circuit, making it a safe and reliable choice for various applications.








The SSR-10A is designed to handle medium-power AC loads with high efficiency and reliability. Below are its key technical details:
| Parameter | Value |
|---|---|
| Load Voltage Range | 24V AC to 380V AC |
| Load Current Rating | 10A |
| Control Voltage Range | 3V DC to 32V DC |
| Control Current | ≤12mA |
| Isolation Voltage | ≥2500V AC |
| On-State Voltage Drop | ≤1.6V |
| Switching Time | ≤10ms |
| Operating Temperature | -30°C to +75°C |
| Mounting Type | Panel-mounted |
The SSR-10A has four terminals, as described in the table below:
| Pin | Label | Description |
|---|---|---|
| 1 | Input (+) | Positive terminal for the control signal (3V DC to 32V DC). |
| 2 | Input (-) | Negative terminal for the control signal (ground). |
| 3 | Load (AC1) | One terminal of the AC load circuit. Connect to the live or neutral wire. |
| 4 | Load (AC2) | The other terminal of the AC load circuit. Connect to the remaining live/neutral. |
Control Circuit Connection:
Input (+) terminal.Input (-) terminal.Load Circuit Connection:
Load (AC1) and Load (AC2) terminals.Power Supply:
Mounting:
Below is an example of how to control an AC load using the SSR-10A and an Arduino UNO:
// Example: Controlling an AC load with SSR-10A and Arduino UNO
// Pin 9 is used to control the SSR-10A
const int ssrPin = 9; // Define the pin connected to the SSR-10A control input
void setup() {
pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(ssrPin, HIGH); // Turn on the AC load
delay(5000); // Keep the load on for 5 seconds
digitalWrite(ssrPin, LOW); // Turn off the AC load
delay(5000); // Keep the load off for 5 seconds
}
Note: Ensure proper isolation and safety precautions when working with AC loads.
The SSR does not switch the load on/off:
Excessive heating of the SSR:
Load flickering or unstable operation:
No isolation between control and load circuits:
Q1: Can the SSR-10A be used with DC loads?
No, the SSR-10A is designed specifically for AC loads. For DC loads, use a DC-specific solid-state relay.
Q2: Is the SSR-10A polarity-sensitive on the control side?
Yes, the control input terminals (Input (+) and Input (-)) are polarity-sensitive. Ensure correct polarity when connecting the control signal.
Q3: Can I use the SSR-10A without a heat sink?
For low-current applications, a heat sink may not be necessary. However, for currents near the 10A limit, a heat sink is strongly recommended to prevent overheating.
Q4: What happens if the load exceeds 10A?
Exceeding the 10A rating can damage the SSR-10A permanently. Always ensure the load current is within the specified limit.