

The SSR-10A is a solid-state relay (SSR) designed for switching AC loads. Unlike traditional electromechanical relays, the SSR-10A uses semiconductor components to perform switching operations, ensuring high reliability, fast response times, and silent operation. This relay is particularly well-suited for applications requiring precise control of electrical devices without mechanical wear.








| Parameter | Value | 
|---|---|
| Load Voltage Range | 24–380V AC | 
| Load Current Rating | 10A | 
| Control Voltage Range | 3–32V DC | 
| Trigger Current | ≤7.5mA | 
| On-State Voltage Drop | ≤1.6V | 
| Off-State Leakage Current | ≤2mA | 
| Isolation Voltage | ≥2500V AC | 
| Switching Time | ≤10ms | 
| Operating Temperature | -30°C to +80°C | 
| Mounting Type | Panel Mount | 
| Pin Number | Name | Description | 
|---|---|---|
| 1 | Input (+) | Positive DC control signal input (3–32V DC). | 
| 2 | Input (-) | Negative DC control signal input (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 line). | 
Control Side (Input):
Input (+) pin.Input (-) pin.Load Side (Output):
Output (L1) pin.Output (L2) pin.Power Supply:
Mounting:
Below is an example of how to use the SSR-10A to control an AC lamp with an Arduino UNO.
Input (+) pin of the SSR-10A.Input (-) pin of the SSR-10A.Output (L1) and Output (L2) pins of the SSR-10A.// Example code to control an AC lamp using SSR-10A and Arduino UNO
const int ssrPin = 9; // Define the pin connected to SSR-10A Input (+)
void setup() {
  pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
  digitalWrite(ssrPin, HIGH); // Turn on the AC lamp
  delay(5000); // Keep the lamp on for 5 seconds
  digitalWrite(ssrPin, LOW); // Turn off the AC lamp
  delay(5000); // Keep the lamp off for 5 seconds
}
| Issue | Possible Cause | Solution | 
|---|---|---|
| SSR does not switch the load | Control voltage is too low or absent | Verify the control voltage is within the 3–32V DC range. | 
| Load does not turn off completely | Leakage current through the SSR | Use a load with a higher minimum operating current or add a bleeder resistor. | 
| SSR overheats during operation | Excessive load current or poor cooling | Ensure the load current is ≤10A and use a heat sink for proper cooling. | 
| Flickering or unstable operation | Noise or insufficient control signal | Use a decoupling capacitor on the control side to stabilize the signal. | 
Can the SSR-10A switch DC loads?
Do I need a heat sink for low-current applications?
What happens if I exceed the maximum load current?
Can I use the SSR-10A with a PWM signal?
By following this documentation, you can effectively integrate the SSR-10A into your projects and ensure reliable operation.