The 8-Channel Solid State Relay (SSR) is a versatile electronic component designed for switching multiple high-power devices with electrical isolation and no moving parts. Unlike mechanical relays, SSRs use semiconductor switching elements, which provide faster switching times, longer life, and silent operation. This makes them ideal for applications where reliability and noise reduction are critical.
Parameter | Value |
---|---|
Operating Voltage | 5V DC (control side) |
Load Voltage | 24-380V AC (output side) |
Load Current | 2A per channel |
Isolation Voltage | 2500V AC |
Switching Time | ≤ 10ms |
Operating Temperature | -30°C to 80°C |
Dimensions | 138mm x 56mm x 25mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | IN1 | Control signal for Channel 1 |
2 | IN2 | Control signal for Channel 2 |
3 | IN3 | Control signal for Channel 3 |
4 | IN4 | Control signal for Channel 4 |
5 | IN5 | Control signal for Channel 5 |
6 | IN6 | Control signal for Channel 6 |
7 | IN7 | Control signal for Channel 7 |
8 | IN8 | Control signal for Channel 8 |
9 | GND | Ground |
10 | VCC | 5V DC power supply |
Channel | Terminal 1 | Terminal 2 | Description |
---|---|---|---|
1 | NO1 | COM1 | Normally Open and Common for Channel 1 |
2 | NO2 | COM2 | Normally Open and Common for Channel 2 |
3 | NO3 | COM3 | Normally Open and Common for Channel 3 |
4 | NO4 | COM4 | Normally Open and Common for Channel 4 |
5 | NO5 | COM5 | Normally Open and Common for Channel 5 |
6 | NO6 | COM6 | Normally Open and Common for Channel 6 |
7 | NO7 | COM7 | Normally Open and Common for Channel 7 |
8 | NO8 | COM8 | Normally Open and Common for Channel 8 |
// Example code to control an 8-channel SSR with Arduino UNO
// Define control pins
const int ssrPins[8] = {2, 3, 4, 5, 6, 7, 8, 9};
void setup() {
// Initialize control pins as outputs
for (int i = 0; i < 8; i++) {
pinMode(ssrPins[i], OUTPUT);
}
}
void loop() {
// Turn on all SSR channels
for (int i = 0; i < 8; i++) {
digitalWrite(ssrPins[i], HIGH);
delay(1000); // Wait for 1 second
}
// Turn off all SSR channels
for (int i = 0; i < 8; i++) {
digitalWrite(ssrPins[i], LOW);
delay(1000); // Wait for 1 second
}
}
SSR Not Switching:
Overheating:
Load Not Responding:
By following this documentation, users can effectively integrate and troubleshoot the 8-Channel Solid State Relay in their projects, ensuring reliable and efficient operation.