

The SLA Relay 30A, manufactured by Songle (Part ID: 11), is a solid-state relay designed for high-efficiency and reliable switching of electrical loads. With a current rating of 30 amps, this relay is ideal for applications requiring robust control of high-power devices. Its solid-state design ensures durability, fast switching, and minimal wear compared to mechanical relays.








| Parameter | Value |
|---|---|
| Manufacturer | Songle |
| Part ID | 11 |
| Relay Type | Solid-State Relay (SSR) |
| Rated Current | 30A |
| Rated Voltage | 250V AC (Load Side) |
| Control Voltage | 3V DC to 32V DC |
| Switching Speed | ≤10ms |
| Insulation Resistance | ≥1000MΩ |
| Dielectric Strength | 2500V AC |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | PCB or screw terminal |
The SLA Relay 30A typically has four pins or terminals for connections. Below is the pinout description:
| Pin/Terminal | Name | Description |
|---|---|---|
| 1 | Control (+) | Positive terminal for the DC control voltage input. |
| 2 | Control (-) | Negative terminal for the DC control voltage input. |
| 3 | Load (AC IN) | Input terminal for the AC load to be switched. |
| 4 | Load (AC OUT) | Output terminal for the AC load after switching. |
Note: Ensure proper polarity for the control voltage and correct wiring of the load terminals to avoid damage to the relay.
Power the Control Side:
Connect the Load:
Switching Operation:
Mounting:
The SLA Relay 30A can be controlled using an Arduino UNO. Below is an example circuit and code to toggle the relay using a digital pin.
// Define the relay control pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Initialize the relay in the OFF state
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay ON for 5 seconds
// Turn the relay OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay OFF for 5 seconds
}
Note: Use an external power supply for the relay if the Arduino cannot provide sufficient current.
Relay Not Switching:
Overheating:
Load Not Turning On/Off:
Voltage Spikes Damaging the Relay:
Can the SLA Relay 30A handle DC loads?
What is the maximum switching frequency?
Is the relay optically isolated?
Can I use the relay without a heatsink?
By following this documentation, users can effectively integrate the SLA Relay 30A into their projects and troubleshoot common issues with ease.