The 8-channel Solid State Relay (SSR) module is a versatile electronic component designed for switching multiple high-power devices using low-power control signals. This module provides electrical isolation and fast switching capabilities, making it ideal for applications where precise control and safety are paramount.
Parameter | Value |
---|---|
Control Voltage | 3-32V DC |
Load Voltage | 24-380V AC |
Load Current | 2A per channel |
Isolation Voltage | 2500V AC |
Switching Time | ≤ 10ms |
Operating Temperature | -30°C to 75°C |
Dimensions | 140mm x 55mm x 25mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | IN1 | Control signal for channel 1 (3-32V DC) |
2 | IN2 | Control signal for channel 2 (3-32V DC) |
3 | IN3 | Control signal for channel 3 (3-32V DC) |
4 | IN4 | Control signal for channel 4 (3-32V DC) |
5 | IN5 | Control signal for channel 5 (3-32V DC) |
6 | IN6 | Control signal for channel 6 (3-32V DC) |
7 | IN7 | Control signal for channel 7 (3-32V DC) |
8 | IN8 | Control signal for channel 8 (3-32V DC) |
9 | GND | Ground |
10 | VCC | Power supply for control signals (3-32V DC) |
11-18 | OUT1-OUT8 | Output terminals for channels 1 to 8 (24-380V AC) |
/*
Example code to control an 8-channel SSR module using Arduino UNO.
This code will sequentially turn on and off each relay channel.
*/
const int relayPins[8] = {2, 3, 4, 5, 6, 7, 8, 9}; // Define relay control pins
void setup() {
// Initialize relay control pins as outputs
for (int i = 0; i < 8; i++) {
pinMode(relayPins[i], OUTPUT);
digitalWrite(relayPins[i], LOW); // Ensure all relays are off initially
}
}
void loop() {
// Sequentially turn on and off each relay
for (int i = 0; i < 8; i++) {
digitalWrite(relayPins[i], HIGH); // Turn on relay
delay(1000); // Wait for 1 second
digitalWrite(relayPins[i], LOW); // Turn off relay
delay(1000); // Wait for 1 second
}
}
Relays Not Switching:
Overheating:
No Response from Load Devices:
By following this documentation, users can effectively utilize the 8-channel SSR module in various applications, ensuring safe and efficient operation.