The 12V Wireless Relay (Variant 2) is a versatile electronic module designed to enable wireless control of electrical devices. Operating at 12 volts, this relay module eliminates the need for physical wiring between the control unit and the device being switched. It typically consists of a receiver and a transmitter, allowing users to remotely toggle devices on or off with ease.
Pin Name | Description |
---|---|
VCC | Power input (12V DC) |
GND | Ground connection |
NO | Normally Open terminal of the relay |
COM | Common terminal of the relay |
NC | Normally Closed terminal of the relay |
Button | Function |
---|---|
Button A | Activates relay channel 1 |
Button B | Activates relay channel 2 (if applicable) |
Button C | Activates relay channel 3 (if applicable) |
Button D | Activates relay channel 4 (if applicable) |
Power the Receiver Module:
Connect the Load:
Pair the Transmitter and Receiver:
Test the Setup:
The 12V Wireless Relay can be triggered by an Arduino UNO if the relay supports manual triggering via a digital pin. Below is an example code snippet:
// Example code to control a 12V wireless relay with an Arduino UNO
// Ensure the relay's input pin is connected to a digital pin on the Arduino
const int relayPin = 7; // Connect the relay's input pin to Arduino pin 7
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Start with the relay off
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay on
delay(1000); // Keep it on for 1 second
digitalWrite(relayPin, LOW); // Turn the relay off
delay(1000); // Keep it off for 1 second
}
Note: This example assumes the relay module has a manual trigger input pin. If the relay is purely wireless, the Arduino cannot directly control it without additional hardware.
The relay does not respond to the transmitter:
The relay clicks but the connected device does not work:
The control range is shorter than expected:
The relay remains stuck in one state:
Can I use this relay with a 5V power source?
What is the maximum load this relay can handle?
Can I use multiple relays in the same area?
Is this relay suitable for outdoor use?