

The SSRelay by AITRIP (Manufacturer Part ID: SSRelay) is a Solid State Relay (SSR), an electronic switching device that uses semiconductor components to perform switching operations. Unlike traditional mechanical relays, SSRs offer faster switching speeds, longer operational life, and silent operation due to the absence of moving parts. These features make the SSRelay ideal for applications requiring high reliability and precision.








| Parameter | Value | 
|---|---|
| Input Control Voltage | 3V to 32V DC | 
| Output Load Voltage | 24V to 380V AC | 
| Output Load Current | Up to 2A | 
| Trigger Current | 7.5mA (typical) | 
| Isolation Voltage | ≥ 2500V AC | 
| Switching Speed | ≤ 10ms | 
| Operating Temperature | -30°C to +80°C | 
| Dimensions | 43mm x 25mm x 23mm | 
The SSRelay typically has four pins, as described in the table below:
| Pin Number | Name | Description | 
|---|---|---|
| 1 | Input+ (Vcc) | Positive terminal for the control signal (3V to 32V DC). | 
| 2 | Input- (GND) | Ground terminal for the control signal. | 
| 3 | Output+ | Positive terminal for the AC load. | 
| 4 | Output- | Negative terminal for the AC load. | 
Connect the Control Signal:
Input+ and Input- pins.Connect the Load:
Output+ and Output- pins.Power the Circuit:
Test the Circuit:
Below is an example of how to control an SSRelay with an Arduino UNO to switch an AC load:
// Example: Controlling an SSRelay with Arduino UNO
// This code toggles the relay ON and OFF every 2 seconds.
const int relayPin = 7; // Pin connected to the SSRelay's Input+ (Vcc)
void setup() {
  pinMode(relayPin, OUTPUT); // Set the relay pin as an output
}
void loop() {
  digitalWrite(relayPin, HIGH); // Turn the relay ON
  delay(2000);                 // Wait for 2 seconds
  digitalWrite(relayPin, LOW); // Turn the relay OFF
  delay(2000);                 // Wait for 2 seconds
}
Note: Connect the Input+ pin of the SSRelay to Arduino pin 7 and the Input- pin to Arduino GND. Ensure the AC load is connected to the relay's output terminals.
Relay Does Not Switch On:
Load Does Not Turn On:
Excessive Heating:
Interference with Microcontroller:
Q1: Can the SSRelay switch DC loads?
A1: No, the SSRelay is designed for AC loads only. Using it with DC loads may damage the relay.
Q2: Is the SSRelay suitable for inductive loads like motors?
A2: Yes, but for highly inductive loads, use a snubber circuit to protect the relay from voltage spikes.
Q3: Can I use the SSRelay with a Raspberry Pi?
A3: Yes, the SSRelay can be controlled by a Raspberry Pi. Ensure the GPIO pin provides sufficient voltage and current to trigger the relay.
Q4: What happens if I exceed the rated load current?
A4: Exceeding the rated current may cause overheating and permanent damage to the relay. Always stay within the specified limits.