The WenQia Wireless Relay 12V 4Ch is a versatile and robust relay module designed for remote control of multiple devices or circuits. Operating at 12 volts, this module features four independent channels, making it ideal for applications that require the control of multiple devices simultaneously. Common use cases include home automation, industrial control systems, and remote switching applications.
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Channels | 4 |
Relay Type | SPDT (Single Pole Double Throw) |
Max Load Current | 10A per channel |
Max Load Voltage | 250V AC / 30V DC |
Wireless Frequency | 433MHz |
Control Distance | Up to 100 meters (open space) |
Dimensions | 135mm x 75mm x 18mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply input (12V DC) |
2 | GND | Ground |
3 | IN1 | Control signal input for Relay 1 |
4 | IN2 | Control signal input for Relay 2 |
5 | IN3 | Control signal input for Relay 3 |
6 | IN4 | Control signal input for Relay 4 |
7 | NO1 | Normally Open contact for Relay 1 |
8 | COM1 | Common contact for Relay 1 |
9 | NC1 | Normally Closed contact for Relay 1 |
10 | NO2 | Normally Open contact for Relay 2 |
11 | COM2 | Common contact for Relay 2 |
12 | NC2 | Normally Closed contact for Relay 2 |
13 | NO3 | Normally Open contact for Relay 3 |
14 | COM3 | Common contact for Relay 3 |
15 | NC3 | Normally Closed contact for Relay 3 |
16 | NO4 | Normally Open contact for Relay 4 |
17 | COM4 | Common contact for Relay 4 |
18 | NC4 | Normally Closed contact for Relay 4 |
Power Supply Connection:
Control Signal Inputs:
Relay Outputs:
/*
* Example code to control the WenQia Wireless Relay 12V 4Ch using Arduino UNO.
* This code demonstrates how to turn on and off each relay channel.
*/
const int relay1 = 2; // Control pin for Relay 1
const int relay2 = 3; // Control pin for Relay 2
const int relay3 = 4; // Control pin for Relay 3
const int relay4 = 5; // Control pin for Relay 4
void setup() {
// Initialize the relay control pins as outputs
pinMode(relay1, OUTPUT);
pinMode(relay2, OUTPUT);
pinMode(relay3, OUTPUT);
pinMode(relay4, OUTPUT);
}
void loop() {
// Turn on Relay 1
digitalWrite(relay1, HIGH);
delay(1000); // Wait for 1 second
// Turn off Relay 1
digitalWrite(relay1, LOW);
delay(1000); // Wait for 1 second
// Turn on Relay 2
digitalWrite(relay2, HIGH);
delay(1000); // Wait for 1 second
// Turn off Relay 2
digitalWrite(relay2, LOW);
delay(1000); // Wait for 1 second
// Turn on Relay 3
digitalWrite(relay3, HIGH);
delay(1000); // Wait for 1 second
// Turn off Relay 3
digitalWrite(relay3, LOW);
delay(1000); // Wait for 1 second
// Turn on Relay 4
digitalWrite(relay4, HIGH);
delay(1000); // Wait for 1 second
// Turn off Relay 4
digitalWrite(relay4, LOW);
delay(1000); // Wait for 1 second
}
Relay Not Activating:
Intermittent Operation:
Overheating:
By following these guidelines and best practices, users can effectively utilize the WenQia Wireless Relay 12V 4Ch in their projects and applications.