

The ZS-X11H V2 is a versatile wireless relay module designed for remote control of electrical devices. Manufactured by China NoName, this module operates using RF (Radio Frequency) signals, making it an ideal choice for automation projects. It allows users to switch devices on and off from a distance, providing convenience and flexibility in various applications.








The ZS-X11H V2 is designed to provide reliable performance in a compact form factor. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Operating Voltage | 5V DC |
| Relay Output Voltage | 250V AC / 30V DC (Max) |
| Relay Output Current | 10A (Max) |
| RF Operating Frequency | 433 MHz |
| Communication Range | Up to 50 meters (line of sight) |
| Module Dimensions | 50mm x 26mm x 18mm |
| Operating Temperature | -20°C to 60°C |
| Power Consumption | < 1W |
The ZS-X11H V2 module has a simple pinout for easy integration into circuits. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| VCC | Power input (5V DC) |
| GND | Ground connection |
| IN | Signal input to trigger the relay |
| NO | Normally Open terminal of the relay |
| COM | Common terminal of the relay |
| NC | Normally Closed terminal of the relay |
The ZS-X11H V2 is straightforward to use in a variety of circuits. Follow the steps below to integrate it into your project:
VCC pin to a 5V DC power source and the GND pin to ground.NO (Normally Open) pin and the other terminal to the power source.NC (Normally Closed) pin and the other terminal to the power source.COM (Common) pin to the other side of the power source.IN pin to activate the relay. The relay will switch between the NO and NC states based on the signal.The ZS-X11H V2 can be easily controlled using an Arduino UNO. Below is an example code snippet to toggle the relay:
// Define the pin connected to the relay module
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: Connect the IN pin of the ZS-X11H V2 to pin 7 of the Arduino UNO. Ensure the module is powered with 5V from the Arduino's 5V and GND pins.
Relay Not Activating:
IN pin.RF Signal Not Working:
Load Not Switching Properly:
Q1: Can the ZS-X11H V2 be used with a 3.3V microcontroller?
A1: Yes, the IN pin can typically accept 3.3V signals, but ensure the module is powered with 5V DC.
Q2: What is the maximum range of the RF signal?
A2: The module can operate up to 50 meters in a line-of-sight environment. Obstacles may reduce this range.
Q3: Can I use this module to control DC motors?
A3: Yes, as long as the motor's voltage and current are within the relay's maximum ratings (30V DC, 10A).
Q4: Is the module compatible with other RF frequencies?
A4: No, the ZS-X11H V2 is designed to operate specifically at 433 MHz.